From daf5c6ac668ae9ecf0fce7e421882efd1bff05ab Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Thu, 29 Oct 2020 08:25:21 -0700 Subject: [PATCH 01/58] Initial Setup working --- .../src/Azure.AI.TextAnalytics.csproj | 4 +- .../src/EntitiesTask.cs | 13 + .../Azure.AI.TextAnalytics/src/Entity.cs | 13 + .../src/EntityRecognitionPiiTasksItem.cs | 14 + ...ntityRecognitionPiiTasksItemsProperties.cs | 24 + .../src/EntityRecognitionTasksItem.cs | 15 + .../EntityRecognitionTasksItemProperties.cs | 12 + .../src/ErrorCodeValue.cs | 4 +- .../Models/AnalyzeBatchInput.Serialization.cs | 30 + .../src/Generated/Models/AnalyzeBatchInput.cs | 40 + .../Models/AnalyzeJobState.Serialization.cs | 106 + .../src/Generated/Models/AnalyzeJobState.cs | 61 + ...ocumentHealthcareEntities.Serialization.cs | 75 + .../Models/DocumentHealthcareEntities.cs | 75 + .../Models/EntitiesTask.Serialization.cs | 26 + .../src/Generated/Models/EntitiesTask.cs | 22 + .../EntitiesTaskParameters.Serialization.cs | 31 + .../Models/EntitiesTaskParameters.cs | 23 + .../Generated/Models/Entity.Serialization.cs | 4 +- .../src/Generated/Models/Entity.cs | 26 +- ...tyRecognitionPiiTasksItem.Serialization.cs | 54 + .../Models/EntityRecognitionPiiTasksItem.cs | 45 + ...ionPiiTasksItemProperties.Serialization.cs | 35 + ...EntityRecognitionPiiTasksItemProperties.cs | 16 + ...ntityRecognitionTasksItem.Serialization.cs | 54 + .../Models/EntityRecognitionTasksItem.cs | 45 + ...nitionTasksItemProperties.Serialization.cs | 34 + .../EntityRecognitionTasksItemProperties.cs | 27 + .../Models/ErrorCodeValue.Serialization.cs | 2 + .../Models/HealthcareEntity.Serialization.cs | 82 + .../src/Generated/Models/HealthcareEntity.cs | 60 + .../HealthcareEntityLink.Serialization.cs | 35 + .../Generated/Models/HealthcareEntityLink.cs | 39 + .../HealthcareJobState.Serialization.cs | 82 + .../Generated/Models/HealthcareJobState.cs | 42 + .../HealthcareRelation.Serialization.cs | 47 + .../Generated/Models/HealthcareRelation.cs | 51 + .../Models/HealthcareResult.Serialization.cs | 64 + .../src/Generated/Models/HealthcareResult.cs | 65 + .../Models/JobDescriptor.Serialization.cs | 26 + .../src/Generated/Models/JobDescriptor.cs | 21 + .../Models/JobManifest.Serialization.cs | 23 + .../src/Generated/Models/JobManifest.cs | 32 + .../Models/JobManifestTasks.Serialization.cs | 51 + .../src/Generated/Models/JobManifestTasks.cs | 24 + .../Models/JobMetadata.Serialization.cs | 65 + .../src/Generated/Models/JobMetadata.cs | 52 + ...PhraseExtractionTasksItem.Serialization.cs | 54 + .../Models/KeyPhraseExtractionTasksItem.cs | 45 + ...actionTasksItemProperties.Serialization.cs | 34 + .../KeyPhraseExtractionTasksItemProperties.cs | 27 + .../Models/KeyPhrasesTask.Serialization.cs | 26 + .../src/Generated/Models/KeyPhrasesTask.cs | 22 + .../KeyPhrasesTaskParameters.Serialization.cs | 26 + .../Models/KeyPhrasesTaskParameters.cs | 18 + .../Models/Pagination.Serialization.cs | 29 + .../src/Generated/Models/Pagination.cs | 27 + .../PiiDocumentEntities.Serialization.cs | 14 +- .../Generated/Models/PiiDocumentEntities.cs | 20 +- .../Models/PiiEntitiesResult.Serialization.cs | 4 +- .../src/Generated/Models/PiiEntitiesResult.cs | 6 +- .../Generated/Models/PiiTask.Serialization.cs | 26 + .../src/Generated/Models/PiiTask.cs | 22 + .../Models/PiiTaskParameters.Serialization.cs | 36 + .../src/Generated/Models/PiiTaskParameters.cs | 24 + .../Models/PiiTaskParametersDomain.cs | 51 + .../Generated/Models/State.Serialization.cs | 38 + .../src/Generated/Models/State.cs | 28 + .../src/Generated/Models/StringIndexType.cs | 4 +- .../Models/StringIndexTypeResponse.cs | 54 + .../Models/TaskState.Serialization.cs | 43 + .../src/Generated/Models/TaskState.cs | 37 + .../Models/TasksState.Serialization.cs | 30 + .../src/Generated/Models/TasksState.cs | 31 + .../Models/TasksStateTasks.Serialization.cs | 112 + .../src/Generated/Models/TasksStateTasks.cs | 54 + .../Generated/TextAnalyticsAnalyzeHeaders.cs | 22 + .../TextAnalyticsCancelHealthJobHeaders.cs | 22 + .../Generated/TextAnalyticsHealthHeaders.cs | 22 + .../src/Generated/TextAnalyticsRestClient.cs | 346 ++- .../src/JobManifestTasks.cs | 29 + .../src/KeyPhraseExtractionTasksItem.cs | 15 + .../KeyPhraseExtractionTasksItemProperties.cs | 12 + .../src/KeyPhraseTaskParameters.cs | 14 + .../src/KeyPhrasesTask.cs | 13 + .../src/PiiEntitiesResult.cs | 12 + .../Azure.AI.TextAnalytics/src/PiiTask.cs | 12 + .../src/StringIndexType.cs | 4 +- .../src/StringIndexTypeResponse.cs | 12 + .../Azure.AI.TextAnalytics/src/TaskState.cs | 12 + .../src/TasksStateTasks.cs | 52 + .../Azure.AI.TextAnalytics/src/autorest.md | 2 +- .../Azure.AI.TextAnalytics/src/swagger.json | 2297 +++++++++++++++++ 93 files changed, 5581 insertions(+), 50 deletions(-) create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTask.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Entity.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionPiiTasksItem.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionPiiTasksItemsProperties.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionTasksItem.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionTasksItemProperties.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeBatchInput.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeBatchInput.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/DocumentHealthcareEntities.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/DocumentHealthcareEntities.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTask.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTask.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItemProperties.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItemProperties.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItemProperties.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItemProperties.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntity.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntity.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityLink.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityLink.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareRelation.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareRelation.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareResult.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareResult.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobDescriptor.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobDescriptor.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifest.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifest.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifestTasks.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifestTasks.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItemProperties.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItemProperties.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTaskParameters.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTaskParameters.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/Pagination.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/Pagination.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTask.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTask.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParametersDomain.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/State.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/State.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexTypeResponse.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksState.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksState.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasks.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasks.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsAnalyzeHeaders.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsCancelHealthJobHeaders.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsHealthHeaders.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/JobManifestTasks.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseExtractionTasksItem.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseExtractionTasksItemProperties.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseTaskParameters.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhrasesTask.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiEntitiesResult.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTask.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexTypeResponse.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/TaskState.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasks.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/swagger.json diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Azure.AI.TextAnalytics.csproj b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Azure.AI.TextAnalytics.csproj index b79c4d08754e1..2a61b84017acd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Azure.AI.TextAnalytics.csproj +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Azure.AI.TextAnalytics.csproj @@ -1,4 +1,4 @@ - + Azure Cognitive Services Text Analytics is a cloud service that provides advanced natural language processing over raw text, and features like Language Detection, Sentiment Analysis, Key Phrase Extraction, Named Entity Recognition, and Linked Entity Recognition. Microsoft Azure.AI.TextAnalytics client library @@ -6,7 +6,7 @@ 5.0.0 Microsoft Azure Text Analytics $(RequiredTargetFrameworks) - $(NoWarn);3021 + $(NoWarn);3021;AZC0012;CS1591 diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTask.cs new file mode 100644 index 0000000000000..601a6d3c4c8f7 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTask.cs @@ -0,0 +1,13 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.AI.TextAnalytics.Models; +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + [CodeGenModel("EntitiesTask")] + public partial class EntitiesTask + { + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Entity.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Entity.cs new file mode 100644 index 0000000000000..6b68ee6d60d45 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Entity.cs @@ -0,0 +1,13 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Collections.Generic; +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + [CodeGenModel("Entity")] + public partial class Entity + { + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionPiiTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionPiiTasksItem.cs new file mode 100644 index 0000000000000..8d927267de26b --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionPiiTasksItem.cs @@ -0,0 +1,14 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Collections.Generic; +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + [CodeGenModel("TasksStateTasksEntityRecognitionPiiTasksItem")] + public partial class EntityRecognitionPiiTasksItem + { + internal PiiEntitiesResult Results { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionPiiTasksItemsProperties.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionPiiTasksItemsProperties.cs new file mode 100644 index 0000000000000..db1f552fe9e46 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionPiiTasksItemsProperties.cs @@ -0,0 +1,24 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + [CodeGenModel("Components15X8E9LSchemasTasksstatePropertiesTasksPropertiesEntityrecognitionpiitasksItemsAllof1")] + internal partial class EntityRecognitionPiiTasksItemProperties + { + /// Initializes a new instance of EntityRecognitionPiiTasksItemProperties. + internal EntityRecognitionPiiTasksItemProperties() + { + } + + /// Initializes a new instance of EntityRecognitionPiiTasksItemProperties. + /// . + internal EntityRecognitionPiiTasksItemProperties(PiiEntitiesResult results) + { + Results = results; + } + public PiiEntitiesResult Results { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionTasksItem.cs new file mode 100644 index 0000000000000..e9c170622fdf4 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionTasksItem.cs @@ -0,0 +1,15 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Collections.Generic; +using Azure.AI.TextAnalytics.Models; +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + [CodeGenModel("TasksStateTasksEntityRecognitionTasksItem")] + public partial class EntityRecognitionTasksItem + { + internal EntitiesResult Results { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionTasksItemProperties.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionTasksItemProperties.cs new file mode 100644 index 0000000000000..f34fac6ea2c14 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionTasksItemProperties.cs @@ -0,0 +1,12 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + [CodeGenModel("Components15Gvwi3SchemasTasksstatePropertiesTasksPropertiesEntityrecognitiontasksItemsAllof1")] + internal partial class EntityRecognitionTasksItemProperties + { + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/ErrorCodeValue.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/ErrorCodeValue.cs index 727754f084a30..cb1b32cfb8b94 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/ErrorCodeValue.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/ErrorCodeValue.cs @@ -15,6 +15,8 @@ internal enum ErrorCodeValue /// internalServerError. InternalServerError, /// serviceUnavailable. - ServiceUnavailable + ServiceUnavailable, + /// notFound. + NotFound } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeBatchInput.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeBatchInput.Serialization.cs new file mode 100644 index 0000000000000..d2e689818569e --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeBatchInput.Serialization.cs @@ -0,0 +1,30 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class AnalyzeBatchInput : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + writer.WritePropertyName("analysisInput"); + writer.WriteObjectValue(AnalysisInput); + writer.WritePropertyName("tasks"); + writer.WriteObjectValue(Tasks); + if (Optional.IsDefined(DisplayName)) + { + writer.WritePropertyName("displayName"); + writer.WriteStringValue(DisplayName); + } + writer.WriteEndObject(); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeBatchInput.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeBatchInput.cs new file mode 100644 index 0000000000000..af773043f6a11 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeBatchInput.cs @@ -0,0 +1,40 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using Azure.AI.TextAnalytics; + +namespace Azure.AI.TextAnalytics.Models +{ + /// The AnalyzeBatchInput. + internal partial class AnalyzeBatchInput : JobDescriptor + { + /// Initializes a new instance of AnalyzeBatchInput. + /// Contains a set of input documents to be analyzed by the service. + /// The set of tasks to execute on the input documents. Cannot specify the same task more than once. + /// or is null. + public AnalyzeBatchInput(MultiLanguageBatchInput analysisInput, JobManifestTasks tasks) + { + if (analysisInput == null) + { + throw new ArgumentNullException(nameof(analysisInput)); + } + if (tasks == null) + { + throw new ArgumentNullException(nameof(tasks)); + } + + AnalysisInput = analysisInput; + Tasks = tasks; + } + + /// Contains a set of input documents to be analyzed by the service. + public MultiLanguageBatchInput AnalysisInput { get; } + /// The set of tasks to execute on the input documents. Cannot specify the same task more than once. + public JobManifestTasks Tasks { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.Serialization.cs new file mode 100644 index 0000000000000..66cdedff8ebe8 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.Serialization.cs @@ -0,0 +1,106 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Text.Json; +using Azure.AI.TextAnalytics; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class AnalyzeJobState + { + internal static AnalyzeJobState DeserializeAnalyzeJobState(JsonElement element) + { + Optional> errors = default; + Optional statistics = default; + TasksStateTasks tasks = default; + Optional nextLink = default; + DateTimeOffset createdDateTime = default; + Optional displayName = default; + Optional expirationDateTime = default; + Guid jobId = default; + DateTimeOffset lastUpdateDateTime = default; + State status = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("errors")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(TextAnalyticsErrorInternal.DeserializeTextAnalyticsErrorInternal(item)); + } + errors = array; + continue; + } + if (property.NameEquals("statistics")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + statistics = TextDocumentBatchStatistics.DeserializeTextDocumentBatchStatistics(property.Value); + continue; + } + if (property.NameEquals("tasks")) + { + tasks = TasksStateTasks.DeserializeTasksStateTasks(property.Value); + continue; + } + if (property.NameEquals("@nextLink")) + { + nextLink = property.Value.GetString(); + continue; + } + if (property.NameEquals("createdDateTime")) + { + createdDateTime = property.Value.GetDateTimeOffset("O"); + continue; + } + if (property.NameEquals("displayName")) + { + displayName = property.Value.GetString(); + continue; + } + if (property.NameEquals("expirationDateTime")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + expirationDateTime = property.Value.GetDateTimeOffset("O"); + continue; + } + if (property.NameEquals("jobId")) + { + jobId = property.Value.GetGuid(); + continue; + } + if (property.NameEquals("lastUpdateDateTime")) + { + lastUpdateDateTime = property.Value.GetDateTimeOffset("O"); + continue; + } + if (property.NameEquals("status")) + { + status = property.Value.GetString().ToState(); + continue; + } + } + return new AnalyzeJobState(createdDateTime, displayName.Value, Optional.ToNullable(expirationDateTime), jobId, lastUpdateDateTime, status, Optional.ToList(errors), statistics.Value, tasks, nextLink.Value); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.cs new file mode 100644 index 0000000000000..b09f806fd181e --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.cs @@ -0,0 +1,61 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using Azure.AI.TextAnalytics; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + /// The AnalyzeJobState. + internal partial class AnalyzeJobState : JobMetadata + { + /// Initializes a new instance of AnalyzeJobState. + /// . + /// . + /// . + /// . + /// . + /// is null. + internal AnalyzeJobState(DateTimeOffset createdDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, State status, TasksStateTasks tasks) : base(createdDateTime, jobId, lastUpdateDateTime, status) + { + if (tasks == null) + { + throw new ArgumentNullException(nameof(tasks)); + } + + Errors = new ChangeTrackingList(); + Tasks = tasks; + } + + /// Initializes a new instance of AnalyzeJobState. + /// . + /// . + /// . + /// . + /// . + /// . + /// . + /// if showStats=true was specified in the request this field will contain information about the request payload. + /// . + /// . + internal AnalyzeJobState(DateTimeOffset createdDateTime, string displayName, DateTimeOffset? expirationDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, State status, IReadOnlyList errors, TextDocumentBatchStatistics statistics, TasksStateTasks tasks, string nextLink) : base(createdDateTime, displayName, expirationDateTime, jobId, lastUpdateDateTime, status) + { + Errors = errors; + Statistics = statistics; + Tasks = tasks; + NextLink = nextLink; + } + + public IReadOnlyList Errors { get; } + /// if showStats=true was specified in the request this field will contain information about the request payload. + public TextDocumentBatchStatistics Statistics { get; } + public TasksStateTasks Tasks { get; } + public string NextLink { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/DocumentHealthcareEntities.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/DocumentHealthcareEntities.Serialization.cs new file mode 100644 index 0000000000000..7ae482fe96066 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/DocumentHealthcareEntities.Serialization.cs @@ -0,0 +1,75 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; +using System.Text.Json; +using Azure.AI.TextAnalytics; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class DocumentHealthcareEntities + { + internal static DocumentHealthcareEntities DeserializeDocumentHealthcareEntities(JsonElement element) + { + string id = default; + IReadOnlyList entities = default; + IReadOnlyList relations = default; + IReadOnlyList warnings = default; + Optional statistics = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("id")) + { + id = property.Value.GetString(); + continue; + } + if (property.NameEquals("entities")) + { + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(HealthcareEntity.DeserializeHealthcareEntity(item)); + } + entities = array; + continue; + } + if (property.NameEquals("relations")) + { + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(HealthcareRelation.DeserializeHealthcareRelation(item)); + } + relations = array; + continue; + } + if (property.NameEquals("warnings")) + { + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(TextAnalyticsWarningInternal.DeserializeTextAnalyticsWarningInternal(item)); + } + warnings = array; + continue; + } + if (property.NameEquals("statistics")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + statistics = TextDocumentStatistics.DeserializeTextDocumentStatistics(property.Value); + continue; + } + } + return new DocumentHealthcareEntities(id, entities, relations, warnings, Optional.ToNullable(statistics)); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/DocumentHealthcareEntities.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/DocumentHealthcareEntities.cs new file mode 100644 index 0000000000000..f7f2f5a056d06 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/DocumentHealthcareEntities.cs @@ -0,0 +1,75 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Linq; +using Azure.AI.TextAnalytics; + +namespace Azure.AI.TextAnalytics.Models +{ + /// The DocumentHealthcareEntities. + internal partial class DocumentHealthcareEntities + { + /// Initializes a new instance of DocumentHealthcareEntities. + /// Unique, non-empty document identifier. + /// Healthcare entities. + /// Healthcare entity relations. + /// Warnings encountered while processing document. + /// , , , or is null. + internal DocumentHealthcareEntities(string id, IEnumerable entities, IEnumerable relations, IEnumerable warnings) + { + if (id == null) + { + throw new ArgumentNullException(nameof(id)); + } + if (entities == null) + { + throw new ArgumentNullException(nameof(entities)); + } + if (relations == null) + { + throw new ArgumentNullException(nameof(relations)); + } + if (warnings == null) + { + throw new ArgumentNullException(nameof(warnings)); + } + + Id = id; + Entities = entities.ToList(); + Relations = relations.ToList(); + Warnings = warnings.ToList(); + } + + /// Initializes a new instance of DocumentHealthcareEntities. + /// Unique, non-empty document identifier. + /// Healthcare entities. + /// Healthcare entity relations. + /// Warnings encountered while processing document. + /// if showStats=true was specified in the request this field will contain information about the document payload. + internal DocumentHealthcareEntities(string id, IReadOnlyList entities, IReadOnlyList relations, IReadOnlyList warnings, TextDocumentStatistics? statistics) + { + Id = id; + Entities = entities; + Relations = relations; + Warnings = warnings; + Statistics = statistics; + } + + /// Unique, non-empty document identifier. + public string Id { get; } + /// Healthcare entities. + public IReadOnlyList Entities { get; } + /// Healthcare entity relations. + public IReadOnlyList Relations { get; } + /// Warnings encountered while processing document. + public IReadOnlyList Warnings { get; } + /// if showStats=true was specified in the request this field will contain information about the document payload. + public TextDocumentStatistics? Statistics { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTask.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTask.Serialization.cs new file mode 100644 index 0000000000000..931b690e5ad42 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTask.Serialization.cs @@ -0,0 +1,26 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + public partial class EntitiesTask : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsDefined(Parameters)) + { + writer.WritePropertyName("parameters"); + writer.WriteObjectValue(Parameters); + } + writer.WriteEndObject(); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTask.cs new file mode 100644 index 0000000000000..ccf098d49f849 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTask.cs @@ -0,0 +1,22 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using Azure.AI.TextAnalytics.Models; + +namespace Azure.AI.TextAnalytics +{ + /// The EntitiesTask. + public partial class EntitiesTask + { + /// Initializes a new instance of EntitiesTask. + public EntitiesTask() + { + } + + public EntitiesTaskParameters Parameters { get; set; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.Serialization.cs new file mode 100644 index 0000000000000..771a98e3fbb04 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.Serialization.cs @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + public partial class EntitiesTaskParameters : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsDefined(ModelVersion)) + { + writer.WritePropertyName("model-version"); + writer.WriteStringValue(ModelVersion); + } + if (Optional.IsDefined(StringIndexType)) + { + writer.WritePropertyName("stringIndexType"); + writer.WriteStringValue(StringIndexType.Value.ToString()); + } + writer.WriteEndObject(); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.cs new file mode 100644 index 0000000000000..0605d2c316da2 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.cs @@ -0,0 +1,23 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using Azure.AI.TextAnalytics; + +namespace Azure.AI.TextAnalytics.Models +{ + /// The EntitiesTaskParameters. + public partial class EntitiesTaskParameters + { + /// Initializes a new instance of EntitiesTaskParameters. + public EntitiesTaskParameters() + { + } + + public string ModelVersion { get; set; } + public StringIndexTypeResponse? StringIndexType { get; set; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/Entity.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/Entity.Serialization.cs index 94e1ec99bf2bc..fd55598e6dc1d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/Entity.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/Entity.Serialization.cs @@ -8,9 +8,9 @@ using System.Text.Json; using Azure.Core; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { - internal partial class Entity + public partial class Entity { internal static Entity DeserializeEntity(JsonElement element) { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/Entity.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/Entity.cs index ff41fcafc698a..2f9ba9583b116 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/Entity.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/Entity.cs @@ -7,16 +7,16 @@ using System; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { /// The Entity. - internal partial class Entity + public partial class Entity { /// Initializes a new instance of Entity. /// Entity text as appears in the request. - /// Entity type, such as Person/Location/Org/SSN etc. - /// Start position for the entity text. - /// Length for the entity text. + /// Entity type. + /// Start position for the entity text. Use of different 'stringIndexType' values can affect the offset returned. + /// Length for the entity text. Use of different 'stringIndexType' values can affect the length returned. /// Confidence score between 0 and 1 of the extracted entity. /// or is null. internal Entity(string text, string category, int offset, int length, double confidenceScore) @@ -39,10 +39,10 @@ internal Entity(string text, string category, int offset, int length, double con /// Initializes a new instance of Entity. /// Entity text as appears in the request. - /// Entity type, such as Person/Location/Org/SSN etc. - /// Entity sub type, such as Age/Year/TimeRange etc. - /// Start position for the entity text. - /// Length for the entity text. + /// Entity type. + /// (Optional) Entity sub type. + /// Start position for the entity text. Use of different 'stringIndexType' values can affect the offset returned. + /// Length for the entity text. Use of different 'stringIndexType' values can affect the length returned. /// Confidence score between 0 and 1 of the extracted entity. internal Entity(string text, string category, string subcategory, int offset, int length, double confidenceScore) { @@ -56,13 +56,13 @@ internal Entity(string text, string category, string subcategory, int offset, in /// Entity text as appears in the request. public string Text { get; } - /// Entity type, such as Person/Location/Org/SSN etc. + /// Entity type. public string Category { get; } - /// Entity sub type, such as Age/Year/TimeRange etc. + /// (Optional) Entity sub type. public string Subcategory { get; } - /// Start position for the entity text. + /// Start position for the entity text. Use of different 'stringIndexType' values can affect the offset returned. public int Offset { get; } - /// Length for the entity text. + /// Length for the entity text. Use of different 'stringIndexType' values can affect the length returned. public int Length { get; } /// Confidence score between 0 and 1 of the extracted entity. public double ConfidenceScore { get; } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.Serialization.cs new file mode 100644 index 0000000000000..1f6eaca497eeb --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.Serialization.cs @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using Azure.AI.TextAnalytics.Models; +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + public partial class EntityRecognitionPiiTasksItem + { + internal static EntityRecognitionPiiTasksItem DeserializeEntityRecognitionPiiTasksItem(JsonElement element) + { + Optional results = default; + DateTimeOffset lastUpdateDateTime = default; + string name = default; + State status = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("results")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + results = PiiEntitiesResult.DeserializePiiEntitiesResult(property.Value); + continue; + } + if (property.NameEquals("lastUpdateDateTime")) + { + lastUpdateDateTime = property.Value.GetDateTimeOffset("O"); + continue; + } + if (property.NameEquals("name")) + { + name = property.Value.GetString(); + continue; + } + if (property.NameEquals("status")) + { + status = property.Value.GetString().ToState(); + continue; + } + } + return new EntityRecognitionPiiTasksItem(lastUpdateDateTime, name, status, results.Value); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.cs new file mode 100644 index 0000000000000..3d09cc63d2be1 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.cs @@ -0,0 +1,45 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using Azure.AI.TextAnalytics.Models; + +namespace Azure.AI.TextAnalytics +{ + /// The TasksStateTasksEntityRecognitionPiiTasksItem. + public partial class EntityRecognitionPiiTasksItem : TaskState + { + /// Initializes a new instance of EntityRecognitionPiiTasksItem. + /// . + /// . + /// . + /// is null. + internal EntityRecognitionPiiTasksItem(DateTimeOffset lastUpdateDateTime, string name, State status) : base(lastUpdateDateTime, name, status) + { + if (name == null) + { + throw new ArgumentNullException(nameof(name)); + } + } + + /// Initializes a new instance of EntityRecognitionPiiTasksItem. + /// . + /// . + /// . + /// . + /// is null. + internal EntityRecognitionPiiTasksItem(DateTimeOffset lastUpdateDateTime, string name, State status, PiiEntitiesResult results) : base(lastUpdateDateTime, name, status) + { + if (name == null) + { + throw new ArgumentNullException(nameof(name)); + } + + Results = results; + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItemProperties.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItemProperties.Serialization.cs new file mode 100644 index 0000000000000..c1b2ee734e9ff --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItemProperties.Serialization.cs @@ -0,0 +1,35 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.AI.TextAnalytics; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class EntityRecognitionPiiTasksItemProperties + { + internal static EntityRecognitionPiiTasksItemProperties DeserializeEntityRecognitionPiiTasksItemProperties(JsonElement element) + { + Optional results = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("results")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + results = PiiEntitiesResult.DeserializePiiEntitiesResult(property.Value); + continue; + } + } + return new EntityRecognitionPiiTasksItemProperties(results.Value); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItemProperties.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItemProperties.cs new file mode 100644 index 0000000000000..8acc57b8b154d --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItemProperties.cs @@ -0,0 +1,16 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using Azure.AI.TextAnalytics; + +namespace Azure.AI.TextAnalytics.Models +{ + /// The Components15X8E9LSchemasTasksstatePropertiesTasksPropertiesEntityrecognitionpiitasksItemsAllof1. + internal partial class EntityRecognitionPiiTasksItemProperties + { + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.Serialization.cs new file mode 100644 index 0000000000000..b020aa84787ef --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.Serialization.cs @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using Azure.AI.TextAnalytics.Models; +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + public partial class EntityRecognitionTasksItem + { + internal static EntityRecognitionTasksItem DeserializeEntityRecognitionTasksItem(JsonElement element) + { + Optional results = default; + DateTimeOffset lastUpdateDateTime = default; + string name = default; + State status = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("results")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + results = EntitiesResult.DeserializeEntitiesResult(property.Value); + continue; + } + if (property.NameEquals("lastUpdateDateTime")) + { + lastUpdateDateTime = property.Value.GetDateTimeOffset("O"); + continue; + } + if (property.NameEquals("name")) + { + name = property.Value.GetString(); + continue; + } + if (property.NameEquals("status")) + { + status = property.Value.GetString().ToState(); + continue; + } + } + return new EntityRecognitionTasksItem(lastUpdateDateTime, name, status, results.Value); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.cs new file mode 100644 index 0000000000000..7010dea066f2e --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.cs @@ -0,0 +1,45 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using Azure.AI.TextAnalytics.Models; + +namespace Azure.AI.TextAnalytics +{ + /// The TasksStateTasksEntityRecognitionTasksItem. + public partial class EntityRecognitionTasksItem : TaskState + { + /// Initializes a new instance of EntityRecognitionTasksItem. + /// . + /// . + /// . + /// is null. + internal EntityRecognitionTasksItem(DateTimeOffset lastUpdateDateTime, string name, State status) : base(lastUpdateDateTime, name, status) + { + if (name == null) + { + throw new ArgumentNullException(nameof(name)); + } + } + + /// Initializes a new instance of EntityRecognitionTasksItem. + /// . + /// . + /// . + /// . + /// is null. + internal EntityRecognitionTasksItem(DateTimeOffset lastUpdateDateTime, string name, State status, EntitiesResult results) : base(lastUpdateDateTime, name, status) + { + if (name == null) + { + throw new ArgumentNullException(nameof(name)); + } + + Results = results; + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItemProperties.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItemProperties.Serialization.cs new file mode 100644 index 0000000000000..3a04b46feabcd --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItemProperties.Serialization.cs @@ -0,0 +1,34 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class EntityRecognitionTasksItemProperties + { + internal static EntityRecognitionTasksItemProperties DeserializeEntityRecognitionTasksItemProperties(JsonElement element) + { + Optional results = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("results")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + results = EntitiesResult.DeserializeEntitiesResult(property.Value); + continue; + } + } + return new EntityRecognitionTasksItemProperties(results.Value); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItemProperties.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItemProperties.cs new file mode 100644 index 0000000000000..f91af84f43c14 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItemProperties.cs @@ -0,0 +1,27 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.AI.TextAnalytics.Models +{ + /// The Components15Gvwi3SchemasTasksstatePropertiesTasksPropertiesEntityrecognitiontasksItemsAllof1. + internal partial class EntityRecognitionTasksItemProperties + { + /// Initializes a new instance of EntityRecognitionTasksItemProperties. + internal EntityRecognitionTasksItemProperties() + { + } + + /// Initializes a new instance of EntityRecognitionTasksItemProperties. + /// . + internal EntityRecognitionTasksItemProperties(EntitiesResult results) + { + Results = results; + } + + public EntitiesResult Results { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/ErrorCodeValue.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/ErrorCodeValue.Serialization.cs index 0bb72c72e237b..39ffc3a10335e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/ErrorCodeValue.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/ErrorCodeValue.Serialization.cs @@ -17,6 +17,7 @@ internal static class ErrorCodeValueExtensions ErrorCodeValue.InvalidArgument => "InvalidArgument", ErrorCodeValue.InternalServerError => "InternalServerError", ErrorCodeValue.ServiceUnavailable => "ServiceUnavailable", + ErrorCodeValue.NotFound => "NotFound", _ => throw new ArgumentOutOfRangeException(nameof(value), value, "Unknown ErrorCodeValue value.") }; @@ -26,6 +27,7 @@ public static ErrorCodeValue ToErrorCodeValue(this string value) if (string.Equals(value, "InvalidArgument", StringComparison.InvariantCultureIgnoreCase)) return ErrorCodeValue.InvalidArgument; if (string.Equals(value, "InternalServerError", StringComparison.InvariantCultureIgnoreCase)) return ErrorCodeValue.InternalServerError; if (string.Equals(value, "ServiceUnavailable", StringComparison.InvariantCultureIgnoreCase)) return ErrorCodeValue.ServiceUnavailable; + if (string.Equals(value, "NotFound", StringComparison.InvariantCultureIgnoreCase)) return ErrorCodeValue.NotFound; throw new ArgumentOutOfRangeException(nameof(value), value, "Unknown ErrorCodeValue value."); } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntity.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntity.Serialization.cs new file mode 100644 index 0000000000000..03f417f45cef6 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntity.Serialization.cs @@ -0,0 +1,82 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class HealthcareEntity + { + internal static HealthcareEntity DeserializeHealthcareEntity(JsonElement element) + { + bool isNegated = default; + Optional> links = default; + string text = default; + string category = default; + Optional subcategory = default; + int offset = default; + int length = default; + double confidenceScore = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("isNegated")) + { + isNegated = property.Value.GetBoolean(); + continue; + } + if (property.NameEquals("links")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(HealthcareEntityLink.DeserializeHealthcareEntityLink(item)); + } + links = array; + continue; + } + if (property.NameEquals("text")) + { + text = property.Value.GetString(); + continue; + } + if (property.NameEquals("category")) + { + category = property.Value.GetString(); + continue; + } + if (property.NameEquals("subcategory")) + { + subcategory = property.Value.GetString(); + continue; + } + if (property.NameEquals("offset")) + { + offset = property.Value.GetInt32(); + continue; + } + if (property.NameEquals("length")) + { + length = property.Value.GetInt32(); + continue; + } + if (property.NameEquals("confidenceScore")) + { + confidenceScore = property.Value.GetDouble(); + continue; + } + } + return new HealthcareEntity(text, category, subcategory.Value, offset, length, confidenceScore, isNegated, Optional.ToList(links)); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntity.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntity.cs new file mode 100644 index 0000000000000..8640032336a20 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntity.cs @@ -0,0 +1,60 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using Azure.AI.TextAnalytics; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + /// The HealthcareEntity. + internal partial class HealthcareEntity : Entity + { + /// Initializes a new instance of HealthcareEntity. + /// Entity text as appears in the request. + /// Entity type. + /// Start position for the entity text. Use of different 'stringIndexType' values can affect the offset returned. + /// Length for the entity text. Use of different 'stringIndexType' values can affect the length returned. + /// Confidence score between 0 and 1 of the extracted entity. + /// . + /// or is null. + internal HealthcareEntity(string text, string category, int offset, int length, double confidenceScore, bool isNegated) : base(text, category, offset, length, confidenceScore) + { + if (text == null) + { + throw new ArgumentNullException(nameof(text)); + } + if (category == null) + { + throw new ArgumentNullException(nameof(category)); + } + + IsNegated = isNegated; + Links = new ChangeTrackingList(); + } + + /// Initializes a new instance of HealthcareEntity. + /// Entity text as appears in the request. + /// Entity type. + /// (Optional) Entity sub type. + /// Start position for the entity text. Use of different 'stringIndexType' values can affect the offset returned. + /// Length for the entity text. Use of different 'stringIndexType' values can affect the length returned. + /// Confidence score between 0 and 1 of the extracted entity. + /// . + /// Entity references in known data sources. + internal HealthcareEntity(string text, string category, string subcategory, int offset, int length, double confidenceScore, bool isNegated, IReadOnlyList links) : base(text, category, subcategory, offset, length, confidenceScore) + { + IsNegated = isNegated; + Links = links; + } + + public bool IsNegated { get; } + /// Entity references in known data sources. + public IReadOnlyList Links { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityLink.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityLink.Serialization.cs new file mode 100644 index 0000000000000..3d6f4c40a79ac --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityLink.Serialization.cs @@ -0,0 +1,35 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class HealthcareEntityLink + { + internal static HealthcareEntityLink DeserializeHealthcareEntityLink(JsonElement element) + { + string dataSource = default; + string id = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("dataSource")) + { + dataSource = property.Value.GetString(); + continue; + } + if (property.NameEquals("id")) + { + id = property.Value.GetString(); + continue; + } + } + return new HealthcareEntityLink(dataSource, id); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityLink.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityLink.cs new file mode 100644 index 0000000000000..6954ae8ce5df1 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityLink.cs @@ -0,0 +1,39 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; + +namespace Azure.AI.TextAnalytics.Models +{ + /// The HealthcareEntityLink. + internal partial class HealthcareEntityLink + { + /// Initializes a new instance of HealthcareEntityLink. + /// Entity Catalog. Examples include: UMLS, CHV, MSH, etc. + /// Entity id in the given source catalog. + /// or is null. + internal HealthcareEntityLink(string dataSource, string id) + { + if (dataSource == null) + { + throw new ArgumentNullException(nameof(dataSource)); + } + if (id == null) + { + throw new ArgumentNullException(nameof(id)); + } + + DataSource = dataSource; + Id = id; + } + + /// Entity Catalog. Examples include: UMLS, CHV, MSH, etc. + public string DataSource { get; } + /// Entity id in the given source catalog. + public string Id { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.Serialization.cs new file mode 100644 index 0000000000000..23ce0a5dd6ae9 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.Serialization.cs @@ -0,0 +1,82 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class HealthcareJobState + { + internal static HealthcareJobState DeserializeHealthcareJobState(JsonElement element) + { + Optional results = default; + Optional nextLink = default; + DateTimeOffset createdDateTime = default; + Optional displayName = default; + Optional expirationDateTime = default; + Guid jobId = default; + DateTimeOffset lastUpdateDateTime = default; + State status = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("results")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + results = HealthcareResult.DeserializeHealthcareResult(property.Value); + continue; + } + if (property.NameEquals("@nextLink")) + { + nextLink = property.Value.GetString(); + continue; + } + if (property.NameEquals("createdDateTime")) + { + createdDateTime = property.Value.GetDateTimeOffset("O"); + continue; + } + if (property.NameEquals("displayName")) + { + displayName = property.Value.GetString(); + continue; + } + if (property.NameEquals("expirationDateTime")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + expirationDateTime = property.Value.GetDateTimeOffset("O"); + continue; + } + if (property.NameEquals("jobId")) + { + jobId = property.Value.GetGuid(); + continue; + } + if (property.NameEquals("lastUpdateDateTime")) + { + lastUpdateDateTime = property.Value.GetDateTimeOffset("O"); + continue; + } + if (property.NameEquals("status")) + { + status = property.Value.GetString().ToState(); + continue; + } + } + return new HealthcareJobState(createdDateTime, displayName.Value, Optional.ToNullable(expirationDateTime), jobId, lastUpdateDateTime, status, results.Value, nextLink.Value); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.cs new file mode 100644 index 0000000000000..cf96fdae08965 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.cs @@ -0,0 +1,42 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; + +namespace Azure.AI.TextAnalytics.Models +{ + /// The HealthcareJobState. + internal partial class HealthcareJobState : JobMetadata + { + /// Initializes a new instance of HealthcareJobState. + /// . + /// . + /// . + /// . + internal HealthcareJobState(DateTimeOffset createdDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, State status) : base(createdDateTime, jobId, lastUpdateDateTime, status) + { + } + + /// Initializes a new instance of HealthcareJobState. + /// . + /// . + /// . + /// . + /// . + /// . + /// . + /// . + internal HealthcareJobState(DateTimeOffset createdDateTime, string displayName, DateTimeOffset? expirationDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, State status, HealthcareResult results, string nextLink) : base(createdDateTime, displayName, expirationDateTime, jobId, lastUpdateDateTime, status) + { + Results = results; + NextLink = nextLink; + } + + public HealthcareResult Results { get; } + public string NextLink { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareRelation.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareRelation.Serialization.cs new file mode 100644 index 0000000000000..a9c20522977f0 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareRelation.Serialization.cs @@ -0,0 +1,47 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class HealthcareRelation + { + internal static HealthcareRelation DeserializeHealthcareRelation(JsonElement element) + { + string relationType = default; + bool bidirectional = default; + string source = default; + string target = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("relationType")) + { + relationType = property.Value.GetString(); + continue; + } + if (property.NameEquals("bidirectional")) + { + bidirectional = property.Value.GetBoolean(); + continue; + } + if (property.NameEquals("source")) + { + source = property.Value.GetString(); + continue; + } + if (property.NameEquals("target")) + { + target = property.Value.GetString(); + continue; + } + } + return new HealthcareRelation(relationType, bidirectional, source, target); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareRelation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareRelation.cs new file mode 100644 index 0000000000000..1ed92ddf9e494 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareRelation.cs @@ -0,0 +1,51 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; + +namespace Azure.AI.TextAnalytics.Models +{ + /// The HealthcareRelation. + internal partial class HealthcareRelation + { + /// Initializes a new instance of HealthcareRelation. + /// Type of relation. Examples include: `DosageOfMedication` or 'FrequencyOfMedication', etc. + /// If true the relation between the entities is bidirectional, otherwise directionality is source to target. + /// Reference link to the source entity. + /// Reference link to the target entity. + /// , , or is null. + internal HealthcareRelation(string relationType, bool bidirectional, string source, string target) + { + if (relationType == null) + { + throw new ArgumentNullException(nameof(relationType)); + } + if (source == null) + { + throw new ArgumentNullException(nameof(source)); + } + if (target == null) + { + throw new ArgumentNullException(nameof(target)); + } + + RelationType = relationType; + Bidirectional = bidirectional; + Source = source; + Target = target; + } + + /// Type of relation. Examples include: `DosageOfMedication` or 'FrequencyOfMedication', etc. + public string RelationType { get; } + /// If true the relation between the entities is bidirectional, otherwise directionality is source to target. + public bool Bidirectional { get; } + /// Reference link to the source entity. + public string Source { get; } + /// Reference link to the target entity. + public string Target { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareResult.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareResult.Serialization.cs new file mode 100644 index 0000000000000..8173798547344 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareResult.Serialization.cs @@ -0,0 +1,64 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; +using System.Text.Json; +using Azure.AI.TextAnalytics; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class HealthcareResult + { + internal static HealthcareResult DeserializeHealthcareResult(JsonElement element) + { + IReadOnlyList documents = default; + IReadOnlyList errors = default; + Optional statistics = default; + string modelVersion = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("documents")) + { + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(DocumentHealthcareEntities.DeserializeDocumentHealthcareEntities(item)); + } + documents = array; + continue; + } + if (property.NameEquals("errors")) + { + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(DocumentError.DeserializeDocumentError(item)); + } + errors = array; + continue; + } + if (property.NameEquals("statistics")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + statistics = TextDocumentBatchStatistics.DeserializeTextDocumentBatchStatistics(property.Value); + continue; + } + if (property.NameEquals("modelVersion")) + { + modelVersion = property.Value.GetString(); + continue; + } + } + return new HealthcareResult(documents, errors, statistics.Value, modelVersion); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareResult.cs new file mode 100644 index 0000000000000..1ddfb7ae394a9 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareResult.cs @@ -0,0 +1,65 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Collections.Generic; +using System.Linq; +using Azure.AI.TextAnalytics; + +namespace Azure.AI.TextAnalytics.Models +{ + /// The HealthcareResult. + internal partial class HealthcareResult + { + /// Initializes a new instance of HealthcareResult. + /// Response by document. + /// Errors by document id. + /// This field indicates which model is used for scoring. + /// , , or is null. + internal HealthcareResult(IEnumerable documents, IEnumerable errors, string modelVersion) + { + if (documents == null) + { + throw new ArgumentNullException(nameof(documents)); + } + if (errors == null) + { + throw new ArgumentNullException(nameof(errors)); + } + if (modelVersion == null) + { + throw new ArgumentNullException(nameof(modelVersion)); + } + + Documents = documents.ToList(); + Errors = errors.ToList(); + ModelVersion = modelVersion; + } + + /// Initializes a new instance of HealthcareResult. + /// Response by document. + /// Errors by document id. + /// if showStats=true was specified in the request this field will contain information about the request payload. + /// This field indicates which model is used for scoring. + internal HealthcareResult(IReadOnlyList documents, IReadOnlyList errors, TextDocumentBatchStatistics statistics, string modelVersion) + { + Documents = documents; + Errors = errors; + Statistics = statistics; + ModelVersion = modelVersion; + } + + /// Response by document. + public IReadOnlyList Documents { get; } + /// Errors by document id. + public IReadOnlyList Errors { get; } + /// if showStats=true was specified in the request this field will contain information about the request payload. + public TextDocumentBatchStatistics Statistics { get; } + /// This field indicates which model is used for scoring. + public string ModelVersion { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobDescriptor.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobDescriptor.Serialization.cs new file mode 100644 index 0000000000000..2f17bcbdcd03a --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobDescriptor.Serialization.cs @@ -0,0 +1,26 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class JobDescriptor : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsDefined(DisplayName)) + { + writer.WritePropertyName("displayName"); + writer.WriteStringValue(DisplayName); + } + writer.WriteEndObject(); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobDescriptor.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobDescriptor.cs new file mode 100644 index 0000000000000..1c8f028ed44e6 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobDescriptor.cs @@ -0,0 +1,21 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.AI.TextAnalytics.Models +{ + /// The JobDescriptor. + internal partial class JobDescriptor + { + /// Initializes a new instance of JobDescriptor. + public JobDescriptor() + { + } + + /// Optional display name for the analysis job. + public string DisplayName { get; set; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifest.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifest.Serialization.cs new file mode 100644 index 0000000000000..82749d35315f6 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifest.Serialization.cs @@ -0,0 +1,23 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class JobManifest : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + writer.WritePropertyName("tasks"); + writer.WriteObjectValue(Tasks); + writer.WriteEndObject(); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifest.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifest.cs new file mode 100644 index 0000000000000..472c310b30f62 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifest.cs @@ -0,0 +1,32 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using Azure.AI.TextAnalytics; + +namespace Azure.AI.TextAnalytics.Models +{ + /// The JobManifest. + internal partial class JobManifest + { + /// Initializes a new instance of JobManifest. + /// The set of tasks to execute on the input documents. Cannot specify the same task more than once. + /// is null. + public JobManifest(JobManifestTasks tasks) + { + if (tasks == null) + { + throw new ArgumentNullException(nameof(tasks)); + } + + Tasks = tasks; + } + + /// The set of tasks to execute on the input documents. Cannot specify the same task more than once. + public JobManifestTasks Tasks { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifestTasks.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifestTasks.Serialization.cs new file mode 100644 index 0000000000000..83e7dc09a59c6 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifestTasks.Serialization.cs @@ -0,0 +1,51 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + public partial class JobManifestTasks : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsCollectionDefined(EntityRecognitionTasks)) + { + writer.WritePropertyName("entityRecognitionTasks"); + writer.WriteStartArray(); + foreach (var item in EntityRecognitionTasks) + { + writer.WriteObjectValue(item); + } + writer.WriteEndArray(); + } + if (Optional.IsCollectionDefined(EntityRecognitionPiiTasks)) + { + writer.WritePropertyName("entityRecognitionPiiTasks"); + writer.WriteStartArray(); + foreach (var item in EntityRecognitionPiiTasks) + { + writer.WriteObjectValue(item); + } + writer.WriteEndArray(); + } + if (Optional.IsCollectionDefined(KeyPhraseExtractionTasks)) + { + writer.WritePropertyName("keyPhraseExtractionTasks"); + writer.WriteStartArray(); + foreach (var item in KeyPhraseExtractionTasks) + { + writer.WriteObjectValue(item); + } + writer.WriteEndArray(); + } + writer.WriteEndObject(); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifestTasks.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifestTasks.cs new file mode 100644 index 0000000000000..cd97fb0e0c0a3 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobManifestTasks.cs @@ -0,0 +1,24 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + /// The set of tasks to execute on the input documents. Cannot specify the same task more than once. + public partial class JobManifestTasks + { + /// Initializes a new instance of JobManifestTasks. + public JobManifestTasks() + { + EntityRecognitionTasks = new ChangeTrackingList(); + EntityRecognitionPiiTasks = new ChangeTrackingList(); + KeyPhraseExtractionTasks = new ChangeTrackingList(); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.Serialization.cs new file mode 100644 index 0000000000000..d977a0aad35ab --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.Serialization.cs @@ -0,0 +1,65 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class JobMetadata + { + internal static JobMetadata DeserializeJobMetadata(JsonElement element) + { + DateTimeOffset createdDateTime = default; + Optional displayName = default; + Optional expirationDateTime = default; + Guid jobId = default; + DateTimeOffset lastUpdateDateTime = default; + State status = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("createdDateTime")) + { + createdDateTime = property.Value.GetDateTimeOffset("O"); + continue; + } + if (property.NameEquals("displayName")) + { + displayName = property.Value.GetString(); + continue; + } + if (property.NameEquals("expirationDateTime")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + expirationDateTime = property.Value.GetDateTimeOffset("O"); + continue; + } + if (property.NameEquals("jobId")) + { + jobId = property.Value.GetGuid(); + continue; + } + if (property.NameEquals("lastUpdateDateTime")) + { + lastUpdateDateTime = property.Value.GetDateTimeOffset("O"); + continue; + } + if (property.NameEquals("status")) + { + status = property.Value.GetString().ToState(); + continue; + } + } + return new JobMetadata(createdDateTime, displayName.Value, Optional.ToNullable(expirationDateTime), jobId, lastUpdateDateTime, status); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.cs new file mode 100644 index 0000000000000..be068f2540286 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.cs @@ -0,0 +1,52 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; + +namespace Azure.AI.TextAnalytics.Models +{ + /// The JobMetadata. + internal partial class JobMetadata + { + /// Initializes a new instance of JobMetadata. + /// . + /// . + /// . + /// . + internal JobMetadata(DateTimeOffset createdDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, State status) + { + CreatedDateTime = createdDateTime; + JobId = jobId; + LastUpdateDateTime = lastUpdateDateTime; + Status = status; + } + + /// Initializes a new instance of JobMetadata. + /// . + /// . + /// . + /// . + /// . + /// . + internal JobMetadata(DateTimeOffset createdDateTime, string displayName, DateTimeOffset? expirationDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, State status) + { + CreatedDateTime = createdDateTime; + DisplayName = displayName; + ExpirationDateTime = expirationDateTime; + JobId = jobId; + LastUpdateDateTime = lastUpdateDateTime; + Status = status; + } + + public DateTimeOffset CreatedDateTime { get; } + public string DisplayName { get; } + public DateTimeOffset? ExpirationDateTime { get; } + public Guid JobId { get; } + public DateTimeOffset LastUpdateDateTime { get; } + public State Status { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.Serialization.cs new file mode 100644 index 0000000000000..aa1376d37b430 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.Serialization.cs @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using Azure.AI.TextAnalytics.Models; +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + public partial class KeyPhraseExtractionTasksItem + { + internal static KeyPhraseExtractionTasksItem DeserializeKeyPhraseExtractionTasksItem(JsonElement element) + { + Optional results = default; + DateTimeOffset lastUpdateDateTime = default; + string name = default; + State status = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("results")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + results = KeyPhraseResult.DeserializeKeyPhraseResult(property.Value); + continue; + } + if (property.NameEquals("lastUpdateDateTime")) + { + lastUpdateDateTime = property.Value.GetDateTimeOffset("O"); + continue; + } + if (property.NameEquals("name")) + { + name = property.Value.GetString(); + continue; + } + if (property.NameEquals("status")) + { + status = property.Value.GetString().ToState(); + continue; + } + } + return new KeyPhraseExtractionTasksItem(lastUpdateDateTime, name, status, results.Value); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.cs new file mode 100644 index 0000000000000..71f5bbd475c0e --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.cs @@ -0,0 +1,45 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using Azure.AI.TextAnalytics.Models; + +namespace Azure.AI.TextAnalytics +{ + /// The TasksStateTasksKeyPhraseExtractionTasksItem. + public partial class KeyPhraseExtractionTasksItem : TaskState + { + /// Initializes a new instance of KeyPhraseExtractionTasksItem. + /// . + /// . + /// . + /// is null. + internal KeyPhraseExtractionTasksItem(DateTimeOffset lastUpdateDateTime, string name, State status) : base(lastUpdateDateTime, name, status) + { + if (name == null) + { + throw new ArgumentNullException(nameof(name)); + } + } + + /// Initializes a new instance of KeyPhraseExtractionTasksItem. + /// . + /// . + /// . + /// . + /// is null. + internal KeyPhraseExtractionTasksItem(DateTimeOffset lastUpdateDateTime, string name, State status, KeyPhraseResult results) : base(lastUpdateDateTime, name, status) + { + if (name == null) + { + throw new ArgumentNullException(nameof(name)); + } + + Results = results; + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItemProperties.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItemProperties.Serialization.cs new file mode 100644 index 0000000000000..b7478de0d248f --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItemProperties.Serialization.cs @@ -0,0 +1,34 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class KeyPhraseExtractionTasksItemProperties + { + internal static KeyPhraseExtractionTasksItemProperties DeserializeKeyPhraseExtractionTasksItemProperties(JsonElement element) + { + Optional results = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("results")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + results = KeyPhraseResult.DeserializeKeyPhraseResult(property.Value); + continue; + } + } + return new KeyPhraseExtractionTasksItemProperties(results.Value); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItemProperties.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItemProperties.cs new file mode 100644 index 0000000000000..5d50ea24378fe --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItemProperties.cs @@ -0,0 +1,27 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.AI.TextAnalytics.Models +{ + /// The Components1D9IzucSchemasTasksstatePropertiesTasksPropertiesKeyphraseextractiontasksItemsAllof1. + internal partial class KeyPhraseExtractionTasksItemProperties + { + /// Initializes a new instance of KeyPhraseExtractionTasksItemProperties. + internal KeyPhraseExtractionTasksItemProperties() + { + } + + /// Initializes a new instance of KeyPhraseExtractionTasksItemProperties. + /// . + internal KeyPhraseExtractionTasksItemProperties(KeyPhraseResult results) + { + Results = results; + } + + public KeyPhraseResult Results { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.Serialization.cs new file mode 100644 index 0000000000000..e127af9aa6932 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.Serialization.cs @@ -0,0 +1,26 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + public partial class KeyPhrasesTask : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsDefined(Parameters)) + { + writer.WritePropertyName("parameters"); + writer.WriteObjectValue(Parameters); + } + writer.WriteEndObject(); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.cs new file mode 100644 index 0000000000000..9a7829566a6bd --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.cs @@ -0,0 +1,22 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using Azure.AI.TextAnalytics.Models; + +namespace Azure.AI.TextAnalytics +{ + /// The KeyPhrasesTask. + public partial class KeyPhrasesTask + { + /// Initializes a new instance of KeyPhrasesTask. + public KeyPhrasesTask() + { + } + + public KeyPhrasesTaskParameters Parameters { get; set; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTaskParameters.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTaskParameters.Serialization.cs new file mode 100644 index 0000000000000..7e2a9927029cf --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTaskParameters.Serialization.cs @@ -0,0 +1,26 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + public partial class KeyPhrasesTaskParameters : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsDefined(ModelVersion)) + { + writer.WritePropertyName("model-version"); + writer.WriteStringValue(ModelVersion); + } + writer.WriteEndObject(); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTaskParameters.cs new file mode 100644 index 0000000000000..26d8925090224 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTaskParameters.cs @@ -0,0 +1,18 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.AI.TextAnalytics.Models +{ + /// The KeyPhrasesTaskParameters. + public partial class KeyPhrasesTaskParameters + { + /// Initializes a new instance of KeyPhrasesTaskParameters. + public KeyPhrasesTaskParameters() + { + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/Pagination.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/Pagination.Serialization.cs new file mode 100644 index 0000000000000..7a96213b14dc2 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/Pagination.Serialization.cs @@ -0,0 +1,29 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class Pagination + { + internal static Pagination DeserializePagination(JsonElement element) + { + Optional nextLink = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("@nextLink")) + { + nextLink = property.Value.GetString(); + continue; + } + } + return new Pagination(nextLink.Value); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/Pagination.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/Pagination.cs new file mode 100644 index 0000000000000..5c5d957a18d18 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/Pagination.cs @@ -0,0 +1,27 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.AI.TextAnalytics.Models +{ + /// The Pagination. + internal partial class Pagination + { + /// Initializes a new instance of Pagination. + internal Pagination() + { + } + + /// Initializes a new instance of Pagination. + /// . + internal Pagination(string nextLink) + { + NextLink = nextLink; + } + + public string NextLink { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiDocumentEntities.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiDocumentEntities.Serialization.cs index 0a0bc8e767969..16b147dc33128 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiDocumentEntities.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiDocumentEntities.Serialization.cs @@ -17,10 +17,10 @@ internal partial class PiiDocumentEntities internal static PiiDocumentEntities DeserializePiiDocumentEntities(JsonElement element) { string id = default; + string redactedText = default; IReadOnlyList entities = default; IReadOnlyList warnings = default; Optional statistics = default; - Optional redactedText = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("id")) @@ -28,6 +28,11 @@ internal static PiiDocumentEntities DeserializePiiDocumentEntities(JsonElement e id = property.Value.GetString(); continue; } + if (property.NameEquals("redactedText")) + { + redactedText = property.Value.GetString(); + continue; + } if (property.NameEquals("entities")) { List array = new List(); @@ -58,13 +63,8 @@ internal static PiiDocumentEntities DeserializePiiDocumentEntities(JsonElement e statistics = TextDocumentStatistics.DeserializeTextDocumentStatistics(property.Value); continue; } - if (property.NameEquals("redactedText")) - { - redactedText = property.Value.GetString(); - continue; - } } - return new PiiDocumentEntities(id, entities, warnings, Optional.ToNullable(statistics), redactedText.Value); + return new PiiDocumentEntities(id, redactedText, entities, warnings, Optional.ToNullable(statistics)); } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiDocumentEntities.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiDocumentEntities.cs index feab57ee4f2a4..abd3230d01181 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiDocumentEntities.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiDocumentEntities.cs @@ -17,15 +17,20 @@ internal partial class PiiDocumentEntities { /// Initializes a new instance of PiiDocumentEntities. /// Unique, non-empty document identifier. + /// Returns redacted text. /// Recognized entities in the document. /// Warnings encountered while processing document. - /// , , or is null. - internal PiiDocumentEntities(string id, IEnumerable entities, IEnumerable warnings) + /// , , , or is null. + internal PiiDocumentEntities(string id, string redactedText, IEnumerable entities, IEnumerable warnings) { if (id == null) { throw new ArgumentNullException(nameof(id)); } + if (redactedText == null) + { + throw new ArgumentNullException(nameof(redactedText)); + } if (entities == null) { throw new ArgumentNullException(nameof(entities)); @@ -36,34 +41,35 @@ internal PiiDocumentEntities(string id, IEnumerable entities, IEnumerabl } Id = id; + RedactedText = redactedText; Entities = entities.ToList(); Warnings = warnings.ToList(); } /// Initializes a new instance of PiiDocumentEntities. /// Unique, non-empty document identifier. + /// Returns redacted text. /// Recognized entities in the document. /// Warnings encountered while processing document. /// if showStats=true was specified in the request this field will contain information about the document payload. - /// Returns redacted text. - internal PiiDocumentEntities(string id, IReadOnlyList entities, IReadOnlyList warnings, TextDocumentStatistics? statistics, string redactedText) + internal PiiDocumentEntities(string id, string redactedText, IReadOnlyList entities, IReadOnlyList warnings, TextDocumentStatistics? statistics) { Id = id; + RedactedText = redactedText; Entities = entities; Warnings = warnings; Statistics = statistics; - RedactedText = redactedText; } /// Unique, non-empty document identifier. public string Id { get; } + /// Returns redacted text. + public string RedactedText { get; } /// Recognized entities in the document. public IReadOnlyList Entities { get; } /// Warnings encountered while processing document. public IReadOnlyList Warnings { get; } /// if showStats=true was specified in the request this field will contain information about the document payload. public TextDocumentStatistics? Statistics { get; } - /// Returns redacted text. - public string RedactedText { get; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiEntitiesResult.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiEntitiesResult.Serialization.cs index 478b5ceb03bae..b32f049b94870 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiEntitiesResult.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiEntitiesResult.Serialization.cs @@ -7,10 +7,10 @@ using System.Collections.Generic; using System.Text.Json; -using Azure.AI.TextAnalytics; +using Azure.AI.TextAnalytics.Models; using Azure.Core; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { internal partial class PiiEntitiesResult { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiEntitiesResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiEntitiesResult.cs index 429f27d2af6a0..508f3fe97184f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiEntitiesResult.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiEntitiesResult.cs @@ -8,11 +8,11 @@ using System; using System.Collections.Generic; using System.Linq; -using Azure.AI.TextAnalytics; +using Azure.AI.TextAnalytics.Models; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { - /// The PiiEntitiesResult. + /// The PiiResult. internal partial class PiiEntitiesResult { /// Initializes a new instance of PiiEntitiesResult. diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTask.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTask.Serialization.cs new file mode 100644 index 0000000000000..edaf17244f7bb --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTask.Serialization.cs @@ -0,0 +1,26 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + public partial class PiiTask : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsDefined(Parameters)) + { + writer.WritePropertyName("parameters"); + writer.WriteObjectValue(Parameters); + } + writer.WriteEndObject(); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTask.cs new file mode 100644 index 0000000000000..d70b0209130fe --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTask.cs @@ -0,0 +1,22 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using Azure.AI.TextAnalytics.Models; + +namespace Azure.AI.TextAnalytics +{ + /// The PiiTask. + public partial class PiiTask + { + /// Initializes a new instance of PiiTask. + public PiiTask() + { + } + + public PiiTaskParameters Parameters { get; set; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.Serialization.cs new file mode 100644 index 0000000000000..b13398500eae0 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.Serialization.cs @@ -0,0 +1,36 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + public partial class PiiTaskParameters : IUtf8JsonSerializable + { + void IUtf8JsonSerializable.Write(Utf8JsonWriter writer) + { + writer.WriteStartObject(); + if (Optional.IsDefined(Domain)) + { + writer.WritePropertyName("domain"); + writer.WriteStringValue(Domain.Value.ToString()); + } + if (Optional.IsDefined(ModelVersion)) + { + writer.WritePropertyName("model-version"); + writer.WriteStringValue(ModelVersion); + } + if (Optional.IsDefined(StringIndexType)) + { + writer.WritePropertyName("stringIndexType"); + writer.WriteStringValue(StringIndexType.Value.ToString()); + } + writer.WriteEndObject(); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.cs new file mode 100644 index 0000000000000..3d861dde663d4 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.cs @@ -0,0 +1,24 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using Azure.AI.TextAnalytics; + +namespace Azure.AI.TextAnalytics.Models +{ + /// The PiiTaskParameters. + public partial class PiiTaskParameters + { + /// Initializes a new instance of PiiTaskParameters. + public PiiTaskParameters() + { + } + + public PiiTaskParametersDomain? Domain { get; set; } + public string ModelVersion { get; set; } + public StringIndexTypeResponse? StringIndexType { get; set; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParametersDomain.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParametersDomain.cs new file mode 100644 index 0000000000000..cfe623a3607e5 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParametersDomain.cs @@ -0,0 +1,51 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.ComponentModel; + +namespace Azure.AI.TextAnalytics.Models +{ + /// The PiiTaskParametersDomain. + public readonly partial struct PiiTaskParametersDomain : IEquatable + { + private readonly string _value; + + /// Determines if two values are the same. + /// is null. + public PiiTaskParametersDomain(string value) + { + _value = value ?? throw new ArgumentNullException(nameof(value)); + } + + private const string PhiValue = "phi"; + private const string NoneValue = "none"; + + /// phi. + public static PiiTaskParametersDomain Phi { get; } = new PiiTaskParametersDomain(PhiValue); + /// none. + public static PiiTaskParametersDomain None { get; } = new PiiTaskParametersDomain(NoneValue); + /// Determines if two values are the same. + public static bool operator ==(PiiTaskParametersDomain left, PiiTaskParametersDomain right) => left.Equals(right); + /// Determines if two values are not the same. + public static bool operator !=(PiiTaskParametersDomain left, PiiTaskParametersDomain right) => !left.Equals(right); + /// Converts a string to a . + public static implicit operator PiiTaskParametersDomain(string value) => new PiiTaskParametersDomain(value); + + /// + [EditorBrowsable(EditorBrowsableState.Never)] + public override bool Equals(object obj) => obj is PiiTaskParametersDomain other && Equals(other); + /// + public bool Equals(PiiTaskParametersDomain other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase); + + /// + [EditorBrowsable(EditorBrowsableState.Never)] + public override int GetHashCode() => _value?.GetHashCode() ?? 0; + /// + public override string ToString() => _value; + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/State.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/State.Serialization.cs new file mode 100644 index 0000000000000..01ee7a40f04c2 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/State.Serialization.cs @@ -0,0 +1,38 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; + +namespace Azure.AI.TextAnalytics.Models +{ + internal static class StateExtensions + { + public static string ToSerialString(this State value) => value switch + { + State.Notstarted => "notstarted", + State.Running => "running", + State.Succeeded => "succeeded", + State.Failed => "failed", + State.Cancelled => "cancelled", + State.Cancelling => "cancelling", + State.Partiallycompleted => "partiallycompleted", + _ => throw new ArgumentOutOfRangeException(nameof(value), value, "Unknown State value.") + }; + + public static State ToState(this string value) + { + if (string.Equals(value, "notstarted", StringComparison.InvariantCultureIgnoreCase)) return State.Notstarted; + if (string.Equals(value, "running", StringComparison.InvariantCultureIgnoreCase)) return State.Running; + if (string.Equals(value, "succeeded", StringComparison.InvariantCultureIgnoreCase)) return State.Succeeded; + if (string.Equals(value, "failed", StringComparison.InvariantCultureIgnoreCase)) return State.Failed; + if (string.Equals(value, "cancelled", StringComparison.InvariantCultureIgnoreCase)) return State.Cancelled; + if (string.Equals(value, "cancelling", StringComparison.InvariantCultureIgnoreCase)) return State.Cancelling; + if (string.Equals(value, "partiallycompleted", StringComparison.InvariantCultureIgnoreCase)) return State.Partiallycompleted; + throw new ArgumentOutOfRangeException(nameof(value), value, "Unknown State value."); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/State.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/State.cs new file mode 100644 index 0000000000000..dd84e497b4d78 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/State.cs @@ -0,0 +1,28 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +namespace Azure.AI.TextAnalytics.Models +{ + /// The State. + public enum State + { + /// notstarted. + Notstarted, + /// running. + Running, + /// succeeded. + Succeeded, + /// failed. + Failed, + /// cancelled. + Cancelled, + /// cancelling. + Cancelling, + /// partiallycompleted. + Partiallycompleted + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexType.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexType.cs index 2a94f328d2f70..e2257f9533dae 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexType.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexType.cs @@ -8,10 +8,10 @@ using System; using System.ComponentModel; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { /// The StringIndexType. - internal readonly partial struct StringIndexType : IEquatable + public readonly partial struct StringIndexType : IEquatable { private readonly string _value; diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexTypeResponse.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexTypeResponse.cs new file mode 100644 index 0000000000000..cbac7d6aea201 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexTypeResponse.cs @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.ComponentModel; + +namespace Azure.AI.TextAnalytics +{ + /// The StringIndexTypeResponse. + public readonly partial struct StringIndexTypeResponse : IEquatable + { + private readonly string _value; + + /// Determines if two values are the same. + /// is null. + public StringIndexTypeResponse(string value) + { + _value = value ?? throw new ArgumentNullException(nameof(value)); + } + + private const string TextElementsV8Value = "TextElements_v8"; + private const string UnicodeCodePointValue = "UnicodeCodePoint"; + private const string Utf16CodeUnitValue = "Utf16CodeUnit"; + + /// Returned offset and length values will correspond to TextElements (Graphemes and Grapheme clusters) confirming to the Unicode 8.0.0 standard. Use this option if your application is written in .Net Framework or .Net Core and you will be using StringInfo. + public static StringIndexTypeResponse TextElementsV8 { get; } = new StringIndexTypeResponse(TextElementsV8Value); + /// Returned offset and length values will correspond to Unicode code points. Use this option if your application is written in a language that support Unicode, for example Python. + public static StringIndexTypeResponse UnicodeCodePoint { get; } = new StringIndexTypeResponse(UnicodeCodePointValue); + /// Returned offset and length values will correspond to UTF-16 code units. Use this option if your application is written in a language that support Unicode, for example Java, JavaScript. + public static StringIndexTypeResponse Utf16CodeUnit { get; } = new StringIndexTypeResponse(Utf16CodeUnitValue); + /// Determines if two values are the same. + public static bool operator ==(StringIndexTypeResponse left, StringIndexTypeResponse right) => left.Equals(right); + /// Determines if two values are not the same. + public static bool operator !=(StringIndexTypeResponse left, StringIndexTypeResponse right) => !left.Equals(right); + /// Converts a string to a . + public static implicit operator StringIndexTypeResponse(string value) => new StringIndexTypeResponse(value); + + /// + [EditorBrowsable(EditorBrowsableState.Never)] + public override bool Equals(object obj) => obj is StringIndexTypeResponse other && Equals(other); + /// + public bool Equals(StringIndexTypeResponse other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase); + + /// + [EditorBrowsable(EditorBrowsableState.Never)] + public override int GetHashCode() => _value?.GetHashCode() ?? 0; + /// + public override string ToString() => _value; + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.Serialization.cs new file mode 100644 index 0000000000000..e41980eb411f7 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.Serialization.cs @@ -0,0 +1,43 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using Azure.AI.TextAnalytics.Models; +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + public partial class TaskState + { + internal static TaskState DeserializeTaskState(JsonElement element) + { + DateTimeOffset lastUpdateDateTime = default; + string name = default; + State status = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("lastUpdateDateTime")) + { + lastUpdateDateTime = property.Value.GetDateTimeOffset("O"); + continue; + } + if (property.NameEquals("name")) + { + name = property.Value.GetString(); + continue; + } + if (property.NameEquals("status")) + { + status = property.Value.GetString().ToState(); + continue; + } + } + return new TaskState(lastUpdateDateTime, name, status); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.cs new file mode 100644 index 0000000000000..587b20fb392ea --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.cs @@ -0,0 +1,37 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using Azure.AI.TextAnalytics.Models; + +namespace Azure.AI.TextAnalytics +{ + /// The TaskState. + public partial class TaskState + { + /// Initializes a new instance of TaskState. + /// . + /// . + /// . + /// is null. + internal TaskState(DateTimeOffset lastUpdateDateTime, string name, State status) + { + if (name == null) + { + throw new ArgumentNullException(nameof(name)); + } + + LastUpdateDateTime = lastUpdateDateTime; + Name = name; + Status = status; + } + + public DateTimeOffset LastUpdateDateTime { get; } + public string Name { get; } + public State Status { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksState.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksState.Serialization.cs new file mode 100644 index 0000000000000..cbd82d0abb442 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksState.Serialization.cs @@ -0,0 +1,30 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Text.Json; +using Azure.AI.TextAnalytics; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + internal partial class TasksState + { + internal static TasksState DeserializeTasksState(JsonElement element) + { + TasksStateTasks tasks = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("tasks")) + { + tasks = TasksStateTasks.DeserializeTasksStateTasks(property.Value); + continue; + } + } + return new TasksState(tasks); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksState.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksState.cs new file mode 100644 index 0000000000000..c8e4f08e7d7d5 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksState.cs @@ -0,0 +1,31 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using Azure.AI.TextAnalytics; + +namespace Azure.AI.TextAnalytics.Models +{ + /// The TasksState. + internal partial class TasksState + { + /// Initializes a new instance of TasksState. + /// . + /// is null. + internal TasksState(TasksStateTasks tasks) + { + if (tasks == null) + { + throw new ArgumentNullException(nameof(tasks)); + } + + Tasks = tasks; + } + + public TasksStateTasks Tasks { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasks.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasks.Serialization.cs new file mode 100644 index 0000000000000..75c27813aedb2 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasks.Serialization.cs @@ -0,0 +1,112 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + public partial class TasksStateTasks + { + internal static TasksStateTasks DeserializeTasksStateTasks(JsonElement element) + { + Optional> details = default; + int completed = default; + int failed = default; + int inProgress = default; + int total = default; + Optional> entityRecognitionTasks = default; + Optional> entityRecognitionPiiTasks = default; + Optional> keyPhraseExtractionTasks = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("details")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(TaskState.DeserializeTaskState(item)); + } + details = array; + continue; + } + if (property.NameEquals("completed")) + { + completed = property.Value.GetInt32(); + continue; + } + if (property.NameEquals("failed")) + { + failed = property.Value.GetInt32(); + continue; + } + if (property.NameEquals("inProgress")) + { + inProgress = property.Value.GetInt32(); + continue; + } + if (property.NameEquals("total")) + { + total = property.Value.GetInt32(); + continue; + } + if (property.NameEquals("entityRecognitionTasks")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(EntityRecognitionTasksItem.DeserializeEntityRecognitionTasksItem(item)); + } + entityRecognitionTasks = array; + continue; + } + if (property.NameEquals("entityRecognitionPiiTasks")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(EntityRecognitionPiiTasksItem.DeserializeEntityRecognitionPiiTasksItem(item)); + } + entityRecognitionPiiTasks = array; + continue; + } + if (property.NameEquals("keyPhraseExtractionTasks")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(KeyPhraseExtractionTasksItem.DeserializeKeyPhraseExtractionTasksItem(item)); + } + keyPhraseExtractionTasks = array; + continue; + } + } + return new TasksStateTasks(Optional.ToList(details), completed, failed, inProgress, total, Optional.ToList(entityRecognitionTasks), Optional.ToList(entityRecognitionPiiTasks), Optional.ToList(keyPhraseExtractionTasks)); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasks.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasks.cs new file mode 100644 index 0000000000000..a96fad79484c3 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasks.cs @@ -0,0 +1,54 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System.Collections.Generic; +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + /// The TasksStateTasks. + public partial class TasksStateTasks + { + /// Initializes a new instance of TasksStateTasks. + /// . + /// . + /// . + /// . + internal TasksStateTasks(int completed, int failed, int inProgress, int total) + { + Details = new ChangeTrackingList(); + Completed = completed; + Failed = failed; + InProgress = inProgress; + Total = total; + EntityRecognitionTasks = new ChangeTrackingList(); + EntityRecognitionPiiTasks = new ChangeTrackingList(); + KeyPhraseExtractionTasks = new ChangeTrackingList(); + } + + /// Initializes a new instance of TasksStateTasks. + /// . + /// . + /// . + /// . + /// . + /// . + /// . + /// . + internal TasksStateTasks(IReadOnlyList details, int completed, int failed, int inProgress, int total, IReadOnlyList entityRecognitionTasks, IReadOnlyList entityRecognitionPiiTasks, IReadOnlyList keyPhraseExtractionTasks) + { + Details = details; + Completed = completed; + Failed = failed; + InProgress = inProgress; + Total = total; + EntityRecognitionTasks = entityRecognitionTasks; + EntityRecognitionPiiTasks = entityRecognitionPiiTasks; + KeyPhraseExtractionTasks = keyPhraseExtractionTasks; + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsAnalyzeHeaders.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsAnalyzeHeaders.cs new file mode 100644 index 0000000000000..58779229b3fcd --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsAnalyzeHeaders.cs @@ -0,0 +1,22 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using Azure; +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + internal class TextAnalyticsAnalyzeHeaders + { + private readonly Response _response; + public TextAnalyticsAnalyzeHeaders(Response response) + { + _response = response; + } + public string OperationLocation => _response.Headers.TryGetValue("Operation-Location", out string value) ? value : null; + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsCancelHealthJobHeaders.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsCancelHealthJobHeaders.cs new file mode 100644 index 0000000000000..39ab470c0f057 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsCancelHealthJobHeaders.cs @@ -0,0 +1,22 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using Azure; +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + internal class TextAnalyticsCancelHealthJobHeaders + { + private readonly Response _response; + public TextAnalyticsCancelHealthJobHeaders(Response response) + { + _response = response; + } + public string OperationLocation => _response.Headers.TryGetValue("Operation-Location", out string value) ? value : null; + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsHealthHeaders.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsHealthHeaders.cs new file mode 100644 index 0000000000000..45a481ffd094f --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsHealthHeaders.cs @@ -0,0 +1,22 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using Azure; +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + internal class TextAnalyticsHealthHeaders + { + private readonly Response _response; + public TextAnalyticsHealthHeaders(Response response) + { + _response = response; + } + public string OperationLocation => _response.Headers.TryGetValue("Operation-Location", out string value) ? value : null; + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsRestClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsRestClient.cs index 95c3c11175548..b91db6c68374a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsRestClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsRestClient.cs @@ -39,6 +39,336 @@ public TextAnalyticsRestClient(ClientDiagnostics clientDiagnostics, HttpPipeline _pipeline = pipeline; } + internal HttpMessage CreateAnalyzeRequest(AnalyzeBatchInput body) + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Post; + var uri = new RawRequestUriBuilder(); + uri.AppendRaw(endpoint, false); + uri.AppendRaw("/text/analytics/v3.2-preview.1", false); + uri.AppendPath("/analyze", false); + request.Uri = uri; + request.Headers.Add("Content-Type", "application/json"); + request.Headers.Add("Accept", "application/json, text/json"); + if (body != null) + { + var content = new Utf8JsonRequestContent(); + content.JsonWriter.WriteObjectValue(body); + request.Content = content; + } + return message; + } + + /// Submit a collection of text documents for analysis. Specify one or more unique tasks to be executed. + /// Collection of documents to analyze and tasks to execute. + /// The cancellation token to use. + public async Task> AnalyzeAsync(AnalyzeBatchInput body = null, CancellationToken cancellationToken = default) + { + using var message = CreateAnalyzeRequest(body); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + var headers = new TextAnalyticsAnalyzeHeaders(message.Response); + switch (message.Response.Status) + { + case 202: + return ResponseWithHeaders.FromValue(headers, message.Response); + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Submit a collection of text documents for analysis. Specify one or more unique tasks to be executed. + /// Collection of documents to analyze and tasks to execute. + /// The cancellation token to use. + public ResponseWithHeaders Analyze(AnalyzeBatchInput body = null, CancellationToken cancellationToken = default) + { + using var message = CreateAnalyzeRequest(body); + _pipeline.Send(message, cancellationToken); + var headers = new TextAnalyticsAnalyzeHeaders(message.Response); + switch (message.Response.Status) + { + case 202: + return ResponseWithHeaders.FromValue(headers, message.Response); + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + + internal HttpMessage CreateAnalyzeStatusRequest(Guid jobId, bool? showStats, int? top, int? skip) + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Get; + var uri = new RawRequestUriBuilder(); + uri.AppendRaw(endpoint, false); + uri.AppendRaw("/text/analytics/v3.2-preview.1", false); + uri.AppendPath("/analyze/jobs/", false); + uri.AppendPath(jobId, true); + if (showStats != null) + { + uri.AppendQuery("showStats", showStats.Value, true); + } + if (top != null) + { + uri.AppendQuery("$top", top.Value, true); + } + if (skip != null) + { + uri.AppendQuery("$skip", skip.Value, true); + } + request.Uri = uri; + request.Headers.Add("Accept", "application/json, text/json"); + return message; + } + + /// Get the status of an analysis job. A job may consist of one or more tasks. Once all tasks are completed, the job will transition to the completed state and results will be available for each task. + /// Job ID. + /// (Optional) if set to true, response will contain request and document level statistics. + /// (Optional) Set the maximum number of results per task. When both $top and $skip are specified, $skip is applied first. + /// (Optional) Set the number of elements to offset in the response. When both $top and $skip are specified, $skip is applied first. + /// The cancellation token to use. + public async Task> AnalyzeStatusAsync(Guid jobId, bool? showStats = null, int? top = null, int? skip = null, CancellationToken cancellationToken = default) + { + using var message = CreateAnalyzeStatusRequest(jobId, showStats, top, skip); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + switch (message.Response.Status) + { + case 200: + { + AnalyzeJobState value = default; + using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false); + value = AnalyzeJobState.DeserializeAnalyzeJobState(document.RootElement); + return Response.FromValue(value, message.Response); + } + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Get the status of an analysis job. A job may consist of one or more tasks. Once all tasks are completed, the job will transition to the completed state and results will be available for each task. + /// Job ID. + /// (Optional) if set to true, response will contain request and document level statistics. + /// (Optional) Set the maximum number of results per task. When both $top and $skip are specified, $skip is applied first. + /// (Optional) Set the number of elements to offset in the response. When both $top and $skip are specified, $skip is applied first. + /// The cancellation token to use. + public Response AnalyzeStatus(Guid jobId, bool? showStats = null, int? top = null, int? skip = null, CancellationToken cancellationToken = default) + { + using var message = CreateAnalyzeStatusRequest(jobId, showStats, top, skip); + _pipeline.Send(message, cancellationToken); + switch (message.Response.Status) + { + case 200: + { + AnalyzeJobState value = default; + using var document = JsonDocument.Parse(message.Response.ContentStream); + value = AnalyzeJobState.DeserializeAnalyzeJobState(document.RootElement); + return Response.FromValue(value, message.Response); + } + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + + internal HttpMessage CreateHealthStatusRequest(Guid jobId, int? top, int? skip, bool? showStats) + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Get; + var uri = new RawRequestUriBuilder(); + uri.AppendRaw(endpoint, false); + uri.AppendRaw("/text/analytics/v3.2-preview.1", false); + uri.AppendPath("/entities/health/jobs/", false); + uri.AppendPath(jobId, true); + if (top != null) + { + uri.AppendQuery("$top", top.Value, true); + } + if (skip != null) + { + uri.AppendQuery("$skip", skip.Value, true); + } + if (showStats != null) + { + uri.AppendQuery("showStats", showStats.Value, true); + } + request.Uri = uri; + request.Headers.Add("Accept", "application/json, text/json"); + return message; + } + + /// Get details of the healthcare prediction job specified by the jobId. + /// Job ID. + /// (Optional) Set the maximum number of results per task. When both $top and $skip are specified, $skip is applied first. + /// (Optional) Set the number of elements to offset in the response. When both $top and $skip are specified, $skip is applied first. + /// (Optional) if set to true, response will contain request and document level statistics. + /// The cancellation token to use. + public async Task> HealthStatusAsync(Guid jobId, int? top = null, int? skip = null, bool? showStats = null, CancellationToken cancellationToken = default) + { + using var message = CreateHealthStatusRequest(jobId, top, skip, showStats); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + switch (message.Response.Status) + { + case 200: + { + HealthcareJobState value = default; + using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false); + value = HealthcareJobState.DeserializeHealthcareJobState(document.RootElement); + return Response.FromValue(value, message.Response); + } + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Get details of the healthcare prediction job specified by the jobId. + /// Job ID. + /// (Optional) Set the maximum number of results per task. When both $top and $skip are specified, $skip is applied first. + /// (Optional) Set the number of elements to offset in the response. When both $top and $skip are specified, $skip is applied first. + /// (Optional) if set to true, response will contain request and document level statistics. + /// The cancellation token to use. + public Response HealthStatus(Guid jobId, int? top = null, int? skip = null, bool? showStats = null, CancellationToken cancellationToken = default) + { + using var message = CreateHealthStatusRequest(jobId, top, skip, showStats); + _pipeline.Send(message, cancellationToken); + switch (message.Response.Status) + { + case 200: + { + HealthcareJobState value = default; + using var document = JsonDocument.Parse(message.Response.ContentStream); + value = HealthcareJobState.DeserializeHealthcareJobState(document.RootElement); + return Response.FromValue(value, message.Response); + } + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + + internal HttpMessage CreateCancelHealthJobRequest(Guid jobId) + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Delete; + var uri = new RawRequestUriBuilder(); + uri.AppendRaw(endpoint, false); + uri.AppendRaw("/text/analytics/v3.2-preview.1", false); + uri.AppendPath("/entities/health/jobs/", false); + uri.AppendPath(jobId, true); + request.Uri = uri; + request.Headers.Add("Accept", "application/json, text/json"); + return message; + } + + /// Cancel healthcare prediction job. + /// Job ID. + /// The cancellation token to use. + public async Task> CancelHealthJobAsync(Guid jobId, CancellationToken cancellationToken = default) + { + using var message = CreateCancelHealthJobRequest(jobId); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + var headers = new TextAnalyticsCancelHealthJobHeaders(message.Response); + switch (message.Response.Status) + { + case 202: + return ResponseWithHeaders.FromValue(headers, message.Response); + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Cancel healthcare prediction job. + /// Job ID. + /// The cancellation token to use. + public ResponseWithHeaders CancelHealthJob(Guid jobId, CancellationToken cancellationToken = default) + { + using var message = CreateCancelHealthJobRequest(jobId); + _pipeline.Send(message, cancellationToken); + var headers = new TextAnalyticsCancelHealthJobHeaders(message.Response); + switch (message.Response.Status) + { + case 202: + return ResponseWithHeaders.FromValue(headers, message.Response); + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + + internal HttpMessage CreateHealthRequest(MultiLanguageBatchInput input, string modelVersion, StringIndexType? stringIndexType) + { + var message = _pipeline.CreateMessage(); + var request = message.Request; + request.Method = RequestMethod.Post; + var uri = new RawRequestUriBuilder(); + uri.AppendRaw(endpoint, false); + uri.AppendRaw("/text/analytics/v3.2-preview.1", false); + uri.AppendPath("/entities/health/jobs", false); + if (modelVersion != null) + { + uri.AppendQuery("model-version", modelVersion, true); + } + if (stringIndexType != null) + { + uri.AppendQuery("stringIndexType", stringIndexType.Value.ToString(), true); + } + request.Uri = uri; + request.Headers.Add("Content-Type", "application/json"); + request.Headers.Add("Accept", "application/json, text/json"); + var content = new Utf8JsonRequestContent(); + content.JsonWriter.WriteObjectValue(input); + request.Content = content; + return message; + } + + /// Start a healthcare analysis job to recognize healthcare related entities (drugs, conditions, symptoms, etc) and their relations. + /// Collection of documents to analyze. + /// (Optional) This value indicates which model will be used for scoring. If a model-version is not specified, the API should default to the latest, non-preview version. + /// (Optional) Specifies the method used to interpret string offsets. Defaults to Text Elements (Graphemes) according to Unicode v8.0.0. For additional information see https://aka.ms/text-analytics-offsets. + /// The cancellation token to use. + /// is null. + public async Task> HealthAsync(MultiLanguageBatchInput input, string modelVersion = null, StringIndexType? stringIndexType = null, CancellationToken cancellationToken = default) + { + if (input == null) + { + throw new ArgumentNullException(nameof(input)); + } + + using var message = CreateHealthRequest(input, modelVersion, stringIndexType); + await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); + var headers = new TextAnalyticsHealthHeaders(message.Response); + switch (message.Response.Status) + { + case 202: + return ResponseWithHeaders.FromValue(headers, message.Response); + default: + throw await _clientDiagnostics.CreateRequestFailedExceptionAsync(message.Response).ConfigureAwait(false); + } + } + + /// Start a healthcare analysis job to recognize healthcare related entities (drugs, conditions, symptoms, etc) and their relations. + /// Collection of documents to analyze. + /// (Optional) This value indicates which model will be used for scoring. If a model-version is not specified, the API should default to the latest, non-preview version. + /// (Optional) Specifies the method used to interpret string offsets. Defaults to Text Elements (Graphemes) according to Unicode v8.0.0. For additional information see https://aka.ms/text-analytics-offsets. + /// The cancellation token to use. + /// is null. + public ResponseWithHeaders Health(MultiLanguageBatchInput input, string modelVersion = null, StringIndexType? stringIndexType = null, CancellationToken cancellationToken = default) + { + if (input == null) + { + throw new ArgumentNullException(nameof(input)); + } + + using var message = CreateHealthRequest(input, modelVersion, stringIndexType); + _pipeline.Send(message, cancellationToken); + var headers = new TextAnalyticsHealthHeaders(message.Response); + switch (message.Response.Status) + { + case 202: + return ResponseWithHeaders.FromValue(headers, message.Response); + default: + throw _clientDiagnostics.CreateRequestFailedException(message.Response); + } + } + internal HttpMessage CreateEntitiesRecognitionGeneralRequest(MultiLanguageBatchInput input, string modelVersion, bool? showStats, StringIndexType? stringIndexType) { var message = _pipeline.CreateMessage(); @@ -46,7 +376,7 @@ internal HttpMessage CreateEntitiesRecognitionGeneralRequest(MultiLanguageBatchI request.Method = RequestMethod.Post; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/text/analytics/v3.1-preview.2", false); + uri.AppendRaw("/text/analytics/v3.2-preview.1", false); uri.AppendPath("/entities/recognition/general", false); if (modelVersion != null) { @@ -136,7 +466,7 @@ internal HttpMessage CreateEntitiesRecognitionPiiRequest(MultiLanguageBatchInput request.Method = RequestMethod.Post; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/text/analytics/v3.1-preview.2", false); + uri.AppendRaw("/text/analytics/v3.2-preview.1", false); uri.AppendPath("/entities/recognition/pii", false); if (modelVersion != null) { @@ -170,7 +500,7 @@ internal HttpMessage CreateEntitiesRecognitionPiiRequest(MultiLanguageBatchInput /// Collection of documents to analyze. /// (Optional) This value indicates which model will be used for scoring. If a model-version is not specified, the API should default to the latest, non-preview version. /// (Optional) if set to true, response will contain request and document level statistics. - /// (Optional) if set to 'PHI', response will contain only PHI entities. + /// (Optional) if specified, will set the PII domain to include only a subset of the entity categories. Possible values include: 'PHI', 'none'. /// (Optional) Specifies the method used to interpret string offsets. Defaults to Text Elements (Graphemes) according to Unicode v8.0.0. For additional information see https://aka.ms/text-analytics-offsets. /// The cancellation token to use. /// is null. @@ -204,7 +534,7 @@ public async Task> EntitiesRecognitionPiiAsync(Multi /// Collection of documents to analyze. /// (Optional) This value indicates which model will be used for scoring. If a model-version is not specified, the API should default to the latest, non-preview version. /// (Optional) if set to true, response will contain request and document level statistics. - /// (Optional) if set to 'PHI', response will contain only PHI entities. + /// (Optional) if specified, will set the PII domain to include only a subset of the entity categories. Possible values include: 'PHI', 'none'. /// (Optional) Specifies the method used to interpret string offsets. Defaults to Text Elements (Graphemes) according to Unicode v8.0.0. For additional information see https://aka.ms/text-analytics-offsets. /// The cancellation token to use. /// is null. @@ -238,7 +568,7 @@ internal HttpMessage CreateEntitiesLinkingRequest(MultiLanguageBatchInput input, request.Method = RequestMethod.Post; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/text/analytics/v3.1-preview.2", false); + uri.AppendRaw("/text/analytics/v3.2-preview.1", false); uri.AppendPath("/entities/linking", false); if (modelVersion != null) { @@ -328,7 +658,7 @@ internal HttpMessage CreateKeyPhrasesRequest(MultiLanguageBatchInput input, stri request.Method = RequestMethod.Post; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/text/analytics/v3.1-preview.2", false); + uri.AppendRaw("/text/analytics/v3.2-preview.1", false); uri.AppendPath("/keyPhrases", false); if (modelVersion != null) { @@ -412,7 +742,7 @@ internal HttpMessage CreateLanguagesRequest(LanguageBatchInput input, string mod request.Method = RequestMethod.Post; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/text/analytics/v3.1-preview.2", false); + uri.AppendRaw("/text/analytics/v3.2-preview.1", false); uri.AppendPath("/languages", false); if (modelVersion != null) { @@ -496,7 +826,7 @@ internal HttpMessage CreateSentimentRequest(MultiLanguageBatchInput input, strin request.Method = RequestMethod.Post; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/text/analytics/v3.1-preview.2", false); + uri.AppendRaw("/text/analytics/v3.2-preview.1", false); uri.AppendPath("/sentiment", false); if (modelVersion != null) { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobManifestTasks.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobManifestTasks.cs new file mode 100644 index 0000000000000..96a7dc417dfff --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobManifestTasks.cs @@ -0,0 +1,29 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Collections.Generic; +using Azure.AI.TextAnalytics.Models; +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + [CodeGenModel("JobManifestTasks")] + public partial class JobManifestTasks + { + /// + /// EntityRecognitionTasks + /// + public IList EntityRecognitionTasks { get; } + + /// + /// EntityRecognitionPiiTasks + /// + public IList EntityRecognitionPiiTasks { get; } + + /// + /// KeyPhraseExtractionTasks + /// + public IList KeyPhraseExtractionTasks { get; } + + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseExtractionTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseExtractionTasksItem.cs new file mode 100644 index 0000000000000..7fd6bbf792478 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseExtractionTasksItem.cs @@ -0,0 +1,15 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Collections.Generic; +using Azure.AI.TextAnalytics.Models; +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + [CodeGenModel("TasksStateTasksKeyPhraseExtractionTasksItem")] + public partial class KeyPhraseExtractionTasksItem + { + internal KeyPhraseResult Results { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseExtractionTasksItemProperties.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseExtractionTasksItemProperties.cs new file mode 100644 index 0000000000000..c055fda24809a --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseExtractionTasksItemProperties.cs @@ -0,0 +1,12 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + [CodeGenModel("Components1D9IzucSchemasTasksstatePropertiesTasksPropertiesKeyphraseextractiontasksItemsAllof1")] + internal partial class KeyPhraseExtractionTasksItemProperties + { + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseTaskParameters.cs new file mode 100644 index 0000000000000..b3edfba04b728 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseTaskParameters.cs @@ -0,0 +1,14 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + [CodeGenModel("KeyPhrasesTaskParameters")] + public partial class KeyPhrasesTaskParameters + { + /// ModelVersion. + public string ModelVersion { get; set; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhrasesTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhrasesTask.cs new file mode 100644 index 0000000000000..8ae75f92222a5 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhrasesTask.cs @@ -0,0 +1,13 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Collections.Generic; +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + [CodeGenModel("KeyPhrasesTask")] + public partial class KeyPhrasesTask + { + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiEntitiesResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiEntitiesResult.cs new file mode 100644 index 0000000000000..6603e695b98c9 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiEntitiesResult.cs @@ -0,0 +1,12 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + [CodeGenModel("PiiResult")] + internal partial class PiiEntitiesResult + { + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTask.cs new file mode 100644 index 0000000000000..eede1e2e2588f --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTask.cs @@ -0,0 +1,12 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + [CodeGenModel("PiiTask")] + public partial class PiiTask + { + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexType.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexType.cs index c8f0fa5014180..204a192ff0b0b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexType.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexType.cs @@ -3,10 +3,10 @@ using Azure.Core; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { [CodeGenModel("StringIndexType")] - internal partial struct StringIndexType + public partial struct StringIndexType { } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexTypeResponse.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexTypeResponse.cs new file mode 100644 index 0000000000000..b86812a02b3c4 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexTypeResponse.cs @@ -0,0 +1,12 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + [CodeGenModel("StringIndexTypeResponse")] + public partial struct StringIndexTypeResponse + { + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TaskState.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TaskState.cs new file mode 100644 index 0000000000000..f4eb29ea35611 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TaskState.cs @@ -0,0 +1,12 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + [CodeGenModel("TaskState")] + public partial class TaskState + { + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasks.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasks.cs new file mode 100644 index 0000000000000..2fd6826620c47 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasks.cs @@ -0,0 +1,52 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Collections.Generic; +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + [CodeGenModel("TasksStateTasks")] + public partial class TasksStateTasks + { + /// + /// Details + /// + public IReadOnlyList Details { get; } + + /// + /// Completed + /// + public int Completed { get; } + + /// + /// Failed + /// + public int Failed { get; } + + /// + /// InProgress + /// + public int InProgress { get; } + + /// + /// Total + /// + public int Total { get; } + + /// + /// EntityRecognitionTasks + /// + public IReadOnlyList EntityRecognitionTasks { get; } + + /// + /// EntityRecognitionPiiTasks + /// + public IReadOnlyList EntityRecognitionPiiTasks { get; } + + /// + /// KeyPhraseExtractionTasks + /// + public IReadOnlyList KeyPhraseExtractionTasks { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/autorest.md b/sdk/textanalytics/Azure.AI.TextAnalytics/src/autorest.md index 2ea4f3ed7ad9b..909b94de1b638 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/autorest.md +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/autorest.md @@ -7,7 +7,7 @@ Run `dotnet build /t:GenerateCode` to generate code. ``` yaml input-file: - - https://github.com/Azure/azure-rest-api-specs/blob/bc1d3e6f1d19840375907101b30579c16c8a5d76/specification/cognitiveservices/data-plane/TextAnalytics/preview/v3.1-preview.2/TextAnalytics.json + - $(this-folder)/swagger.json ``` ### Make generated models internal by default diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/swagger.json b/sdk/textanalytics/Azure.AI.TextAnalytics/src/swagger.json new file mode 100644 index 0000000000000..78f434ee38254 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/swagger.json @@ -0,0 +1,2297 @@ +{ + "swagger": "2.0", + "info": { + "version": "v3.2-preview.1", + "contact": { + "name": "Microsoft Cognitive Services", + "url": "https://azure.microsoft.com/en-us/services/cognitive-services/text-analytics/", + "email": "mlapi@microsoft.com" + }, + "title": "Text Analytics Client", + "description": "The Text Analytics API is a suite of natural language processing (NLP) services built with best-in-class Microsoft machine learning algorithms. The API can be used to analyze unstructured text for tasks such as sentiment analysis, key phrase extraction and language detection. Further documentation can be found in https://docs.microsoft.com/en-us/azure/cognitive-services/text-analytics/overview" + }, + "securityDefinitions": { + "apim_key": { + "type": "apiKey", + "name": "Ocp-Apim-Subscription-Key", + "in": "header" + } + }, + "security": [ + { + "apim_key": [] + } + ], + "x-ms-parameterized-host": { + "hostTemplate": "{Endpoint}/text/analytics/v3.2-preview.1", + "useSchemePrefix": false, + "parameters": [ + { + "$ref": "#/parameters/Endpoint" + } + ] + }, + "paths": { + "/analyze": { + "post": { + "consumes": [ + "application/json", + "text/json" + ], + "produces": [ + "application/json", + "text/json" + ], + "description": "Submit a collection of text documents for analysis. Specify one or more unique tasks to be executed.", + "operationId": "Analyze", + "summary": "Submit analysis job", + "parameters": [ + { + "description": "Collection of documents to analyze and tasks to execute.", + "in": "body", + "name": "body", + "schema": { + "$ref": "#/definitions/AnalyzeBatchInput" + } + } + ], + "responses": { + "202": { + "description": "A successful call results with an Operation-Location header used to check the status of the analysis job.", + "headers": { + "Operation-Location": { + "type": "string" + } + } + }, + "400": { + "description": "Bad Request.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + }, + "x-ms-error-response": true + }, + "500": { + "description": "Internal error response", + "schema": { + "$ref": "#/definitions/ErrorResponse" + }, + "x-ms-error-response": true + } + }, + "x-ms-examples": { + "Successful Submit analysis job request": { + "$ref": ".//examples//SuccessfulAnalyzeRequest.json" + } + }, + "deprecated": false, + "x-ms-long-running-operation": true + } + }, + "/analyze/jobs/{jobId}": { + "get": { + "produces": [ + "application/json", + "text/json" + ], + "description": "Get the status of an analysis job. A job may consist of one or more tasks. Once all tasks are completed, the job will transition to the completed state and results will be available for each task.", + "operationId": "AnalyzeStatus", + "summary": "Get analysis status and results", + "parameters": [ + { + "$ref": "#/parameters/JobId" + }, + { + "$ref": "#/parameters/ShowStats" + }, + { + "default": 20, + "description": "(Optional) Set the maximum number of results per task. When both $top and $skip are specified, $skip is applied first.", + "in": "query", + "maximum": 50, + "minimum": 1, + "name": "$top", + "type": "integer" + }, + { + "default": 0, + "description": "(Optional) Set the number of elements to offset in the response. When both $top and $skip are specified, $skip is applied first.", + "in": "query", + "minimum": 0, + "name": "$skip", + "type": "integer" + } + ], + "responses": { + "200": { + "description": "Analysis job status and metadata.", + "schema": { + "$ref": "#/definitions/AnalyzeJobState" + } + }, + "404": { + "description": "Job ID not found.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + }, + "x-ms-error-response": true + }, + "500": { + "description": "Internal error response", + "schema": { + "$ref": "#/definitions/ErrorResponse" + }, + "x-ms-error-response": true + } + }, + "x-ms-examples": { + "Successful Get Analysis job status request": { + "$ref": ".//examples//SuccessfulAnalyzeStatusRequest.json" + } + }, + "deprecated": false + } + }, + "/entities/health/jobs/{jobId}": { + "get": { + "produces": [ + "application/json", + "text/json" + ], + "description": "Get details of the healthcare prediction job specified by the jobId.", + "operationId": "HealthStatus", + "summary": "Get healthcare analysis job status and results", + "parameters": [ + { + "$ref": "#/parameters/JobId" + }, + { + "default": 20, + "description": "(Optional) Set the maximum number of results per task. When both $top and $skip are specified, $skip is applied first.", + "in": "query", + "maximum": 50, + "minimum": 1, + "name": "$top", + "type": "integer" + }, + { + "default": 0, + "description": "(Optional) Set the number of elements to offset in the response. When both $top and $skip are specified, $skip is applied first.", + "in": "query", + "minimum": 0, + "name": "$skip", + "type": "integer" + }, + { + "$ref": "#/parameters/ShowStats" + } + ], + "responses": { + "200": { + "description": "OK", + "schema": { + "$ref": "#/definitions/HealthcareJobState" + } + }, + "404": { + "description": "Job ID not found.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + }, + "x-ms-error-response": true + }, + "500": { + "description": "Internal error response", + "schema": { + "$ref": "#/definitions/ErrorResponse" + }, + "x-ms-error-response": true + } + }, + "x-ms-examples": { + "Successful Health request": { + "$ref": ".//examples//SuccessfulHealthStatusRequest.json" + } + }, + "deprecated": false + }, + "delete": { + "produces": [ + "application/json", + "text/json" + ], + "description": "Cancel healthcare prediction job.", + "operationId": "CancelHealthJob", + "summary": "Cancel healthcare prediction job", + "parameters": [ + { + "$ref": "#/parameters/JobId" + } + ], + "responses": { + "202": { + "description": "Cancel Job request has been received.", + "headers": { + "Operation-Location": { + "type": "string" + } + } + }, + "404": { + "description": "Job ID not found.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + }, + "x-ms-error-response": true + }, + "500": { + "description": "Internal error response", + "schema": { + "$ref": "#/definitions/ErrorResponse" + }, + "x-ms-error-response": true + } + }, + "x-ms-examples": { + "Successful Health request": { + "$ref": ".//examples//SuccessfulHealthDeleteRequest.json" + } + }, + "deprecated": false, + "x-ms-long-running-operation": true + } + }, + "/entities/health/jobs": { + "post": { + "summary": "Submit healthcare analysis job", + "description": "Start a healthcare analysis job to recognize healthcare related entities (drugs, conditions, symptoms, etc) and their relations.", + "operationId": "Health", + "consumes": [ + "application/json", + "text/json" + ], + "produces": [ + "application/json", + "text/json" + ], + "parameters": [ + { + "$ref": "#/parameters/ModelVersion" + }, + { + "$ref": "#/parameters/StringIndexType" + }, + { + "$ref": "#/parameters/MultiLanguageInput" + } + ], + "responses": { + "202": { + "description": "Accepted - call results in a link where the status of the submitted job can be checked via the GET operation.", + "headers": { + "Operation-Location": { + "type": "string" + } + } + }, + "400": { + "description": "Bad Request.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + }, + "x-ms-error-response": true + }, + "500": { + "description": "Internal error response", + "schema": { + "$ref": "#/definitions/ErrorResponse" + }, + "x-ms-error-response": true + } + }, + "x-ms-examples": { + "Successful Health request": { + "$ref": ".//examples//SuccessfulHealthRequest.json" + } + }, + "deprecated": false, + "x-ms-long-running-operation": true + } + }, + "/entities/recognition/general": { + "post": { + "summary": "Named Entity Recognition", + "description": "The API returns a list of general named entities in a given document. For the list of supported entity types, check Supported Entity Types in Text Analytics API. See the Supported languages in Text Analytics API for the list of enabled languages.", + "operationId": "EntitiesRecognitionGeneral", + "consumes": [ + "application/json", + "text/json" + ], + "produces": [ + "application/json", + "text/json" + ], + "parameters": [ + { + "$ref": "#/parameters/ModelVersion" + }, + { + "$ref": "#/parameters/ShowStats" + }, + { + "$ref": "#/parameters/StringIndexType" + }, + { + "$ref": "#/parameters/MultiLanguageInput" + } + ], + "responses": { + "200": { + "description": "A successful call results in a list of recognized entities returned for each valid document.", + "schema": { + "$ref": "#/definitions/EntitiesResult" + } + }, + "400": { + "description": "Bad Request.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + }, + "x-ms-error-response": true + }, + "500": { + "description": "Internal error response", + "schema": { + "$ref": "#/definitions/ErrorResponse" + }, + "x-ms-error-response": true + } + }, + "x-ms-examples": { + "Successful Entities request": { + "$ref": ".//examples//SuccessfulEntitiesRequest.json" + } + }, + "deprecated": false + } + }, + "/entities/recognition/pii": { + "post": { + "summary": "Entities containing personal information", + "description": "The API returns a list of entities with personal information (\\\"SSN\\\", \\\"Bank Account\\\" etc) in the document. For the list of supported entity types, check Supported Entity Types in Text Analytics API. See the Supported languages in Text Analytics API for the list of enabled languages.\n", + "operationId": "EntitiesRecognitionPii", + "consumes": [ + "application/json", + "text/json" + ], + "produces": [ + "application/json", + "text/json" + ], + "parameters": [ + { + "$ref": "#/parameters/ModelVersion" + }, + { + "$ref": "#/parameters/ShowStats" + }, + { + "name": "domain", + "in": "query", + "description": "(Optional) if specified, will set the PII domain to include only a subset of the entity categories. Possible values include: 'PHI', 'none'.", + "type": "string" + }, + { + "$ref": "#/parameters/StringIndexType" + }, + { + "$ref": "#/parameters/MultiLanguageInput" + } + ], + "responses": { + "200": { + "description": "A successful call results in a list of entities containing personal information returned for each valid document", + "schema": { + "$ref": "#/definitions/PiiResult" + } + }, + "400": { + "description": "Bad Request.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + }, + "x-ms-error-response": true + }, + "500": { + "description": "Internal error response", + "schema": { + "$ref": "#/definitions/ErrorResponse" + }, + "x-ms-error-response": true + } + }, + "x-ms-examples": { + "Successful Entity PII request": { + "$ref": ".//examples//SuccessfulEntityPIIRequest.json" + } + }, + "deprecated": false + } + }, + "/entities/linking": { + "post": { + "summary": "Linked entities from a well-known knowledge base", + "description": "The API returns a list of recognized entities with links to a well-known knowledge base. See the Supported languages in Text Analytics API for the list of enabled languages.", + "operationId": "EntitiesLinking", + "consumes": [ + "application/json", + "text/json" + ], + "produces": [ + "application/json", + "text/json" + ], + "parameters": [ + { + "$ref": "#/parameters/ModelVersion" + }, + { + "$ref": "#/parameters/ShowStats" + }, + { + "$ref": "#/parameters/StringIndexType" + }, + { + "$ref": "#/parameters/MultiLanguageInput" + } + ], + "responses": { + "200": { + "description": "A successful call results in a list of recognized entities with links to a well-known knowledge base returned for each valid document", + "schema": { + "$ref": "#/definitions/EntityLinkingResult" + } + }, + "400": { + "description": "Bad Request.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + }, + "x-ms-error-response": true + }, + "500": { + "description": "Internal error response", + "schema": { + "$ref": "#/definitions/ErrorResponse" + }, + "x-ms-error-response": true + } + }, + "x-ms-examples": { + "Successful Entity Linking request": { + "$ref": ".//examples//SuccessfulEntityLinkingRequest.json" + } + }, + "deprecated": false + } + }, + "/keyPhrases": { + "post": { + "summary": "Key Phrases", + "description": "The API returns a list of strings denoting the key phrases in the input text. See the Supported languages in Text Analytics API for the list of enabled languages.", + "operationId": "KeyPhrases", + "consumes": [ + "application/json", + "text/json" + ], + "produces": [ + "application/json", + "text/json" + ], + "parameters": [ + { + "$ref": "#/parameters/ModelVersion" + }, + { + "$ref": "#/parameters/ShowStats" + }, + { + "$ref": "#/parameters/MultiLanguageInput" + } + ], + "responses": { + "200": { + "description": "A successful response results in 0 or more key phrases identified in each valid document", + "schema": { + "$ref": "#/definitions/KeyPhraseResult" + } + }, + "400": { + "description": "Bad Request.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + }, + "x-ms-error-response": true + }, + "500": { + "description": "Internal error response", + "schema": { + "$ref": "#/definitions/ErrorResponse" + }, + "x-ms-error-response": true + } + }, + "x-ms-examples": { + "Successful Key Phrase request": { + "$ref": ".//examples//SuccessfulKeyPhrasesRequest.json" + } + }, + "deprecated": false + } + }, + "/languages": { + "post": { + "summary": "Detect Language", + "description": "The API returns the detected language and a numeric score between 0 and 1. Scores close to 1 indicate 100% certainty that the identified language is true. See the Supported languages in Text Analytics API for the list of enabled languages.", + "operationId": "Languages", + "consumes": [ + "application/json", + "text/json" + ], + "produces": [ + "application/json", + "text/json" + ], + "parameters": [ + { + "$ref": "#/parameters/ModelVersion" + }, + { + "$ref": "#/parameters/ShowStats" + }, + { + "$ref": "#/parameters/LanguageInput" + } + ], + "responses": { + "200": { + "description": "A successful call results in the detected language with the highest probability for each valid document", + "schema": { + "$ref": "#/definitions/LanguageResult" + } + }, + "400": { + "description": "Bad Request.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + }, + "x-ms-error-response": true + }, + "500": { + "description": "Internal error response", + "schema": { + "$ref": "#/definitions/ErrorResponse" + }, + "x-ms-error-response": true + } + }, + "x-ms-examples": { + "Successful Detect Language request": { + "$ref": ".//examples//SuccessfulLanguagesRequest.json" + } + }, + "deprecated": false + } + }, + "/sentiment": { + "post": { + "summary": "Sentiment", + "description": "The API returns a detailed sentiment analysis for the input text. The analysis is done in multiple levels of granularity, start from the a document level, down to sentence and key terms (aspects) and opinions.", + "operationId": "Sentiment", + "consumes": [ + "application/json", + "text/json" + ], + "produces": [ + "application/json", + "text/json" + ], + "parameters": [ + { + "$ref": "#/parameters/ModelVersion" + }, + { + "$ref": "#/parameters/ShowStats" + }, + { + "name": "opinionMining", + "in": "query", + "description": "(Optional) if set to true, response will contain input and document level statistics including aspect-based sentiment analysis results.", + "type": "boolean" + }, + { + "$ref": "#/parameters/StringIndexType" + }, + { + "$ref": "#/parameters/MultiLanguageInput" + } + ], + "responses": { + "200": { + "description": "A successful call results in a document sentiment prediction, as well as sentiment scores for each sentiment class (Positive, Negative, and Neutral)", + "schema": { + "$ref": "#/definitions/SentimentResponse" + } + }, + "400": { + "description": "Bad Request.", + "schema": { + "$ref": "#/definitions/ErrorResponse" + }, + "x-ms-error-response": true + }, + "500": { + "description": "Internal error response", + "schema": { + "$ref": "#/definitions/ErrorResponse" + }, + "x-ms-error-response": true + } + }, + "x-ms-examples": { + "Successful Sentiment request": { + "$ref": ".//examples//SuccessfulSentimentRequest.json" + } + }, + "deprecated": false + } + } + }, + "definitions": { + "JobManifest": { + "properties": { + "tasks": { + "description": "The set of tasks to execute on the input documents. Cannot specify the same task more than once.", + "properties": { + "entityRecognitionTasks": { + "type": "array", + "items": { + "$ref": "#/definitions/EntitiesTask" + } + }, + "entityRecognitionPiiTasks": { + "type": "array", + "items": { + "$ref": "#/definitions/PiiTask" + } + }, + "keyPhraseExtractionTasks": { + "type": "array", + "items": { + "$ref": "#/definitions/KeyPhrasesTask" + } + } + }, + "type": "object" + } + }, + "required": [ + "tasks" + ], + "type": "object" + }, + "MultiLanguageBatchInput": { + "type": "object", + "required": [ + "documents" + ], + "properties": { + "documents": { + "type": "array", + "description": "The set of documents to process as part of this batch.", + "items": { + "$ref": "#/definitions/MultiLanguageInput" + } + } + }, + "description": "Contains a set of input documents to be analyzed by the service." + }, + "MultiLanguageInput": { + "type": "object", + "required": [ + "id", + "text" + ], + "properties": { + "id": { + "type": "string", + "description": "A unique, non-empty document identifier." + }, + "text": { + "type": "string", + "description": "The input text to process." + }, + "language": { + "type": "string", + "description": "(Optional) This is the 2 letter ISO 639-1 representation of a language. For example, use \"en\" for English; \"es\" for Spanish etc. If not set, use \"en\" for English as default." + } + }, + "description": "Contains an input document to be analyzed by the service." + }, + "DocumentError": { + "type": "object", + "required": [ + "id", + "error" + ], + "properties": { + "id": { + "type": "string", + "description": "Document Id." + }, + "error": { + "type": "object", + "description": "Document Error.", + "$ref": "#/definitions/TextAnalyticsError" + } + } + }, + "ErrorResponse": { + "type": "object", + "required": [ + "error" + ], + "properties": { + "error": { + "type": "object", + "description": "Document Error.", + "$ref": "#/definitions/TextAnalyticsError" + } + } + }, + "TextAnalyticsError": { + "type": "object", + "required": [ + "code", + "message" + ], + "properties": { + "code": { + "type": "string", + "enum": [ + "InvalidRequest", + "InvalidArgument", + "InternalServerError", + "ServiceUnavailable", + "NotFound" + ], + "x-ms-enum": { + "name": "ErrorCodeValue", + "modelAsString": false + }, + "description": "Error code." + }, + "message": { + "type": "string", + "description": "Error message." + }, + "target": { + "type": "string", + "description": "Error target." + }, + "innererror": { + "$ref": "#/definitions/InnerError", + "description": "Inner error contains more specific information." + }, + "details": { + "type": "array", + "description": "Details about specific errors that led to this reported error.", + "items": { + "$ref": "#/definitions/TextAnalyticsError" + } + } + } + }, + "TextAnalyticsWarning": { + "type": "object", + "required": [ + "code", + "message" + ], + "properties": { + "code": { + "type": "string", + "enum": [ + "LongWordsInDocument", + "DocumentTruncated" + ], + "x-ms-enum": { + "name": "WarningCodeValue", + "modelAsString": true + }, + "description": "Error code." + }, + "message": { + "type": "string", + "description": "Warning message." + }, + "targetRef": { + "type": "string", + "description": "A JSON pointer reference indicating the target object." + } + } + }, + "PiiTask": { + "properties": { + "parameters": { + "properties": { + "domain": { + "default": "none", + "enum": [ + "phi", + "none" + ], + "type": "string" + }, + "model-version": { + "default": "latest", + "type": "string" + }, + "stringIndexType": { + "$ref": "#/definitions/StringIndexType" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "EntitiesTask": { + "properties": { + "parameters": { + "properties": { + "model-version": { + "default": "latest", + "type": "string" + }, + "stringIndexType": { + "$ref": "#/definitions/StringIndexType" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "InnerError": { + "type": "object", + "required": [ + "code", + "message" + ], + "properties": { + "code": { + "type": "string", + "enum": [ + "InvalidParameterValue", + "InvalidRequestBodyFormat", + "EmptyRequest", + "MissingInputRecords", + "InvalidDocument", + "ModelVersionIncorrect", + "InvalidDocumentBatch", + "UnsupportedLanguageCode", + "InvalidCountryHint" + ], + "x-ms-enum": { + "name": "InnerErrorCodeValue", + "modelAsString": true + }, + "description": "Error code." + }, + "message": { + "type": "string", + "description": "Error message." + }, + "details": { + "type": "object", + "additionalProperties": { + "type": "string" + }, + "description": "Error details." + }, + "target": { + "type": "string", + "description": "Error target." + }, + "innererror": { + "$ref": "#/definitions/InnerError", + "description": "Inner error contains more specific information." + } + } + }, + "AnalyzeBatchInput": { + "allOf": [ + { + "$ref": "#/definitions/JobDescriptor" + }, + { + "type": "object", + "required": [ + "analysisInput" + ], + "properties": { + "analysisInput": { + "$ref": "#/definitions/MultiLanguageBatchInput" + } + } + }, + { + "$ref": "#/definitions/JobManifest" + } + ] + }, + "AnalyzeJobState": { + "allOf": [ + { + "$ref": "#/definitions/JobMetadata" + }, + { + "$ref": "#/definitions/TasksState" + }, + { + "properties": { + "errors": { + "items": { + "$ref": "#/definitions/TextAnalyticsError" + }, + "type": "array" + }, + "statistics": { + "$ref": "#/definitions/RequestStatistics" + } + }, + "type": "object" + }, + { + "$ref": "#/definitions/Pagination" + } + ] + }, + "SentimentResponse": { + "type": "object", + "required": [ + "documents", + "errors", + "modelVersion" + ], + "properties": { + "documents": { + "type": "array", + "description": "Sentiment analysis per document.", + "items": { + "$ref": "#/definitions/DocumentSentiment" + } + }, + "errors": { + "type": "array", + "description": "Errors by document id.", + "items": { + "$ref": "#/definitions/DocumentError" + } + }, + "statistics": { + "$ref": "#/definitions/RequestStatistics" + }, + "modelVersion": { + "type": "string", + "description": "This field indicates which model is used for scoring." + } + } + }, + "TaskState": { + "properties": { + "lastUpdateDateTime": { + "format": "date-time", + "type": "string" + }, + "name": { + "type": "string" + }, + "status": { + "enum": [ + "notstarted", + "running", + "succeeded", + "failed", + "cancelled", + "cancelling" + ], + "x-ms-enum": { + "modelAsString": false, + "name": "State" + } + } + }, + "required": [ + "name", + "status", + "lastUpdateDateTime" + ], + "type": "object" + }, + "TasksState": { + "properties": { + "tasks": { + "properties": { + "details": { + "items": { + "$ref": "#/definitions/TaskState" + }, + "type": "array" + }, + "completed": { + "type": "integer" + }, + "failed": { + "type": "integer" + }, + "inProgress": { + "type": "integer" + }, + "total": { + "type": "integer" + }, + "entityRecognitionTasks": { + "type": "array", + "items": { + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/TaskState" + }, + { + "type": "object", + "properties": { + "results": { + "$ref": "#/definitions/EntitiesResult" + } + } + } + ] + } + }, + "entityRecognitionPiiTasks": { + "type": "array", + "items": { + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/TaskState" + }, + { + "type": "object", + "properties": { + "results": { + "$ref": "#/definitions/PiiResult" + } + } + } + ] + } + }, + "keyPhraseExtractionTasks": { + "type": "array", + "items": { + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/TaskState" + }, + { + "type": "object", + "properties": { + "results": { + "$ref": "#/definitions/KeyPhraseResult" + } + } + } + ] + } + } + }, + "required": [ + "total", + "completed", + "failed", + "inProgress" + ], + "type": "object" + } + }, + "required": [ + "tasks" + ], + "type": "object" + }, + "DocumentSentiment": { + "type": "object", + "required": [ + "id", + "sentiment", + "confidenceScores", + "sentences", + "warnings" + ], + "properties": { + "id": { + "type": "string", + "description": "Unique, non-empty document identifier." + }, + "sentiment": { + "type": "string", + "description": "Predicted sentiment for document (Negative, Neutral, Positive, or Mixed).", + "enum": [ + "positive", + "neutral", + "negative", + "mixed" + ], + "x-ms-enum": { + "name": "DocumentSentimentValue", + "modelAsString": false + } + }, + "statistics": { + "$ref": "#/definitions/DocumentStatistics" + }, + "confidenceScores": { + "description": "Document level sentiment confidence scores between 0 and 1 for each sentiment class.", + "$ref": "#/definitions/SentimentConfidenceScorePerLabel" + }, + "sentences": { + "type": "array", + "description": "Sentence level sentiment analysis.", + "items": { + "$ref": "#/definitions/SentenceSentiment" + } + }, + "warnings": { + "type": "array", + "description": "Warnings encountered while processing document.", + "items": { + "$ref": "#/definitions/TextAnalyticsWarning" + } + } + } + }, + "RequestStatistics": { + "type": "object", + "required": [ + "documentsCount", + "validDocumentsCount", + "erroneousDocumentsCount", + "transactionsCount" + ], + "properties": { + "documentsCount": { + "type": "integer", + "format": "int32", + "description": "Number of documents submitted in the request." + }, + "validDocumentsCount": { + "type": "integer", + "format": "int32", + "description": "Number of valid documents. This excludes empty, over-size limit or non-supported languages documents." + }, + "erroneousDocumentsCount": { + "type": "integer", + "format": "int32", + "description": "Number of invalid documents. This includes empty, over-size limit or non-supported languages documents." + }, + "transactionsCount": { + "type": "integer", + "format": "int64", + "description": "Number of transactions for the request." + } + }, + "description": "if showStats=true was specified in the request this field will contain information about the request payload." + }, + "DocumentStatistics": { + "type": "object", + "required": [ + "charactersCount", + "transactionsCount" + ], + "properties": { + "charactersCount": { + "type": "integer", + "format": "int32", + "description": "Number of text elements recognized in the document." + }, + "transactionsCount": { + "type": "integer", + "format": "int32", + "description": "Number of transactions for the document." + } + }, + "description": "if showStats=true was specified in the request this field will contain information about the document payload." + }, + "SentimentConfidenceScorePerLabel": { + "type": "object", + "required": [ + "positive", + "neutral", + "negative" + ], + "properties": { + "positive": { + "type": "number", + "format": "double" + }, + "neutral": { + "type": "number", + "format": "double" + }, + "negative": { + "type": "number", + "format": "double" + } + }, + "description": "Represents the confidence scores between 0 and 1 across all sentiment classes: positive, neutral, negative." + }, + "SentenceSentiment": { + "type": "object", + "required": [ + "text", + "sentiment", + "confidenceScores", + "offset", + "length" + ], + "properties": { + "text": { + "type": "string", + "description": "The sentence text." + }, + "sentiment": { + "type": "string", + "description": "The predicted Sentiment for the sentence.", + "enum": [ + "positive", + "neutral", + "negative" + ], + "x-ms-enum": { + "name": "SentenceSentimentValue", + "modelAsString": false + } + }, + "confidenceScores": { + "description": "The sentiment confidence score between 0 and 1 for the sentence for all classes.", + "$ref": "#/definitions/SentimentConfidenceScorePerLabel" + }, + "offset": { + "type": "integer", + "format": "int32", + "description": "The sentence offset from the start of the document." + }, + "length": { + "type": "integer", + "format": "int32", + "description": "The length of the sentence." + }, + "aspects": { + "type": "array", + "description": "The array of aspect object for the sentence.", + "items": { + "$ref": "#/definitions/SentenceAspect" + } + }, + "opinions": { + "type": "array", + "description": "The array of opinion object for the sentence.", + "items": { + "$ref": "#/definitions/SentenceOpinion" + } + } + } + }, + "SentenceAspect": { + "type": "object", + "required": [ + "confidenceScores", + "length", + "offset", + "relations", + "sentiment", + "text" + ], + "properties": { + "sentiment": { + "type": "string", + "enum": [ + "positive", + "mixed", + "negative" + ], + "x-ms-enum": { + "name": "TokenSentimentValue", + "modelAsString": false + }, + "description": "Aspect level sentiment for the aspect in the sentence." + }, + "confidenceScores": { + "description": "Aspect level sentiment confidence scores for the aspect in the sentence.", + "$ref": "#/definitions/AspectConfidenceScoreLabel" + }, + "offset": { + "type": "integer", + "format": "int32", + "description": "The aspect offset from the start of the sentence." + }, + "length": { + "type": "integer", + "format": "int32", + "description": "The length of the aspect." + }, + "text": { + "type": "string", + "description": "The aspect text detected." + }, + "relations": { + "type": "array", + "description": "The array of either opinion or aspect object which is related to the aspect.", + "items": { + "$ref": "#/definitions/AspectRelation" + } + } + } + }, + "SentenceOpinion": { + "type": "object", + "required": [ + "confidenceScores", + "isNegated", + "length", + "offset", + "sentiment", + "text" + ], + "properties": { + "sentiment": { + "type": "string", + "enum": [ + "positive", + "mixed", + "negative" + ], + "x-ms-enum": { + "name": "TokenSentimentValue", + "modelAsString": false + }, + "description": "Opinion level sentiment for the aspect in the sentence." + }, + "confidenceScores": { + "description": "Opinion level sentiment confidence scores for the aspect in the sentence.", + "$ref": "#/definitions/AspectConfidenceScoreLabel" + }, + "offset": { + "type": "integer", + "format": "int32", + "description": "The opinion offset from the start of the sentence." + }, + "length": { + "type": "integer", + "format": "int32", + "description": "The length of the opinion." + }, + "text": { + "type": "string", + "description": "The aspect text detected." + }, + "isNegated": { + "type": "boolean", + "description": "The indicator representing if the opinion is negated." + } + } + }, + "AspectRelation": { + "type": "object", + "required": [ + "ref", + "relationType" + ], + "properties": { + "relationType": { + "type": "string", + "enum": [ + "opinion", + "aspect" + ], + "x-ms-enum": { + "name": "AspectRelationType", + "modelAsString": false + }, + "description": "The type related to the aspect." + }, + "ref": { + "type": "string", + "description": "The JSON pointer indicating the linked object." + } + } + }, + "AspectConfidenceScoreLabel": { + "type": "object", + "required": [ + "negative", + "positive" + ], + "properties": { + "positive": { + "type": "number", + "format": "double" + }, + "negative": { + "type": "number", + "format": "double" + } + }, + "description": "Represents the confidence scores across all sentiment classes: positive, neutral, negative." + }, + "EntitiesResult": { + "type": "object", + "required": [ + "documents", + "errors", + "modelVersion" + ], + "properties": { + "documents": { + "type": "array", + "description": "Response by document", + "items": { + "$ref": "#/definitions/DocumentEntities" + } + }, + "errors": { + "type": "array", + "description": "Errors by document id.", + "items": { + "$ref": "#/definitions/DocumentError" + } + }, + "statistics": { + "$ref": "#/definitions/RequestStatistics" + }, + "modelVersion": { + "type": "string", + "description": "This field indicates which model is used for scoring." + } + } + }, + "DocumentEntities": { + "type": "object", + "required": [ + "id", + "entities", + "warnings" + ], + "properties": { + "id": { + "type": "string", + "description": "Unique, non-empty document identifier." + }, + "entities": { + "type": "array", + "description": "Recognized entities in the document.", + "items": { + "$ref": "#/definitions/Entity" + } + }, + "warnings": { + "type": "array", + "description": "Warnings encountered while processing document.", + "items": { + "$ref": "#/definitions/TextAnalyticsWarning" + } + }, + "statistics": { + "description": "if showStats=true was specified in the request this field will contain information about the document payload.", + "$ref": "#/definitions/DocumentStatistics" + } + } + }, + "PiiDocumentEntities": { + "type": "object", + "required": [ + "id", + "redactedText", + "entities", + "warnings" + ], + "properties": { + "id": { + "type": "string", + "description": "Unique, non-empty document identifier." + }, + "redactedText": { + "type": "string", + "description": "Returns redacted text." + }, + "entities": { + "type": "array", + "description": "Recognized entities in the document.", + "items": { + "$ref": "#/definitions/Entity" + } + }, + "warnings": { + "type": "array", + "description": "Warnings encountered while processing document.", + "items": { + "$ref": "#/definitions/TextAnalyticsWarning" + } + }, + "statistics": { + "description": "if showStats=true was specified in the request this field will contain information about the document payload.", + "$ref": "#/definitions/DocumentStatistics" + } + } + }, + "Entity": { + "type": "object", + "required": [ + "text", + "category", + "offset", + "length", + "confidenceScore" + ], + "properties": { + "text": { + "type": "string", + "description": "Entity text as appears in the request." + }, + "category": { + "type": "string", + "description": "Entity type." + }, + "subcategory": { + "type": "string", + "description": "(Optional) Entity sub type." + }, + "offset": { + "type": "integer", + "format": "int32", + "description": "Start position for the entity text. Use of different 'stringIndexType' values can affect the offset returned." + }, + "length": { + "type": "integer", + "format": "int32", + "description": "Length for the entity text. Use of different 'stringIndexType' values can affect the length returned." + }, + "confidenceScore": { + "type": "number", + "format": "double", + "description": "Confidence score between 0 and 1 of the extracted entity." + } + } + }, + "EntityLinkingResult": { + "type": "object", + "required": [ + "documents", + "errors", + "modelVersion" + ], + "properties": { + "documents": { + "type": "array", + "description": "Response by document", + "items": { + "$ref": "#/definitions/DocumentLinkedEntities" + } + }, + "errors": { + "type": "array", + "description": "Errors by document id.", + "items": { + "$ref": "#/definitions/DocumentError" + } + }, + "statistics": { + "$ref": "#/definitions/RequestStatistics" + }, + "modelVersion": { + "type": "string", + "description": "This field indicates which model is used for scoring." + } + } + }, + "DocumentLinkedEntities": { + "type": "object", + "required": [ + "id", + "entities", + "warnings" + ], + "properties": { + "id": { + "type": "string", + "description": "Unique, non-empty document identifier." + }, + "entities": { + "type": "array", + "description": "Recognized well-known entities in the document.", + "items": { + "$ref": "#/definitions/LinkedEntity" + } + }, + "warnings": { + "type": "array", + "description": "Warnings encountered while processing document.", + "items": { + "$ref": "#/definitions/TextAnalyticsWarning" + } + }, + "statistics": { + "description": "if showStats=true was specified in the request this field will contain information about the document payload.", + "$ref": "#/definitions/DocumentStatistics" + } + } + }, + "HealthcareJobState": { + "allOf": [ + { + "$ref": "#/definitions/JobMetadata" + }, + { + "properties": { + "results": { + "$ref": "#/definitions/HealthcareResult" + } + }, + "type": "object" + }, + { + "$ref": "#/definitions/Pagination" + } + ] + }, + "HealthcareResult": { + "type": "object", + "required": [ + "documents", + "errors", + "modelVersion" + ], + "properties": { + "documents": { + "type": "array", + "description": "Response by document", + "items": { + "$ref": "#/definitions/DocumentHealthcareEntities" + } + }, + "errors": { + "type": "array", + "description": "Errors by document id.", + "items": { + "$ref": "#/definitions/DocumentError" + } + }, + "statistics": { + "$ref": "#/definitions/RequestStatistics" + }, + "modelVersion": { + "type": "string", + "description": "This field indicates which model is used for scoring." + } + } + }, + "DocumentHealthcareEntities": { + "type": "object", + "required": [ + "id", + "entities", + "relations", + "warnings" + ], + "properties": { + "id": { + "type": "string", + "description": "Unique, non-empty document identifier." + }, + "entities": { + "description": "Healthcare entities.", + "type": "array", + "items": { + "$ref": "#/definitions/HealthcareEntity" + } + }, + "relations": { + "type": "array", + "description": "Healthcare entity relations.", + "items": { + "$ref": "#/definitions/HealthcareRelation" + } + }, + "warnings": { + "type": "array", + "description": "Warnings encountered while processing document.", + "items": { + "$ref": "#/definitions/TextAnalyticsWarning" + } + }, + "statistics": { + "description": "if showStats=true was specified in the request this field will contain information about the document payload.", + "$ref": "#/definitions/DocumentStatistics" + } + } + }, + "HealthcareEntity": { + "type": "object", + "allOf": [ + { + "$ref": "#/definitions/Entity" + }, + { + "required": [ + "isNegated" + ], + "properties": { + "isNegated": { + "type": "boolean" + }, + "links": { + "description": "Entity references in known data sources.", + "type": "array", + "items": { + "$ref": "#/definitions/HealthcareEntityLink" + } + } + } + } + ] + }, + "HealthcareRelation": { + "type": "object", + "required": [ + "relationType", + "bidirectional", + "source", + "target" + ], + "properties": { + "relationType": { + "description": "Type of relation. Examples include: `DosageOfMedication` or 'FrequencyOfMedication', etc.", + "type": "string" + }, + "bidirectional": { + "description": "If true the relation between the entities is bidirectional, otherwise directionality is source to target.", + "type": "boolean" + }, + "source": { + "description": "Reference link to the source entity.", + "type": "string" + }, + "target": { + "description": "Reference link to the target entity.", + "type": "string" + } + } + }, + "HealthcareEntityLink": { + "type": "object", + "required": [ + "dataSource", + "id" + ], + "properties": { + "dataSource": { + "description": "Entity Catalog. Examples include: UMLS, CHV, MSH, etc.", + "type": "string" + }, + "id": { + "description": "Entity id in the given source catalog.", + "type": "string" + } + } + }, + "LinkedEntity": { + "type": "object", + "required": [ + "name", + "matches", + "language", + "url", + "dataSource" + ], + "properties": { + "name": { + "type": "string", + "description": "Entity Linking formal name." + }, + "matches": { + "type": "array", + "description": "List of instances this entity appears in the text.", + "items": { + "$ref": "#/definitions/Match" + } + }, + "language": { + "type": "string", + "description": "Language used in the data source." + }, + "id": { + "type": "string", + "description": "Unique identifier of the recognized entity from the data source." + }, + "url": { + "type": "string", + "description": "URL for the entity's page from the data source." + }, + "dataSource": { + "type": "string", + "description": "Data source used to extract entity linking, such as Wiki/Bing etc." + }, + "bingId": { + "type": "string", + "description": "Bing Entity Search API unique identifier of the recognized entity." + } + } + }, + "Match": { + "type": "object", + "required": [ + "confidenceScore", + "text", + "offset", + "length" + ], + "properties": { + "confidenceScore": { + "type": "number", + "format": "double", + "description": "If a well-known item is recognized, a decimal number denoting the confidence level between 0 and 1 will be returned." + }, + "text": { + "type": "string", + "description": "Entity text as appears in the request." + }, + "offset": { + "type": "integer", + "format": "int32", + "description": "Start position for the entity match text." + }, + "length": { + "type": "integer", + "format": "int32", + "description": "Length for the entity match text." + } + } + }, + "JobDescriptor": { + "properties": { + "displayName": { + "description": "Optional display name for the analysis job.", + "type": "string" + } + }, + "type": "object" + }, + "JobMetadata": { + "properties": { + "createdDateTime": { + "format": "date-time", + "type": "string" + }, + "displayName": { + "type": "string" + }, + "expirationDateTime": { + "format": "date-time", + "type": "string" + }, + "jobId": { + "format": "uuid", + "type": "string" + }, + "lastUpdateDateTime": { + "format": "date-time", + "type": "string" + }, + "status": { + "enum": [ + "notstarted", + "running", + "succeeded", + "failed", + "cancelled", + "cancelling", + "partiallycompleted" + ], + "type": "string", + "x-ms-enum": { + "modelAsString": false, + "name": "State" + } + } + }, + "required": [ + "jobId", + "lastUpdateDateTime", + "createdDateTime", + "status" + ], + "type": "object" + }, + "KeyPhraseResult": { + "type": "object", + "required": [ + "documents", + "errors", + "modelVersion" + ], + "properties": { + "documents": { + "type": "array", + "description": "Response by document", + "items": { + "$ref": "#/definitions/DocumentKeyPhrases" + } + }, + "errors": { + "type": "array", + "description": "Errors by document id.", + "items": { + "$ref": "#/definitions/DocumentError" + } + }, + "statistics": { + "$ref": "#/definitions/RequestStatistics" + }, + "modelVersion": { + "type": "string", + "description": "This field indicates which model is used for scoring." + } + } + }, + "DocumentKeyPhrases": { + "type": "object", + "required": [ + "id", + "keyPhrases", + "warnings" + ], + "properties": { + "id": { + "type": "string", + "description": "Unique, non-empty document identifier." + }, + "keyPhrases": { + "type": "array", + "description": "A list of representative words or phrases. The number of key phrases returned is proportional to the number of words in the input document.", + "items": { + "type": "string" + } + }, + "warnings": { + "type": "array", + "description": "Warnings encountered while processing document.", + "items": { + "$ref": "#/definitions/TextAnalyticsWarning" + } + }, + "statistics": { + "description": "if showStats=true was specified in the request this field will contain information about the document payload.", + "$ref": "#/definitions/DocumentStatistics" + } + } + }, + "KeyPhrasesTask": { + "properties": { + "parameters": { + "properties": { + "model-version": { + "default": "latest", + "type": "string" + } + }, + "type": "object" + } + }, + "type": "object" + }, + "LanguageBatchInput": { + "type": "object", + "required": [ + "documents" + ], + "properties": { + "documents": { + "type": "array", + "items": { + "$ref": "#/definitions/LanguageInput" + } + } + } + }, + "LanguageInput": { + "type": "object", + "required": [ + "id", + "text" + ], + "properties": { + "id": { + "type": "string", + "description": "Unique, non-empty document identifier." + }, + "text": { + "type": "string" + }, + "countryHint": { + "type": "string" + } + } + }, + "Pagination": { + "properties": { + "@nextLink": { + "type": "string" + } + }, + "type": "object" + }, + "PiiResult": { + "type": "object", + "required": [ + "documents", + "errors", + "modelVersion" + ], + "properties": { + "documents": { + "type": "array", + "description": "Response by document", + "items": { + "$ref": "#/definitions/PiiDocumentEntities" + } + }, + "errors": { + "type": "array", + "description": "Errors by document id.", + "items": { + "$ref": "#/definitions/DocumentError" + } + }, + "statistics": { + "$ref": "#/definitions/RequestStatistics" + }, + "modelVersion": { + "type": "string", + "description": "This field indicates which model is used for scoring." + } + } + }, + "LanguageResult": { + "type": "object", + "required": [ + "documents", + "errors", + "modelVersion" + ], + "properties": { + "documents": { + "type": "array", + "description": "Response by document", + "items": { + "$ref": "#/definitions/DocumentLanguage" + } + }, + "errors": { + "type": "array", + "description": "Errors by document id.", + "items": { + "$ref": "#/definitions/DocumentError" + } + }, + "statistics": { + "$ref": "#/definitions/RequestStatistics" + }, + "modelVersion": { + "type": "string", + "description": "This field indicates which model is used for scoring." + } + } + }, + "DocumentLanguage": { + "type": "object", + "required": [ + "id", + "detectedLanguage", + "warnings" + ], + "properties": { + "id": { + "type": "string", + "description": "Unique, non-empty document identifier." + }, + "detectedLanguage": { + "description": "Detected Language.", + "$ref": "#/definitions/DetectedLanguage" + }, + "warnings": { + "type": "array", + "description": "Warnings encountered while processing document.", + "items": { + "$ref": "#/definitions/TextAnalyticsWarning" + } + }, + "statistics": { + "description": "if showStats=true was specified in the request this field will contain information about the document payload.", + "$ref": "#/definitions/DocumentStatistics" + } + } + }, + "DetectedLanguage": { + "type": "object", + "required": [ + "name", + "iso6391Name", + "confidenceScore" + ], + "properties": { + "name": { + "type": "string", + "description": "Long name of a detected language (e.g. English, French)." + }, + "iso6391Name": { + "type": "string", + "description": "A two letter representation of the detected language according to the ISO 639-1 standard (e.g. en, fr)." + }, + "confidenceScore": { + "type": "number", + "format": "double", + "description": "A confidence score between 0 and 1. Scores close to 1 indicate 100% certainty that the identified language is true." + } + } + }, + "StringIndexType": { + "default": "TextElements_v8", + "enum": [ + "TextElements_v8", + "UnicodeCodePoint", + "Utf16CodeUnit" + ], + "x-ms-enum": { + "name": "StringIndexTypeResponse", + "modelAsString": false, + "values": [ + { + "value": "TextElements_v8", + "description": "Returned offset and length values will correspond to TextElements (Graphemes and Grapheme clusters) confirming to the Unicode 8.0.0 standard. Use this option if your application is written in .Net Framework or .Net Core and you will be using StringInfo." + }, + { + "value": "UnicodeCodePoint", + "description": "Returned offset and length values will correspond to Unicode code points. Use this option if your application is written in a language that support Unicode, for example Python." + }, + { + "value": "Utf16CodeUnit", + "description": "Returned offset and length values will correspond to UTF-16 code units. Use this option if your application is written in a language that support Unicode, for example Java, JavaScript." + } + ] + }, + "type": "string" + } + }, + "parameters": { + "Endpoint": { + "name": "Endpoint", + "description": "Supported Cognitive Services endpoints (protocol and hostname, for example: https://westus.api.cognitive.microsoft.com).", + "x-ms-parameter-location": "client", + "required": true, + "type": "string", + "in": "path", + "x-ms-skip-url-encoding": true + }, + "StringIndexType": { + "name": "stringIndexType", + "in": "query", + "type": "string", + "description": "(Optional) Specifies the method used to interpret string offsets. Defaults to Text Elements (Graphemes) according to Unicode v8.0.0. For additional information see https://aka.ms/text-analytics-offsets", + "default": "TextElements_v8", + "enum": [ + "TextElements_v8", + "UnicodeCodePoint", + "Utf16CodeUnit" + ], + "x-ms-enum": { + "name": "StringIndexType", + "modelAsString": true, + "values": [ + { + "value": "TextElements_v8", + "description": "Returned offset and length values will correspond to TextElements (Graphemes and Grapheme clusters) confirming to the Unicode 8.0.0 standard. Use this option if your application is written in .Net Framework or .Net Core and you will be using StringInfo." + }, + { + "value": "UnicodeCodePoint", + "description": "Returned offset and length values will correspond to Unicode code points. Use this option if your application is written in a language that support Unicode, for example Python." + }, + { + "value": "Utf16CodeUnit", + "description": "Returned offset and length values will correspond to UTF-16 code units. Use this option if your application is written in a language that support Unicode, for example Java, JavaScript." + } + ] + }, + "x-ms-parameter-location": "method" + }, + "JobId": { + "description": "Job ID", + "format": "uuid", + "in": "path", + "name": "jobId", + "required": true, + "type": "string", + "x-ms-parameter-location": "method" + }, + "ShowStats": { + "name": "showStats", + "in": "query", + "description": "(Optional) if set to true, response will contain request and document level statistics.", + "type": "boolean", + "required": false, + "x-ms-parameter-location": "method" + }, + "ModelVersion": { + "name": "model-version", + "in": "query", + "description": "(Optional) This value indicates which model will be used for scoring. If a model-version is not specified, the API should default to the latest, non-preview version. ", + "type": "string", + "required": false, + "x-ms-parameter-location": "method" + }, + "MultiLanguageInput": { + "in": "body", + "name": "input", + "description": "Collection of documents to analyze.", + "required": true, + "schema": { + "$ref": "#/definitions/MultiLanguageBatchInput" + }, + "x-ms-parameter-location": "method" + }, + "LanguageInput": { + "in": "body", + "name": "input", + "description": "Collection of documents to analyze for language endpoint.", + "required": true, + "schema": { + "$ref": "#/definitions/LanguageBatchInput" + }, + "x-ms-parameter-location": "method" + } + } +} \ No newline at end of file From c18dd3ad1fcc8dd449b53c6ba44846ef0989d8e2 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Thu, 29 Oct 2020 09:57:18 -0700 Subject: [PATCH 02/58] Added AnalyzeHealth Operation - build passing --- .../src/AnalyzeHealthOperation.cs | 213 +++++++++++ .../src/AnalyzeHealthOptions.cs | 20 + .../src/ClientCommon.cs | 97 +++++ .../src/DocumentHealthcareEntities.cs | 109 ++++++ .../DocumentHealthcareEntitiesCollection.cs | 25 ++ .../src/DocumentHealthcareEntitiesInternal.cs | 29 ++ .../Models/AnalyzeJobState.Serialization.cs | 4 +- .../src/Generated/Models/AnalyzeJobState.cs | 4 +- ...althcareEntitiesInternal.Serialization.cs} | 16 +- ... => DocumentHealthcareEntitiesInternal.cs} | 25 +- ...tyRecognitionPiiTasksItem.Serialization.cs | 5 +- .../Models/EntityRecognitionPiiTasksItem.cs | 5 +- ...ntityRecognitionTasksItem.Serialization.cs | 4 +- .../Models/EntityRecognitionTasksItem.cs | 4 +- .../Models/HealthcareEntity.Serialization.cs | 3 +- .../src/Generated/Models/HealthcareEntity.cs | 6 +- .../HealthcareEntityLink.Serialization.cs | 4 +- .../Generated/Models/HealthcareEntityLink.cs | 4 +- .../HealthcareJobState.Serialization.cs | 5 +- .../Generated/Models/HealthcareJobState.cs | 5 +- ...althcareRelationInternal.Serialization.cs} | 8 +- ...ation.cs => HealthcareRelationInternal.cs} | 8 +- .../Models/HealthcareResult.Serialization.cs | 6 +- .../src/Generated/Models/HealthcareResult.cs | 6 +- .../Models/JobMetadata.Serialization.cs | 5 +- .../src/Generated/Models/JobMetadata.cs | 7 +- .../src/Generated/Models/JobStatus.cs | 66 ++++ ...PhraseExtractionTasksItem.Serialization.cs | 4 +- .../Models/KeyPhraseExtractionTasksItem.cs | 4 +- .../Generated/Models/State.Serialization.cs | 38 -- .../src/Generated/Models/State.cs | 28 -- .../Models/TaskState.Serialization.cs | 5 +- .../src/Generated/Models/TaskState.cs | 5 +- .../src/HealthcareEntity.cs | 25 ++ .../src/HealthcareEntityLink.cs | 12 + .../src/HealthcareRelation.cs | 79 ++++ .../src/HealthcareRelationInternal.cs | 12 + .../Azure.AI.TextAnalytics/src/JobStatus.cs | 14 + .../src/OperationHelpers.cs | 62 ++++ ...gnizeHealthcareEntitiesResultCollection.cs | 40 ++ .../src/RecognizeHealthcareEntititesResult.cs | 42 +++ .../src/TextAnalyticsClient.cs | 346 +++++++++++++++++- 42 files changed, 1258 insertions(+), 151 deletions(-) create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeHealthOperation.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeHealthOptions.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/ClientCommon.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntities.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntitiesCollection.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntitiesInternal.cs rename sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/{DocumentHealthcareEntities.Serialization.cs => DocumentHealthcareEntitiesInternal.Serialization.cs} (78%) rename sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/{DocumentHealthcareEntities.cs => DocumentHealthcareEntitiesInternal.cs} (62%) rename sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/{HealthcareRelation.Serialization.cs => HealthcareRelationInternal.Serialization.cs} (80%) rename sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/{HealthcareRelation.cs => HealthcareRelationInternal.cs} (89%) create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobStatus.cs delete mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/State.Serialization.cs delete mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/State.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntity.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntityLink.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareRelation.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareRelationInternal.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/JobStatus.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/OperationHelpers.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntitiesResultCollection.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntititesResult.cs diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeHealthOperation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeHealthOperation.cs new file mode 100644 index 0000000000000..d42539f6c5fb9 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeHealthOperation.cs @@ -0,0 +1,213 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading; +using System.Threading.Tasks; +using Azure.AI.TextAnalytics.Models; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.AI.TextAnalytics +{ + /// The AnalyzeOperation class for LRO. + public class AnalyzeHealthOperation : Operation + { + /// Provides communication with the Form Recognizer Azure Cognitive Service through its REST API. + private readonly TextAnalyticsRestClient _serviceClient; + + /// Provides tools for exception creation in case of failure. + private readonly ClientDiagnostics _diagnostics; + + /// + /// Gets an ID representing the operation that can be used to poll for the status + /// of the long-running operation. + /// + public override string Id { get; } + + /// + /// Final result of the long-running operation. + /// + /// + /// This property can be accessed only after the operation completes successfully (HasValue is true). + /// + public override RecognizeHealthcareEntitiesResultCollection Value + { + get + { + if (HasCompleted && !HasValue) +#pragma warning disable CA1065 // Do not raise exceptions in unexpected locations + throw _requestFailedException; +#pragma warning restore CA1065 // Do not raise exceptions in unexpected locations + else + { + return OperationHelpers.GetValue(ref _value); + } + } + } + + /// true if the long-running operation has completed. Otherwise, false. + private bool _hasCompleted; + + /// + /// Returns true if the long-running operation completed. + /// + public override bool HasCompleted => _hasCompleted; + + private RequestFailedException _requestFailedException; + + /// The last HTTP response received from the server. null until the first response is received. + private Response _response; + + /// The result of the long-running operation. null until result is received on status update. + private RecognizeHealthcareEntitiesResultCollection _value; + + /// + /// Returns true if the long-running operation completed successfully and has produced final result (accessible by Value property). + /// + public override bool HasValue => _value != null; + + /// + /// Initializes a new instance of the class. + /// + /// The ID of this operation. + /// The client used to check for completion. + public AnalyzeHealthOperation(string operationId, TextAnalyticsClient client) + { + // TODO: Add argument validation here. + + Id = operationId; + _serviceClient = client._serviceRestClient; + _diagnostics = client._clientDiagnostics; + } + + /// + /// Initializes a new instance of the class. + /// + /// The client for communicating with the Form Recognizer Azure Cognitive Service through its REST API. + /// The client diagnostics for exception creation in case of failure. + /// The address of the long-running operation. It can be obtained from the response headers upon starting the operation. + internal AnalyzeHealthOperation(TextAnalyticsRestClient serviceClient, ClientDiagnostics diagnostics, string operationLocation) + { + _serviceClient = serviceClient; + _diagnostics = diagnostics; + + // TODO: Add validation here + // https://github.com/Azure/azure-sdk-for-net/issues/11505 + Id = operationLocation.Split('/').Last(); + } + + + /// + /// The last HTTP response received from the server. + /// + /// + /// The last response returned from the server during the lifecycle of this instance. + /// An instance of sends requests to a server in UpdateStatusAsync, UpdateStatus, and other methods. + /// Responses from these requests can be accessed using GetRawResponse. + /// + public override Response GetRawResponse() => _response; + + /// + /// Calls the server to get updated status of the long-running operation. + /// + /// A used for the service call. + /// The HTTP response received from the server. + /// + /// This operation will update the value returned from GetRawResponse and might update HasCompleted, HasValue, and Value. + /// + public override Response UpdateStatus(CancellationToken cancellationToken = default) => + UpdateStatusAsync(false, cancellationToken).EnsureCompleted(); + + /// + /// Calls the server to get updated status of the long-running operation. + /// + /// A used for the service call. + /// The HTTP response received from the server. + /// + /// This operation will update the value returned from GetRawResponse and might update HasCompleted, HasValue, and Value. + /// + public override async ValueTask UpdateStatusAsync(CancellationToken cancellationToken = default) => + await UpdateStatusAsync(true, cancellationToken).ConfigureAwait(false); + + /// + /// Periodically calls the server till the long-running operation completes. + /// + /// A used for the periodical service calls. + /// The last HTTP response received from the server. + /// + /// This method will periodically call UpdateStatusAsync till HasCompleted is true, then return the final result of the operation. + /// + public override ValueTask> WaitForCompletionAsync(CancellationToken cancellationToken = default) => + this.DefaultWaitForCompletionAsync(cancellationToken); + + /// + /// Periodically calls the server till the long-running operation completes. + /// + /// + /// The interval between status requests to the server. + /// The interval can change based on information returned from the server. + /// For example, the server might communicate to the client that there is not reason to poll for status change sooner than some time. + /// + /// A used for the periodical service calls. + /// The last HTTP response received from the server. + /// + /// This method will periodically call UpdateStatusAsync till HasCompleted is true, then return the final result of the operation. + /// + public override ValueTask> WaitForCompletionAsync(TimeSpan pollingInterval, CancellationToken cancellationToken = default) => + this.DefaultWaitForCompletionAsync(pollingInterval, cancellationToken); + + /// + /// Calls the server to get updated status of the long-running operation. + /// + /// When true, the method will be executed asynchronously; otherwise, it will execute synchronously. + /// A used for the service call. + /// The HTTP response received from the server. + private async ValueTask UpdateStatusAsync(bool async, CancellationToken cancellationToken) + { + if (!_hasCompleted) + { + using DiagnosticScope scope = _diagnostics.CreateScope($"{nameof(AnalyzeHealthOperation)}.{nameof(UpdateStatus)}"); + scope.Start(); + + try + { + bool? _showStats = null; + int? _top = null; + int? _skip = null; + Response update = async + ? await _serviceClient.HealthStatusAsync(new Guid(Id), _top, _skip, _showStats, cancellationToken).ConfigureAwait(false) + : _serviceClient.HealthStatus(new Guid(Id), _top, _skip, _showStats, cancellationToken); + + _response = update.GetRawResponse(); + + if (update.Value.Status == JobStatus.Succeeded) + { + // we need to first assign a vaue and then mark the operation as completed to avoid race conditions + _value = new RecognizeHealthcareEntitiesResultCollection(new List() { /*update.Value.Results*/ }, + update.Value.Results.Statistics, + update.Value.Results.ModelVersion); + _hasCompleted = true; + } + else if (update.Value.Status == JobStatus.Failed) + { + _requestFailedException = await ClientCommon.CreateExceptionForFailedOperationAsync(async, _diagnostics, _response, update.Value.Results.Errors) + .ConfigureAwait(false); + _hasCompleted = true; + throw _requestFailedException; + } + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + return GetRawResponse(); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeHealthOptions.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeHealthOptions.cs new file mode 100644 index 0000000000000..03fcb4c4a5d81 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeHealthOptions.cs @@ -0,0 +1,20 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +namespace Azure.AI.TextAnalytics +{ + /// + /// Options that allow callers to specify details about how the operation + /// is run and what information is returned from it by the service. + /// + public class AnalyzeHealthOptions : TextAnalyticsRequestOptions + { + /// + /// Initializes a new instance of the + /// class. + /// + public AnalyzeHealthOptions() + { + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/ClientCommon.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/ClientCommon.cs new file mode 100644 index 0000000000000..a4d340de31c71 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/ClientCommon.cs @@ -0,0 +1,97 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using Azure.AI.TextAnalytics.Models; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.AI.TextAnalytics +{ + internal static class ClientCommon + { + /// + /// Used as part of argument validation. Attempts to create a from a string and + /// throws an in case of failure. + /// + /// The model identifier to be parsed into a . + /// The original parameter name of the . Used to create exceptions in case of failure. + /// The instance created from the . + /// Thrown when parsing fails. + public static Guid ValidateModelId(string modelId, string paramName) + { + Guid guid; + + try + { + guid = new Guid(modelId); + } + catch (Exception ex) when (ex is FormatException || ex is OverflowException) + { + throw new ArgumentException($"The {paramName} must be a valid GUID.", paramName, ex); + } + + return guid; + } + + public static string GetResponseHeader(ResponseHeaders responseHeaders, string headerName) + { + if (responseHeaders.TryGetValue(headerName, out var headerValue)) + { + return headerValue; + } + else + { + throw new KeyNotFoundException($"Header '{headerName}' was not present in the response sent by the server."); + } + } + + public static async ValueTask CreateExceptionForFailedOperationAsync(bool async, ClientDiagnostics diagnostics, Response response, IReadOnlyList errors, string errorMessage = default) + { + string errorCode = default; + + if (errors.Count > 0) + { + errorCode = errors[0].Error.Code; + errorMessage ??= errors[0].Error.Message; + } + + var errorInfo = new Dictionary(); + int index = 0; + foreach (var error in errors) + { + errorInfo.Add($"error-{index}", $"{error.Error.Code}: {error.Error.Message}"); + index++; + } + + return async + ? await diagnostics.CreateRequestFailedExceptionAsync(response, errorMessage, errorCode, errorInfo).ConfigureAwait(false) + : diagnostics.CreateRequestFailedException(response, errorMessage, errorCode, errorInfo); + } + + public static async ValueTask CreateExceptionForFailedOperationAsync(bool async, ClientDiagnostics diagnostics, Response response, IReadOnlyList errors, string errorMessage = default) + { + string errorCode = default; + + if (errors.Count > 0) + { + errorCode = errors[0].Code; + errorMessage ??= errors[0].Message; + } + + var errorInfo = new Dictionary(); + int index = 0; + foreach (var error in errors) + { + errorInfo.Add($"error-{index}", $"{error.Code}: {error.Message}"); + index++; + } + + return async + ? await diagnostics.CreateRequestFailedExceptionAsync(response, errorMessage, errorCode, errorInfo).ConfigureAwait(false) + : diagnostics.CreateRequestFailedException(response, errorMessage, errorCode, errorInfo); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntities.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntities.cs new file mode 100644 index 0000000000000..f4989b4df5748 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntities.cs @@ -0,0 +1,109 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; +using System.Globalization; +using System.Linq; +using System.Text.RegularExpressions; +using Azure.AI.TextAnalytics.Models; + +namespace Azure.AI.TextAnalytics +{ + public partial class DocumentHealthcareEntities + { + /// Initializes a new instance of DocumentHealthcareEntities. + /// Unique, non-empty document identifier. + /// Healthcare entities. + /// Healthcare entity relations. + /// Warnings encountered while processing document. + /// , , , or is null. + internal DocumentHealthcareEntities(string id, IEnumerable entities, IEnumerable relations, IEnumerable warnings) + { + if (id == null) + { + throw new ArgumentNullException(nameof(id)); + } + if (entities == null) + { + throw new ArgumentNullException(nameof(entities)); + } + if (relations == null) + { + throw new ArgumentNullException(nameof(relations)); + } + if (warnings == null) + { + throw new ArgumentNullException(nameof(warnings)); + } + + Id = id; + Entities = entities.ToList(); + Relations = ResolveHealthcareRelations(entities, relations); + Warnings = Transforms.ConvertToWarnings(warnings.ToList()); + } + + /// Initializes a new instance of DocumentHealthcareEntities. + /// Unique, non-empty document identifier. + /// Healthcare entities. + /// Healthcare entity relations. + /// Warnings encountered while processing document. + /// if showStats=true was specified in the request this field will contain information about the document payload. + internal DocumentHealthcareEntities(string id, IReadOnlyList entities, IReadOnlyList relations, IReadOnlyList warnings, TextDocumentStatistics? statistics) + { + Id = id; + Entities = entities; + Relations = ResolveHealthcareRelations(entities, relations); + Warnings = Transforms.ConvertToWarnings(warnings); + Statistics = statistics; + } + + internal static IReadOnlyList ResolveHealthcareRelations(IEnumerable entities, IEnumerable relations) + { + List list = new List(); + foreach (HealthcareRelationInternal relation in relations) + { + list.Add(new HealthcareRelation(relation.RelationType, + relation.Bidirectional, + ResolveHealthcareEntity(entities, relation.Source), + ResolveHealthcareEntity(entities, relation.Target))); + } + + return list; + } + + /// Unique, non-empty document identifier. + public string Id { get; } + /// Healthcare entities. + public IReadOnlyList Entities { get; } + /// Healthcare entity relations. + public IReadOnlyList Relations { get; } + /// Warnings encountered while processing document. + public IReadOnlyList Warnings { get; } + /// if showStats=true was specified in the request this field will contain information about the document payload. + public TextDocumentStatistics? Statistics { get; } + + private static Regex _healthcareEntityRegex = new Regex(@"\#/results/documents\/(?\d*)\/entities\/(?\d*)$", RegexOptions.Compiled, TimeSpan.FromSeconds(2)); + + internal static HealthcareEntity ResolveHealthcareEntity(IEnumerable entities, string reference) + { + var healthcareEntityMatch = _healthcareEntityRegex.Match(reference); + if (healthcareEntityMatch.Success) + { + int entityIndex = int.Parse(healthcareEntityMatch.Groups["entityIndex"].Value, CultureInfo.InvariantCulture); + //int entityIndex = int.Parse(healthcareEntityMatch.Groups[2].Value, CultureInfo.InvariantCulture); + + if (entityIndex < entities.Count()) + { + var entity = entities.ElementAt(entityIndex); + return new HealthcareEntity(entity.Text, entity.Category, + entity.Offset, entity.Length, entity.ConfidenceScore, + entity.IsNegated); + } + } + + throw new InvalidOperationException($"Failed to parse element reference: {reference}"); + } + + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntitiesCollection.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntitiesCollection.cs new file mode 100644 index 0000000000000..a4eea41575312 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntitiesCollection.cs @@ -0,0 +1,25 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Collections.Generic; +using System.Collections.ObjectModel; + +namespace Azure.AI.TextAnalytics +{ + /// + /// Collection of objects in a document. + /// + public class DocumentHealthcareEntitiesCollection : ReadOnlyCollection + { + internal DocumentHealthcareEntitiesCollection(IList entities, IList warnings) + : base(entities) + { + Warnings = new ReadOnlyCollection(warnings); + } + + /// + /// Warnings encountered while processing the document. + /// + public IReadOnlyCollection Warnings { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntitiesInternal.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntitiesInternal.cs new file mode 100644 index 0000000000000..0071611303222 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntitiesInternal.cs @@ -0,0 +1,29 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; +using System.Globalization; +using System.Linq; +using System.Text.RegularExpressions; +using Azure.AI.TextAnalytics.Models; +using Azure.Core; +using Microsoft.Extensions.Azure; + +namespace Azure.AI.TextAnalytics +{ + [CodeGenModel("DocumentHealthcareEntities")] + internal partial class DocumentHealthcareEntitiesInternal + { + /// Unique, non-empty document identifier. + public string Id { get; } + /// Healthcare entities. + public IReadOnlyList Entities { get; } + /// Healthcare entity relations. + public IReadOnlyList Relations { get; } + /// Warnings encountered while processing document. + public IReadOnlyList Warnings { get; } + /// if showStats=true was specified in the request this field will contain information about the document payload. + public TextDocumentStatistics? Statistics { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.Serialization.cs index 66cdedff8ebe8..a337055d10151 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.Serialization.cs @@ -26,7 +26,7 @@ internal static AnalyzeJobState DeserializeAnalyzeJobState(JsonElement element) Optional expirationDateTime = default; Guid jobId = default; DateTimeOffset lastUpdateDateTime = default; - State status = default; + JobStatus status = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("errors")) @@ -96,7 +96,7 @@ internal static AnalyzeJobState DeserializeAnalyzeJobState(JsonElement element) } if (property.NameEquals("status")) { - status = property.Value.GetString().ToState(); + status = new JobStatus(property.Value.GetString()); continue; } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.cs index b09f806fd181e..14e94ea7ee03b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.cs @@ -22,7 +22,7 @@ internal partial class AnalyzeJobState : JobMetadata /// . /// . /// is null. - internal AnalyzeJobState(DateTimeOffset createdDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, State status, TasksStateTasks tasks) : base(createdDateTime, jobId, lastUpdateDateTime, status) + internal AnalyzeJobState(DateTimeOffset createdDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, JobStatus status, TasksStateTasks tasks) : base(createdDateTime, jobId, lastUpdateDateTime, status) { if (tasks == null) { @@ -44,7 +44,7 @@ internal AnalyzeJobState(DateTimeOffset createdDateTime, Guid jobId, DateTimeOff /// if showStats=true was specified in the request this field will contain information about the request payload. /// . /// . - internal AnalyzeJobState(DateTimeOffset createdDateTime, string displayName, DateTimeOffset? expirationDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, State status, IReadOnlyList errors, TextDocumentBatchStatistics statistics, TasksStateTasks tasks, string nextLink) : base(createdDateTime, displayName, expirationDateTime, jobId, lastUpdateDateTime, status) + internal AnalyzeJobState(DateTimeOffset createdDateTime, string displayName, DateTimeOffset? expirationDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, JobStatus status, IReadOnlyList errors, TextDocumentBatchStatistics statistics, TasksStateTasks tasks, string nextLink) : base(createdDateTime, displayName, expirationDateTime, jobId, lastUpdateDateTime, status) { Errors = errors; Statistics = statistics; diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/DocumentHealthcareEntities.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/DocumentHealthcareEntitiesInternal.Serialization.cs similarity index 78% rename from sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/DocumentHealthcareEntities.Serialization.cs rename to sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/DocumentHealthcareEntitiesInternal.Serialization.cs index 7ae482fe96066..2cc5178a37712 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/DocumentHealthcareEntities.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/DocumentHealthcareEntitiesInternal.Serialization.cs @@ -7,18 +7,18 @@ using System.Collections.Generic; using System.Text.Json; -using Azure.AI.TextAnalytics; +using Azure.AI.TextAnalytics.Models; using Azure.Core; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { - internal partial class DocumentHealthcareEntities + internal partial class DocumentHealthcareEntitiesInternal { - internal static DocumentHealthcareEntities DeserializeDocumentHealthcareEntities(JsonElement element) + internal static DocumentHealthcareEntitiesInternal DeserializeDocumentHealthcareEntitiesInternal(JsonElement element) { string id = default; IReadOnlyList entities = default; - IReadOnlyList relations = default; + IReadOnlyList relations = default; IReadOnlyList warnings = default; Optional statistics = default; foreach (var property in element.EnumerateObject()) @@ -40,10 +40,10 @@ internal static DocumentHealthcareEntities DeserializeDocumentHealthcareEntities } if (property.NameEquals("relations")) { - List array = new List(); + List array = new List(); foreach (var item in property.Value.EnumerateArray()) { - array.Add(HealthcareRelation.DeserializeHealthcareRelation(item)); + array.Add(HealthcareRelationInternal.DeserializeHealthcareRelationInternal(item)); } relations = array; continue; @@ -69,7 +69,7 @@ internal static DocumentHealthcareEntities DeserializeDocumentHealthcareEntities continue; } } - return new DocumentHealthcareEntities(id, entities, relations, warnings, Optional.ToNullable(statistics)); + return new DocumentHealthcareEntitiesInternal(id, entities, relations, warnings, Optional.ToNullable(statistics)); } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/DocumentHealthcareEntities.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/DocumentHealthcareEntitiesInternal.cs similarity index 62% rename from sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/DocumentHealthcareEntities.cs rename to sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/DocumentHealthcareEntitiesInternal.cs index f7f2f5a056d06..8edffa1c4a9d0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/DocumentHealthcareEntities.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/DocumentHealthcareEntitiesInternal.cs @@ -8,20 +8,20 @@ using System; using System.Collections.Generic; using System.Linq; -using Azure.AI.TextAnalytics; +using Azure.AI.TextAnalytics.Models; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { /// The DocumentHealthcareEntities. - internal partial class DocumentHealthcareEntities + internal partial class DocumentHealthcareEntitiesInternal { - /// Initializes a new instance of DocumentHealthcareEntities. + /// Initializes a new instance of DocumentHealthcareEntitiesInternal. /// Unique, non-empty document identifier. /// Healthcare entities. /// Healthcare entity relations. /// Warnings encountered while processing document. /// , , , or is null. - internal DocumentHealthcareEntities(string id, IEnumerable entities, IEnumerable relations, IEnumerable warnings) + internal DocumentHealthcareEntitiesInternal(string id, IEnumerable entities, IEnumerable relations, IEnumerable warnings) { if (id == null) { @@ -46,13 +46,13 @@ internal DocumentHealthcareEntities(string id, IEnumerable ent Warnings = warnings.ToList(); } - /// Initializes a new instance of DocumentHealthcareEntities. + /// Initializes a new instance of DocumentHealthcareEntitiesInternal. /// Unique, non-empty document identifier. /// Healthcare entities. /// Healthcare entity relations. /// Warnings encountered while processing document. /// if showStats=true was specified in the request this field will contain information about the document payload. - internal DocumentHealthcareEntities(string id, IReadOnlyList entities, IReadOnlyList relations, IReadOnlyList warnings, TextDocumentStatistics? statistics) + internal DocumentHealthcareEntitiesInternal(string id, IReadOnlyList entities, IReadOnlyList relations, IReadOnlyList warnings, TextDocumentStatistics? statistics) { Id = id; Entities = entities; @@ -60,16 +60,5 @@ internal DocumentHealthcareEntities(string id, IReadOnlyList e Warnings = warnings; Statistics = statistics; } - - /// Unique, non-empty document identifier. - public string Id { get; } - /// Healthcare entities. - public IReadOnlyList Entities { get; } - /// Healthcare entity relations. - public IReadOnlyList Relations { get; } - /// Warnings encountered while processing document. - public IReadOnlyList Warnings { get; } - /// if showStats=true was specified in the request this field will contain information about the document payload. - public TextDocumentStatistics? Statistics { get; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.Serialization.cs index 1f6eaca497eeb..a894e1495ab24 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.Serialization.cs @@ -7,7 +7,6 @@ using System; using System.Text.Json; -using Azure.AI.TextAnalytics.Models; using Azure.Core; namespace Azure.AI.TextAnalytics @@ -19,7 +18,7 @@ internal static EntityRecognitionPiiTasksItem DeserializeEntityRecognitionPiiTas Optional results = default; DateTimeOffset lastUpdateDateTime = default; string name = default; - State status = default; + JobStatus status = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("results")) @@ -44,7 +43,7 @@ internal static EntityRecognitionPiiTasksItem DeserializeEntityRecognitionPiiTas } if (property.NameEquals("status")) { - status = property.Value.GetString().ToState(); + status = new JobStatus(property.Value.GetString()); continue; } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.cs index 3d09cc63d2be1..b9f2e0a47f71a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.cs @@ -6,7 +6,6 @@ #nullable disable using System; -using Azure.AI.TextAnalytics.Models; namespace Azure.AI.TextAnalytics { @@ -18,7 +17,7 @@ public partial class EntityRecognitionPiiTasksItem : TaskState /// . /// . /// is null. - internal EntityRecognitionPiiTasksItem(DateTimeOffset lastUpdateDateTime, string name, State status) : base(lastUpdateDateTime, name, status) + internal EntityRecognitionPiiTasksItem(DateTimeOffset lastUpdateDateTime, string name, JobStatus status) : base(lastUpdateDateTime, name, status) { if (name == null) { @@ -32,7 +31,7 @@ internal EntityRecognitionPiiTasksItem(DateTimeOffset lastUpdateDateTime, string /// . /// . /// is null. - internal EntityRecognitionPiiTasksItem(DateTimeOffset lastUpdateDateTime, string name, State status, PiiEntitiesResult results) : base(lastUpdateDateTime, name, status) + internal EntityRecognitionPiiTasksItem(DateTimeOffset lastUpdateDateTime, string name, JobStatus status, PiiEntitiesResult results) : base(lastUpdateDateTime, name, status) { if (name == null) { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.Serialization.cs index b020aa84787ef..c0c58f6b2b0b1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.Serialization.cs @@ -19,7 +19,7 @@ internal static EntityRecognitionTasksItem DeserializeEntityRecognitionTasksItem Optional results = default; DateTimeOffset lastUpdateDateTime = default; string name = default; - State status = default; + JobStatus status = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("results")) @@ -44,7 +44,7 @@ internal static EntityRecognitionTasksItem DeserializeEntityRecognitionTasksItem } if (property.NameEquals("status")) { - status = property.Value.GetString().ToState(); + status = new JobStatus(property.Value.GetString()); continue; } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.cs index 7010dea066f2e..c291dc6cabe19 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.cs @@ -18,7 +18,7 @@ public partial class EntityRecognitionTasksItem : TaskState /// . /// . /// is null. - internal EntityRecognitionTasksItem(DateTimeOffset lastUpdateDateTime, string name, State status) : base(lastUpdateDateTime, name, status) + internal EntityRecognitionTasksItem(DateTimeOffset lastUpdateDateTime, string name, JobStatus status) : base(lastUpdateDateTime, name, status) { if (name == null) { @@ -32,7 +32,7 @@ internal EntityRecognitionTasksItem(DateTimeOffset lastUpdateDateTime, string na /// . /// . /// is null. - internal EntityRecognitionTasksItem(DateTimeOffset lastUpdateDateTime, string name, State status, EntitiesResult results) : base(lastUpdateDateTime, name, status) + internal EntityRecognitionTasksItem(DateTimeOffset lastUpdateDateTime, string name, JobStatus status, EntitiesResult results) : base(lastUpdateDateTime, name, status) { if (name == null) { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntity.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntity.Serialization.cs index 03f417f45cef6..8fe86c4c959f3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntity.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntity.Serialization.cs @@ -7,11 +7,12 @@ using System.Collections.Generic; using System.Text.Json; +using Azure.AI.TextAnalytics; using Azure.Core; namespace Azure.AI.TextAnalytics.Models { - internal partial class HealthcareEntity + public partial class HealthcareEntity { internal static HealthcareEntity DeserializeHealthcareEntity(JsonElement element) { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntity.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntity.cs index 8640032336a20..6842152a11bac 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntity.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntity.cs @@ -13,7 +13,7 @@ namespace Azure.AI.TextAnalytics.Models { /// The HealthcareEntity. - internal partial class HealthcareEntity : Entity + public partial class HealthcareEntity : Entity { /// Initializes a new instance of HealthcareEntity. /// Entity text as appears in the request. @@ -52,9 +52,5 @@ internal HealthcareEntity(string text, string category, string subcategory, int IsNegated = isNegated; Links = links; } - - public bool IsNegated { get; } - /// Entity references in known data sources. - public IReadOnlyList Links { get; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityLink.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityLink.Serialization.cs index 3d6f4c40a79ac..41bcc3c65d054 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityLink.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityLink.Serialization.cs @@ -8,9 +8,9 @@ using System.Text.Json; using Azure.Core; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { - internal partial class HealthcareEntityLink + public partial class HealthcareEntityLink { internal static HealthcareEntityLink DeserializeHealthcareEntityLink(JsonElement element) { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityLink.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityLink.cs index 6954ae8ce5df1..6ad7ef0d584c2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityLink.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntityLink.cs @@ -7,10 +7,10 @@ using System; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { /// The HealthcareEntityLink. - internal partial class HealthcareEntityLink + public partial class HealthcareEntityLink { /// Initializes a new instance of HealthcareEntityLink. /// Entity Catalog. Examples include: UMLS, CHV, MSH, etc. diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.Serialization.cs index 23ce0a5dd6ae9..90ac459bed3cb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.Serialization.cs @@ -7,6 +7,7 @@ using System; using System.Text.Json; +using Azure.AI.TextAnalytics; using Azure.Core; namespace Azure.AI.TextAnalytics.Models @@ -22,7 +23,7 @@ internal static HealthcareJobState DeserializeHealthcareJobState(JsonElement ele Optional expirationDateTime = default; Guid jobId = default; DateTimeOffset lastUpdateDateTime = default; - State status = default; + JobStatus status = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("results")) @@ -72,7 +73,7 @@ internal static HealthcareJobState DeserializeHealthcareJobState(JsonElement ele } if (property.NameEquals("status")) { - status = property.Value.GetString().ToState(); + status = new JobStatus(property.Value.GetString()); continue; } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.cs index cf96fdae08965..de628ab51f11d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.cs @@ -6,6 +6,7 @@ #nullable disable using System; +using Azure.AI.TextAnalytics; namespace Azure.AI.TextAnalytics.Models { @@ -17,7 +18,7 @@ internal partial class HealthcareJobState : JobMetadata /// . /// . /// . - internal HealthcareJobState(DateTimeOffset createdDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, State status) : base(createdDateTime, jobId, lastUpdateDateTime, status) + internal HealthcareJobState(DateTimeOffset createdDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, JobStatus status) : base(createdDateTime, jobId, lastUpdateDateTime, status) { } @@ -30,7 +31,7 @@ internal HealthcareJobState(DateTimeOffset createdDateTime, Guid jobId, DateTime /// . /// . /// . - internal HealthcareJobState(DateTimeOffset createdDateTime, string displayName, DateTimeOffset? expirationDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, State status, HealthcareResult results, string nextLink) : base(createdDateTime, displayName, expirationDateTime, jobId, lastUpdateDateTime, status) + internal HealthcareJobState(DateTimeOffset createdDateTime, string displayName, DateTimeOffset? expirationDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, JobStatus status, HealthcareResult results, string nextLink) : base(createdDateTime, displayName, expirationDateTime, jobId, lastUpdateDateTime, status) { Results = results; NextLink = nextLink; diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareRelation.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareRelationInternal.Serialization.cs similarity index 80% rename from sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareRelation.Serialization.cs rename to sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareRelationInternal.Serialization.cs index a9c20522977f0..093f62df46a11 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareRelation.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareRelationInternal.Serialization.cs @@ -8,11 +8,11 @@ using System.Text.Json; using Azure.Core; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { - internal partial class HealthcareRelation + internal partial class HealthcareRelationInternal { - internal static HealthcareRelation DeserializeHealthcareRelation(JsonElement element) + internal static HealthcareRelationInternal DeserializeHealthcareRelationInternal(JsonElement element) { string relationType = default; bool bidirectional = default; @@ -41,7 +41,7 @@ internal static HealthcareRelation DeserializeHealthcareRelation(JsonElement ele continue; } } - return new HealthcareRelation(relationType, bidirectional, source, target); + return new HealthcareRelationInternal(relationType, bidirectional, source, target); } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareRelation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareRelationInternal.cs similarity index 89% rename from sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareRelation.cs rename to sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareRelationInternal.cs index 1ed92ddf9e494..3faf1c0e641bc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareRelation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareRelationInternal.cs @@ -7,18 +7,18 @@ using System; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { /// The HealthcareRelation. - internal partial class HealthcareRelation + internal partial class HealthcareRelationInternal { - /// Initializes a new instance of HealthcareRelation. + /// Initializes a new instance of HealthcareRelationInternal. /// Type of relation. Examples include: `DosageOfMedication` or 'FrequencyOfMedication', etc. /// If true the relation between the entities is bidirectional, otherwise directionality is source to target. /// Reference link to the source entity. /// Reference link to the target entity. /// , , or is null. - internal HealthcareRelation(string relationType, bool bidirectional, string source, string target) + internal HealthcareRelationInternal(string relationType, bool bidirectional, string source, string target) { if (relationType == null) { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareResult.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareResult.Serialization.cs index 8173798547344..3db5e8d29a142 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareResult.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareResult.Serialization.cs @@ -16,7 +16,7 @@ internal partial class HealthcareResult { internal static HealthcareResult DeserializeHealthcareResult(JsonElement element) { - IReadOnlyList documents = default; + IReadOnlyList documents = default; IReadOnlyList errors = default; Optional statistics = default; string modelVersion = default; @@ -24,10 +24,10 @@ internal static HealthcareResult DeserializeHealthcareResult(JsonElement element { if (property.NameEquals("documents")) { - List array = new List(); + List array = new List(); foreach (var item in property.Value.EnumerateArray()) { - array.Add(DocumentHealthcareEntities.DeserializeDocumentHealthcareEntities(item)); + array.Add(DocumentHealthcareEntitiesInternal.DeserializeDocumentHealthcareEntitiesInternal(item)); } documents = array; continue; diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareResult.cs index 1ddfb7ae394a9..aa8d7750ae3ff 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareResult.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareResult.cs @@ -20,7 +20,7 @@ internal partial class HealthcareResult /// Errors by document id. /// This field indicates which model is used for scoring. /// , , or is null. - internal HealthcareResult(IEnumerable documents, IEnumerable errors, string modelVersion) + internal HealthcareResult(IEnumerable documents, IEnumerable errors, string modelVersion) { if (documents == null) { @@ -45,7 +45,7 @@ internal HealthcareResult(IEnumerable documents, IEn /// Errors by document id. /// if showStats=true was specified in the request this field will contain information about the request payload. /// This field indicates which model is used for scoring. - internal HealthcareResult(IReadOnlyList documents, IReadOnlyList errors, TextDocumentBatchStatistics statistics, string modelVersion) + internal HealthcareResult(IReadOnlyList documents, IReadOnlyList errors, TextDocumentBatchStatistics statistics, string modelVersion) { Documents = documents; Errors = errors; @@ -54,7 +54,7 @@ internal HealthcareResult(IReadOnlyList documents, I } /// Response by document. - public IReadOnlyList Documents { get; } + public IReadOnlyList Documents { get; } /// Errors by document id. public IReadOnlyList Errors { get; } /// if showStats=true was specified in the request this field will contain information about the request payload. diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.Serialization.cs index d977a0aad35ab..8df6c1cdbd0a2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.Serialization.cs @@ -7,6 +7,7 @@ using System; using System.Text.Json; +using Azure.AI.TextAnalytics; using Azure.Core; namespace Azure.AI.TextAnalytics.Models @@ -20,7 +21,7 @@ internal static JobMetadata DeserializeJobMetadata(JsonElement element) Optional expirationDateTime = default; Guid jobId = default; DateTimeOffset lastUpdateDateTime = default; - State status = default; + JobStatus status = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("createdDateTime")) @@ -55,7 +56,7 @@ internal static JobMetadata DeserializeJobMetadata(JsonElement element) } if (property.NameEquals("status")) { - status = property.Value.GetString().ToState(); + status = new JobStatus(property.Value.GetString()); continue; } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.cs index be068f2540286..e87d289a22df7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.cs @@ -6,6 +6,7 @@ #nullable disable using System; +using Azure.AI.TextAnalytics; namespace Azure.AI.TextAnalytics.Models { @@ -17,7 +18,7 @@ internal partial class JobMetadata /// . /// . /// . - internal JobMetadata(DateTimeOffset createdDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, State status) + internal JobMetadata(DateTimeOffset createdDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, JobStatus status) { CreatedDateTime = createdDateTime; JobId = jobId; @@ -32,7 +33,7 @@ internal JobMetadata(DateTimeOffset createdDateTime, Guid jobId, DateTimeOffset /// . /// . /// . - internal JobMetadata(DateTimeOffset createdDateTime, string displayName, DateTimeOffset? expirationDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, State status) + internal JobMetadata(DateTimeOffset createdDateTime, string displayName, DateTimeOffset? expirationDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, JobStatus status) { CreatedDateTime = createdDateTime; DisplayName = displayName; @@ -47,6 +48,6 @@ internal JobMetadata(DateTimeOffset createdDateTime, string displayName, DateTim public DateTimeOffset? ExpirationDateTime { get; } public Guid JobId { get; } public DateTimeOffset LastUpdateDateTime { get; } - public State Status { get; } + public JobStatus Status { get; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobStatus.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobStatus.cs new file mode 100644 index 0000000000000..b9dea58fa53cc --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobStatus.cs @@ -0,0 +1,66 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.ComponentModel; + +namespace Azure.AI.TextAnalytics +{ + /// The State. + public readonly partial struct JobStatus : IEquatable + { + private readonly string _value; + + /// Determines if two values are the same. + /// is null. + public JobStatus(string value) + { + _value = value ?? throw new ArgumentNullException(nameof(value)); + } + + private const string NotstartedValue = "notstarted"; + private const string RunningValue = "running"; + private const string SucceededValue = "succeeded"; + private const string FailedValue = "failed"; + private const string CancelledValue = "cancelled"; + private const string CancellingValue = "cancelling"; + private const string PartiallycompletedValue = "partiallycompleted"; + + /// notstarted. + public static JobStatus Notstarted { get; } = new JobStatus(NotstartedValue); + /// running. + public static JobStatus Running { get; } = new JobStatus(RunningValue); + /// succeeded. + public static JobStatus Succeeded { get; } = new JobStatus(SucceededValue); + /// failed. + public static JobStatus Failed { get; } = new JobStatus(FailedValue); + /// cancelled. + public static JobStatus Cancelled { get; } = new JobStatus(CancelledValue); + /// cancelling. + public static JobStatus Cancelling { get; } = new JobStatus(CancellingValue); + /// partiallycompleted. + public static JobStatus Partiallycompleted { get; } = new JobStatus(PartiallycompletedValue); + /// Determines if two values are the same. + public static bool operator ==(JobStatus left, JobStatus right) => left.Equals(right); + /// Determines if two values are not the same. + public static bool operator !=(JobStatus left, JobStatus right) => !left.Equals(right); + /// Converts a string to a . + public static implicit operator JobStatus(string value) => new JobStatus(value); + + /// + [EditorBrowsable(EditorBrowsableState.Never)] + public override bool Equals(object obj) => obj is JobStatus other && Equals(other); + /// + public bool Equals(JobStatus other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase); + + /// + [EditorBrowsable(EditorBrowsableState.Never)] + public override int GetHashCode() => _value?.GetHashCode() ?? 0; + /// + public override string ToString() => _value; + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.Serialization.cs index aa1376d37b430..9ce04741c5a56 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.Serialization.cs @@ -19,7 +19,7 @@ internal static KeyPhraseExtractionTasksItem DeserializeKeyPhraseExtractionTasks Optional results = default; DateTimeOffset lastUpdateDateTime = default; string name = default; - State status = default; + JobStatus status = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("results")) @@ -44,7 +44,7 @@ internal static KeyPhraseExtractionTasksItem DeserializeKeyPhraseExtractionTasks } if (property.NameEquals("status")) { - status = property.Value.GetString().ToState(); + status = new JobStatus(property.Value.GetString()); continue; } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.cs index 71f5bbd475c0e..2a4eb49d066ea 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.cs @@ -18,7 +18,7 @@ public partial class KeyPhraseExtractionTasksItem : TaskState /// . /// . /// is null. - internal KeyPhraseExtractionTasksItem(DateTimeOffset lastUpdateDateTime, string name, State status) : base(lastUpdateDateTime, name, status) + internal KeyPhraseExtractionTasksItem(DateTimeOffset lastUpdateDateTime, string name, JobStatus status) : base(lastUpdateDateTime, name, status) { if (name == null) { @@ -32,7 +32,7 @@ internal KeyPhraseExtractionTasksItem(DateTimeOffset lastUpdateDateTime, string /// . /// . /// is null. - internal KeyPhraseExtractionTasksItem(DateTimeOffset lastUpdateDateTime, string name, State status, KeyPhraseResult results) : base(lastUpdateDateTime, name, status) + internal KeyPhraseExtractionTasksItem(DateTimeOffset lastUpdateDateTime, string name, JobStatus status, KeyPhraseResult results) : base(lastUpdateDateTime, name, status) { if (name == null) { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/State.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/State.Serialization.cs deleted file mode 100644 index 01ee7a40f04c2..0000000000000 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/State.Serialization.cs +++ /dev/null @@ -1,38 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -// - -#nullable disable - -using System; - -namespace Azure.AI.TextAnalytics.Models -{ - internal static class StateExtensions - { - public static string ToSerialString(this State value) => value switch - { - State.Notstarted => "notstarted", - State.Running => "running", - State.Succeeded => "succeeded", - State.Failed => "failed", - State.Cancelled => "cancelled", - State.Cancelling => "cancelling", - State.Partiallycompleted => "partiallycompleted", - _ => throw new ArgumentOutOfRangeException(nameof(value), value, "Unknown State value.") - }; - - public static State ToState(this string value) - { - if (string.Equals(value, "notstarted", StringComparison.InvariantCultureIgnoreCase)) return State.Notstarted; - if (string.Equals(value, "running", StringComparison.InvariantCultureIgnoreCase)) return State.Running; - if (string.Equals(value, "succeeded", StringComparison.InvariantCultureIgnoreCase)) return State.Succeeded; - if (string.Equals(value, "failed", StringComparison.InvariantCultureIgnoreCase)) return State.Failed; - if (string.Equals(value, "cancelled", StringComparison.InvariantCultureIgnoreCase)) return State.Cancelled; - if (string.Equals(value, "cancelling", StringComparison.InvariantCultureIgnoreCase)) return State.Cancelling; - if (string.Equals(value, "partiallycompleted", StringComparison.InvariantCultureIgnoreCase)) return State.Partiallycompleted; - throw new ArgumentOutOfRangeException(nameof(value), value, "Unknown State value."); - } - } -} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/State.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/State.cs deleted file mode 100644 index dd84e497b4d78..0000000000000 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/State.cs +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -// - -#nullable disable - -namespace Azure.AI.TextAnalytics.Models -{ - /// The State. - public enum State - { - /// notstarted. - Notstarted, - /// running. - Running, - /// succeeded. - Succeeded, - /// failed. - Failed, - /// cancelled. - Cancelled, - /// cancelling. - Cancelling, - /// partiallycompleted. - Partiallycompleted - } -} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.Serialization.cs index e41980eb411f7..bfbf35ab4efb6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.Serialization.cs @@ -7,7 +7,6 @@ using System; using System.Text.Json; -using Azure.AI.TextAnalytics.Models; using Azure.Core; namespace Azure.AI.TextAnalytics @@ -18,7 +17,7 @@ internal static TaskState DeserializeTaskState(JsonElement element) { DateTimeOffset lastUpdateDateTime = default; string name = default; - State status = default; + JobStatus status = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("lastUpdateDateTime")) @@ -33,7 +32,7 @@ internal static TaskState DeserializeTaskState(JsonElement element) } if (property.NameEquals("status")) { - status = property.Value.GetString().ToState(); + status = new JobStatus(property.Value.GetString()); continue; } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.cs index 587b20fb392ea..3313af9a7247b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.cs @@ -6,7 +6,6 @@ #nullable disable using System; -using Azure.AI.TextAnalytics.Models; namespace Azure.AI.TextAnalytics { @@ -18,7 +17,7 @@ public partial class TaskState /// . /// . /// is null. - internal TaskState(DateTimeOffset lastUpdateDateTime, string name, State status) + internal TaskState(DateTimeOffset lastUpdateDateTime, string name, JobStatus status) { if (name == null) { @@ -32,6 +31,6 @@ internal TaskState(DateTimeOffset lastUpdateDateTime, string name, State status) public DateTimeOffset LastUpdateDateTime { get; } public string Name { get; } - public State Status { get; } + public JobStatus Status { get; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntity.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntity.cs new file mode 100644 index 0000000000000..c6c68ba958cfe --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntity.cs @@ -0,0 +1,25 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Collections.Generic; +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + [CodeGenModel("HealthcareEntity")] + public partial class HealthcareEntity + { + /// + /// IsNegated + /// + [CodeGenMember("IsNegated")] + public bool IsNegated { get; } + + /// + /// Links + /// + [CodeGenMember("Links")] + public IReadOnlyList Links { get; } + + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntityLink.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntityLink.cs new file mode 100644 index 0000000000000..999188671eb85 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntityLink.cs @@ -0,0 +1,12 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + [CodeGenModel("HealthcareEntityLink")] + public partial class HealthcareEntityLink + { + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareRelation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareRelation.cs new file mode 100644 index 0000000000000..d29a2f885618a --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareRelation.cs @@ -0,0 +1,79 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; +using System.Globalization; +using System.Linq; +using System.Text.RegularExpressions; +using Azure.AI.TextAnalytics.Models; +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + public partial class HealthcareRelation + { + /// Initializes a new instance of HealthcareRelation. + /// Type of relation. Examples include: `DosageOfMedication` or 'FrequencyOfMedication', etc. + /// If true the relation between the entities is bidirectional, otherwise directionality is source to target. + /// Reference link to the source entity. + /// Reference link to the target entity. + /// , , or is null. + internal HealthcareRelation(string relationType, bool bidirectional, HealthcareEntity source, HealthcareEntity target) + { + if (relationType == null) + { + throw new ArgumentNullException(nameof(relationType)); + } + if (source == null) + { + throw new ArgumentNullException(nameof(source)); + } + if (target == null) + { + throw new ArgumentNullException(nameof(target)); + } + + RelationType = relationType; + Bidirectional = bidirectional; + Source = source; + Target = target; + } + + private static Regex _healthcareEntityRegex = new Regex(@"\#/results/documents\/(?\d*)\/entities\/(?\d*)$", RegexOptions.Compiled, TimeSpan.FromSeconds(2)); + + internal static HealthcareEntity ResolveHealthcareEntity(IEnumerable entities, string reference) + { + var healthcareEntityMatch = _healthcareEntityRegex.Match(reference); + if (healthcareEntityMatch.Success) + { + int entityIndex = int.Parse(healthcareEntityMatch.Groups["entityIndex"].Value, CultureInfo.InvariantCulture); + //int entityIndex = int.Parse(healthcareEntityMatch.Groups[2].Value, CultureInfo.InvariantCulture); + + if (entityIndex < entities.Count()) + { + var entity = entities.ElementAt(entityIndex); + return new HealthcareEntity(entity.Text, entity.Category, + entity.Offset, entity.Length, entity.ConfidenceScore, + entity.IsNegated); + } + } + + throw new InvalidOperationException($"Failed to parse element reference: {reference}"); + } + /// + /// Source Entity + /// + public HealthcareEntity Source { get; } + + /// + /// Target Entity + /// + public HealthcareEntity Target { get; } + + /// Type of relation. Examples include: `DosageOfMedication` or 'FrequencyOfMedication', etc. + public string RelationType { get; } + /// If true the relation between the entities is bidirectional, otherwise directionality is source to target. + public bool Bidirectional { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareRelationInternal.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareRelationInternal.cs new file mode 100644 index 0000000000000..f247dbee60cea --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareRelationInternal.cs @@ -0,0 +1,12 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + [CodeGenModel("HealthcareRelation")] + internal partial class HealthcareRelationInternal + { + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobStatus.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobStatus.cs new file mode 100644 index 0000000000000..c7cf952d70916 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobStatus.cs @@ -0,0 +1,14 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Collections.Generic; +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + [CodeGenModel("State")] + public partial struct JobStatus + { + + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/OperationHelpers.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/OperationHelpers.cs new file mode 100644 index 0000000000000..40636c644ce90 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/OperationHelpers.cs @@ -0,0 +1,62 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Threading; +using System.Threading.Tasks; + +#nullable enable + +namespace Azure.Core +{ + internal static class OperationHelpers + { + public static TimeSpan DefaultPollingInterval { get; } = TimeSpan.FromSeconds(1); + + public static T GetValue(ref T? value) where T : class + { + if (value is null) + { + throw new InvalidOperationException("The operation has not completed yet."); + } + + return value; + } + + public static T GetValue(ref T? value) where T : struct + { + if (value == null) + { + throw new InvalidOperationException("The operation has not completed yet."); + } + + return value.Value; + } + + public static ValueTask> DefaultWaitForCompletionAsync(this Operation operation, CancellationToken cancellationToken) + where TResult : notnull + { + return operation.WaitForCompletionAsync(DefaultPollingInterval, cancellationToken); + } + + public static async ValueTask> DefaultWaitForCompletionAsync(this Operation operation, TimeSpan pollingInterval, CancellationToken cancellationToken) + where TResult : notnull + { + while (true) + { + await operation.UpdateStatusAsync(cancellationToken).ConfigureAwait(false); + if (operation.HasCompleted) + { + return Response.FromValue(operation.Value, operation.GetRawResponse()); + } + + await Task.Delay(pollingInterval, cancellationToken).ConfigureAwait(false); + } + } + + internal static Guid GetValue() + { + throw new NotImplementedException(); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntitiesResultCollection.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntitiesResultCollection.cs new file mode 100644 index 0000000000000..ed670ebde5b34 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntitiesResultCollection.cs @@ -0,0 +1,40 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Collections.Generic; +using System.Collections.ObjectModel; +using Azure.AI.TextAnalytics.Models; + +namespace Azure.AI.TextAnalytics +{ + /// + /// Collection of objects corresponding + /// to a batch of documents, and information about the batch operation. + /// + public class RecognizeHealthcareEntitiesResultCollection : ReadOnlyCollection + { + /// + /// + /// + /// + /// + internal RecognizeHealthcareEntitiesResultCollection(IList list, TextDocumentBatchStatistics statistics, string modelVersion) : base(list) + { + Statistics = statistics; + ModelVersion = modelVersion; + } + + /// + /// Gets statistics about the documents batch and how it was processed + /// by the service. This property will have a value when IncludeStatistics + /// is set to true in the client call. + /// + public TextDocumentBatchStatistics Statistics { get; } + + /// + /// Gets the version of the Text Analytics model used by this operation + /// on this batch of documents. + /// + public string ModelVersion { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntititesResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntititesResult.cs new file mode 100644 index 0000000000000..a88f6227a78f1 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntititesResult.cs @@ -0,0 +1,42 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; + +namespace Azure.AI.TextAnalytics +{ + /// + /// The result of the recognize entities operation on a document, + /// containing a collection of the objects + /// identified in that document. + /// + public class RecognizeHealthcareEntititesResult : TextAnalyticsResult + { + private readonly DocumentHealthcareEntitiesCollection _entities; + + internal RecognizeHealthcareEntititesResult(string id, TextDocumentStatistics statistics, DocumentHealthcareEntitiesCollection entities) + : base(id, statistics) + { + _entities = entities; + } + + internal RecognizeHealthcareEntititesResult(string id, TextAnalyticsError error) : base(id, error) { } + + /// + /// Gets the collection of named entities identified in the document. + /// + public DocumentHealthcareEntitiesCollection Entities + { + get + { + if (HasError) + { +#pragma warning disable CA1065 // Do not raise exceptions in unexpected locations + throw new InvalidOperationException($"Cannot access result for document {Id}, due to error {Error.ErrorCode}: {Error.Message}"); +#pragma warning restore CA1065 // Do not raise exceptions in unexpected locations + } + return _entities; + } + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index e5600ee787a6b..19d4c624989fd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -19,8 +19,8 @@ namespace Azure.AI.TextAnalytics public partial class TextAnalyticsClient { private readonly Uri _baseUri; - private readonly TextAnalyticsRestClient _serviceRestClient; - private readonly ClientDiagnostics _clientDiagnostics; + internal readonly TextAnalyticsRestClient _serviceRestClient; + internal readonly ClientDiagnostics _clientDiagnostics; private readonly string _apiVersion; private readonly TextAnalyticsClientOptions _options; private readonly string DefaultCognitiveScope = "https://cognitiveservices.azure.com/.default"; @@ -2072,6 +2072,348 @@ private Response RecognizeLinkedEntitie #endregion + //#region Analyze Operation + + ///// + ///// . + ///// For a list of languages supported by this operation, see + ///// . + ///// For document length limits, maximum batch size, and supported text encoding, see + ///// . + ///// + ///// The documents to analyze. + ///// The language that the document is written in. + ///// The additional configurable + ///// + ///// Service returned a non-success + ///// status code. + //public virtual async Task StartAnalyzeOperationAsync(IEnumerable documents, string language = default, AnalyzeOperationOptions options = default, CancellationToken cancellationToken = default) + //{ + // Argument.AssertNotNullOrEmpty(documents, nameof(documents)); + // options ??= new AnalyzeOperationOptions(); + // MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents, language); + + // return await StartAnalyzeOperationAsync(documentInputs, options, cancellationToken).ConfigureAwait(false); + //} + + ///// + ///// Runs a predictive model to identify a collection of entities containing + ///// Personally Identifiable Information found in the passed-in document, + ///// and categorize those entities into types such as US social security + ///// number, drivers license number, or credit card number. + ///// For more information on available categories, see + ///// . + ///// For a list of languages supported by this operation, see + ///// . + ///// For document length limits, maximum batch size, and supported text encoding, see + ///// . + ///// + ///// The documents to analyze. + ///// The language that the document is written in. + ///// If unspecified, this value will be set to the default language in + ///// in the request sent to the + ///// service. If set to an empty string, the service will apply a model + ///// where the language is explicitly set to "None". + ///// The additional configurable that may be passed when + ///// recognizing PII entities. Options include entity domain filters, model version, and more. + ///// A + ///// controlling the request lifetime. + ///// A result containing the collection of entities identified + ///// for each of the documents, as well as scores indicating the confidence + ///// that a given entity correctly matches the identified substring. + ///// Service returned a non-success + ///// status code. + //public virtual AnalyzeOperation StartAnalyzeOperation(IEnumerable documents, string language = default, AnalyzeOperationOptions options = default, CancellationToken cancellationToken = default) + //{ + // Argument.AssertNotNullOrEmpty(documents, nameof(documents)); + // options ??= new AnalyzeOperationOptions(); + // MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents, language); + + // return StartAnalyzeOperation(documentInputs, options, cancellationToken); + //} + + ///// + ///// Recognizes Analyze Operation. + ///// + ///// + ///// + ///// A controlling the request lifetime. + ///// A to wait on this long-running operation. Its upon successful + ///// completion will contain layout elements extracted from the form. + //public virtual AnalyzeOperation StartAnalyzeOperation(IEnumerable documents, AnalyzeOperationOptions options, CancellationToken cancellationToken = default) + //{ + // Argument.AssertNotNull(documents, nameof(documents)); + + // options ??= new AnalyzeOperationOptions(); + + // MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents); + + // AnalyzeBatchInput analyzeDocumentInputs = new AnalyzeBatchInput(documentInputs, new JobManifestTasks()); + // using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartAnalyzeOperation)}"); + // scope.Start(); + + // try + // { + // ResponseWithHeaders response = _serviceRestClient.Analyze(analyzeDocumentInputs, cancellationToken); + // string location = response.Headers.OperationLocation; + + // return new AnalyzeOperation(_serviceRestClient, _clientDiagnostics, location); + // } + // catch (Exception e) + // { + // scope.Failed(e); + // throw; + // } + //} + + ///// + ///// Recognizes Analyze Operation async. + ///// + ///// + ///// + ///// A controlling the request lifetime. + ///// A to wait on this long-running operation. Its upon successful + ///// completion will contain layout elements extracted from the form. + //public virtual async Task StartAnalyzeOperationAsync(IEnumerable documents, AnalyzeOperationOptions options, CancellationToken cancellationToken = default) + //{ + // Argument.AssertNotNull(documents, nameof(documents)); + + // options ??= new AnalyzeOperationOptions(); + + // MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents); + // AnalyzeBatchInput analyzeDocumentInputs = new AnalyzeBatchInput(documentInputs, new JobManifestTasks()); + + // using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartAnalyzeOperationAsync)}"); + // scope.Start(); + + // try + // { + // ResponseWithHeaders response = await _serviceRestClient.AnalyzeAsync(analyzeDocumentInputs, cancellationToken).ConfigureAwait(false); + // string location = response.Headers.OperationLocation; + + // return new AnalyzeOperation(_serviceRestClient, _clientDiagnostics, location); + // } + // catch (Exception e) + // { + // scope.Failed(e); + // throw; + // } + //} + + //private AnalyzeOperation StartAnalyzeOperation(MultiLanguageBatchInput batchInput, AnalyzeOperationOptions options, CancellationToken cancellationToken = default) + //{ + // options ??= new AnalyzeOperationOptions(); + + // AnalyzeBatchInput analyzeDocumentInputs = new AnalyzeBatchInput(batchInput, new JobManifestTasks()); + // using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartAnalyzeOperation)}"); + // scope.Start(); + + // try + // { + // ResponseWithHeaders response = _serviceRestClient.Analyze(analyzeDocumentInputs, cancellationToken); + // string location = response.Headers.OperationLocation; + + // return new AnalyzeOperation(_serviceRestClient, _clientDiagnostics, location); + // } + // catch (Exception e) + // { + // scope.Failed(e); + // throw; + // } + //} + + //private async Task StartAnalyzeOperationAsync(MultiLanguageBatchInput batchInput, AnalyzeOperationOptions options, CancellationToken cancellationToken = default) + //{ + // options ??= new AnalyzeOperationOptions(); + + // AnalyzeBatchInput analyzeDocumentInputs = new AnalyzeBatchInput(batchInput, new JobManifestTasks()); + + // using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartAnalyzeOperation)}"); + // scope.Start(); + + // try + // { + // ResponseWithHeaders response = await _serviceRestClient.AnalyzeAsync(analyzeDocumentInputs, cancellationToken).ConfigureAwait(false); + // string location = response.Headers.OperationLocation; + + // return new AnalyzeOperation(_serviceRestClient, _clientDiagnostics, location); + // } + // catch (Exception e) + // { + // scope.Failed(e); + // throw; + // } + //} + + //#endregion + + #region Health Async + + /// + /// . + /// For a list of languages supported by this operation, see + /// . + /// For document length limits, maximum batch size, and supported text encoding, see + /// . + /// + /// The documents to analyze. + /// The language that the document is written in. + /// The additional configurable + /// + /// Service returned a non-success + /// status code. + public virtual async Task StartAnalyzeHealthAsync(IEnumerable documents, string language = default, AnalyzeHealthOptions options = default, CancellationToken cancellationToken = default) + { + Argument.AssertNotNullOrEmpty(documents, nameof(documents)); + options ??= new AnalyzeHealthOptions(); + MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents, language); + + return await StartAnalyzeHealthAsync(documentInputs, options, cancellationToken).ConfigureAwait(false); + } + + /// + /// StartAnalyzeHealth + /// For more information on available categories, see + /// . + /// For a list of languages supported by this operation, see + /// . + /// For document length limits, maximum batch size, and supported text encoding, see + /// . + /// + /// The documents to analyze. + /// The language that the document is written in. + /// If unspecified, this value will be set to the default language in + /// in the request sent to the + /// service. If set to an empty string, the service will apply a model + /// where the language is explicitly set to "None". + /// The additional configurable that may be passed when + /// recognizing PII entities. Options include entity domain filters, model version, and more. + /// A + /// controlling the request lifetime. + /// A result containing the collection of entities identified + /// for each of the documents, as well as scores indicating the confidence + /// that a given entity correctly matches the identified substring. + /// Service returned a non-success + /// status code. + public virtual AnalyzeHealthOperation StartAnalyzeHealth(IEnumerable documents, string language = default, AnalyzeHealthOptions options = default, CancellationToken cancellationToken = default) + { + Argument.AssertNotNullOrEmpty(documents, nameof(documents)); + options ??= new AnalyzeHealthOptions(); + MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents, language); + + return StartAnalyzeHealth(documentInputs, options, cancellationToken); + } + + /// + /// Recognizes health entities async. + /// + /// + /// + /// A controlling the request lifetime. + /// A to wait on this long-running operation. Its upon successful + /// completion will contain layout elements extracted from the form. + public virtual AnalyzeHealthOperation StartAnalyzeHealth(IEnumerable documents, AnalyzeHealthOptions options, CancellationToken cancellationToken = default) + { + Argument.AssertNotNull(documents, nameof(documents)); + + options ??= new AnalyzeHealthOptions(); + + MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents); + + using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartAnalyzeHealth)}"); + scope.Start(); + + try + { + ResponseWithHeaders response = _serviceRestClient.Health(documentInputs, options.ModelVersion, _stringCodeUnit, cancellationToken); + string location = response.Headers.OperationLocation; + + return new AnalyzeHealthOperation(_serviceRestClient, _clientDiagnostics, location); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + /// + /// Recognizes layout elements from one or more passed-in forms. + /// + /// + /// + /// A controlling the request lifetime. + /// A to wait on this long-running operation. Its upon successful + /// completion will contain layout elements extracted from the form. + public virtual async Task StartAnalyzeHealthAsync(IEnumerable documents, AnalyzeHealthOptions options, CancellationToken cancellationToken = default) + { + Argument.AssertNotNull(documents, nameof(documents)); + + options ??= new AnalyzeHealthOptions(); + + MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents); + + using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartAnalyzeHealth)}"); + scope.Start(); + + try + { + ResponseWithHeaders response = await _serviceRestClient.HealthAsync(documentInputs, options.ModelVersion, _stringCodeUnit, cancellationToken).ConfigureAwait(false); + string location = response.Headers.OperationLocation; + + return new AnalyzeHealthOperation(_serviceRestClient, _clientDiagnostics, location); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + private AnalyzeHealthOperation StartAnalyzeHealth(MultiLanguageBatchInput batchInput, AnalyzeHealthOptions options, CancellationToken cancellationToken = default) + { + options ??= new AnalyzeHealthOptions(); + + using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartAnalyzeHealth)}"); + scope.Start(); + + try + { + ResponseWithHeaders response = _serviceRestClient.Health(batchInput, options.ModelVersion, _stringCodeUnit, cancellationToken); + string location = response.Headers.OperationLocation; + + return new AnalyzeHealthOperation(_serviceRestClient, _clientDiagnostics, location); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + private async Task StartAnalyzeHealthAsync(MultiLanguageBatchInput batchInput, AnalyzeHealthOptions options, CancellationToken cancellationToken = default) + { + options ??= new AnalyzeHealthOptions(); + + using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartAnalyzeHealth)}"); + scope.Start(); + + try + { + ResponseWithHeaders response = await _serviceRestClient.HealthAsync(batchInput, options.ModelVersion, _stringCodeUnit, cancellationToken).ConfigureAwait(false); + string location = response.Headers.OperationLocation; + + return new AnalyzeHealthOperation(_serviceRestClient, _clientDiagnostics, location); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + #endregion + #region Common private static IDictionary CreateIdToIndexMap(IEnumerable documents) From 9fd3c8b1a97c07f54d4e78147915658a9a2c76c0 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Thu, 29 Oct 2020 10:40:40 -0700 Subject: [PATCH 03/58] added healthcare samples sync and async --- .../src/TextAnalyticsClient.cs | 50 ++++++++++++ .../tests/samples/Sample_Healthcare.cs | 77 ++++++++++++++++++ .../tests/samples/Sample_HealthcareAsync.cs | 79 +++++++++++++++++++ 3 files changed, 206 insertions(+) create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index 19d4c624989fd..f27f6fa768f98 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -2249,6 +2249,56 @@ private Response RecognizeLinkedEntitie #region Health Async + /// + /// . + /// For a list of languages supported by this operation, see + /// . + /// For document length limits, maximum batch size, and supported text encoding, see + /// . + /// + /// The document to analyze. + /// The language that the document is written in. + /// The additional configurable + /// + /// Service returned a non-success + /// status code. + public virtual async Task StartAnalyzeHealthAsync(string document, string language = default, AnalyzeHealthOptions options = default, CancellationToken cancellationToken = default) + { + Argument.AssertNotNullOrEmpty(document, nameof(document)); + options ??= new AnalyzeHealthOptions(); + + var documents = new List() { document }; + + MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents, language); + + return await StartAnalyzeHealthAsync(documentInputs, options, cancellationToken).ConfigureAwait(false); + } + + /// + /// . + /// For a list of languages supported by this operation, see + /// . + /// For document length limits, maximum batch size, and supported text encoding, see + /// . + /// + /// The document to analyze. + /// The language that the document is written in. + /// The additional configurable + /// + /// Service returned a non-success + /// status code. + public virtual AnalyzeHealthOperation StartAnalyzeHealth(string document, string language = default, AnalyzeHealthOptions options = default, CancellationToken cancellationToken = default) + { + Argument.AssertNotNullOrEmpty(document, nameof(document)); + options ??= new AnalyzeHealthOptions(); + + var documents = new List() { document }; + + MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents, language); + + return StartAnalyzeHealth(documentInputs, options, cancellationToken); + } + /// /// . /// For a list of languages supported by this operation, see diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs new file mode 100644 index 0000000000000..033eba49dd868 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs @@ -0,0 +1,77 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Threading.Tasks; +using Azure.AI.TextAnalytics.Models; +using Azure.AI.TextAnalytics.Tests; +using Azure.Core.TestFramework; +using NUnit.Framework; + +namespace Azure.AI.TextAnalytics.Samples +{ + [LiveOnly] + public partial class TextAnalyticsSamples: SamplesBase + { + [Test] + public void Healthcare() + { + string endpoint = TestEnvironment.Endpoint; + string apiKey = TestEnvironment.ApiKey; + + #region Snippet:TextAnalyticsSample1CreateClient + var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); + #endregion + + #region Snippet:Healthcare + string document = "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; + + AnalyzeHealthOperation healthOperation = client.StartAnalyzeHealth(document); + + RecognizeHealthcareEntitiesResultCollection results = healthOperation.Value; + + Console.WriteLine($"Results of Azure Text Analytics \"Healthcare\" Model, version: \"{results.ModelVersion}\""); + Console.WriteLine(""); + + foreach (RecognizeHealthcareEntititesResult result in results) + { + if (result.HasError) + { + Console.WriteLine($" Document error code: {result.Error.ErrorCode}."); + Console.WriteLine($" Message: {result.Error.Message}."); + } + else + { + Console.WriteLine($" Recognized the following {result.Entities.Count} healthcare entities:"); + + foreach (DocumentHealthcareEntities entities in result.Entities) + { + foreach (HealthcareEntity entity in entities.Entities) + { + Console.WriteLine($" Entity: {entity.Text}"); + Console.WriteLine($" Subcategory: {entity.Subcategory}"); + Console.WriteLine($" Offset: {entity.Offset}"); + Console.WriteLine($" Length: {entity.Length}"); + Console.WriteLine($" IsNegated: {entity.IsNegated}"); + Console.WriteLine($" Links:"); + + foreach (HealthcareEntityLink healthcareEntityLink in entity.Links) + { + Console.WriteLine($" ID: {healthcareEntityLink.Id}"); + Console.WriteLine($" DataSource: {healthcareEntityLink.DataSource}"); + } + } + } + + Console.WriteLine($" Document statistics:"); + Console.WriteLine($" Character count (in Unicode graphemes): {result.Statistics.CharacterCount}"); + Console.WriteLine($" Transaction count: {result.Statistics.TransactionCount}"); + Console.WriteLine(""); + } + } + } + + #endregion + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs new file mode 100644 index 0000000000000..5ccc65155f3f8 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs @@ -0,0 +1,79 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Threading.Tasks; +using Azure.AI.TextAnalytics.Models; +using Azure.AI.TextAnalytics.Tests; +using Azure.Core.TestFramework; +using NUnit.Framework; + +namespace Azure.AI.TextAnalytics.Samples +{ + [LiveOnly] + public partial class TextAnalyticsSamples: SamplesBase + { + [Test] + public async Task HealthcareAsync() + { + string endpoint = TestEnvironment.Endpoint; + string apiKey = TestEnvironment.ApiKey; + + #region Snippet:TextAnalyticsSample1CreateClient + var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); + #endregion + + #region Snippet:HealthcareAsync + string document = "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; + + AnalyzeHealthOperation healthOperation = await client.StartAnalyzeHealthAsync(document); + + await healthOperation.WaitForCompletionAsync(); + + RecognizeHealthcareEntitiesResultCollection results = healthOperation.Value; + + Console.WriteLine($"Results of Azure Text Analytics \"Healthcare Async\" Model, version: \"{results.ModelVersion}\""); + Console.WriteLine(""); + + foreach (RecognizeHealthcareEntititesResult result in results) + { + if (result.HasError) + { + Console.WriteLine($" Document error code: {result.Error.ErrorCode}."); + Console.WriteLine($" Message: {result.Error.Message}."); + } + else + { + Console.WriteLine($" Recognized the following {result.Entities.Count} healthcare entities:"); + + foreach (DocumentHealthcareEntities entities in result.Entities) + { + foreach (HealthcareEntity entity in entities.Entities) + { + Console.WriteLine($" Entity: {entity.Text}"); + Console.WriteLine($" Subcategory: {entity.Subcategory}"); + Console.WriteLine($" Offset: {entity.Offset}"); + Console.WriteLine($" Length: {entity.Length}"); + Console.WriteLine($" IsNegated: {entity.IsNegated}"); + Console.WriteLine($" Links:"); + + foreach (HealthcareEntityLink healthcareEntityLink in entity.Links) + { + Console.WriteLine($" ID: {healthcareEntityLink.Id}"); + Console.WriteLine($" DataSource: {healthcareEntityLink.DataSource}"); + } + } + } + + Console.WriteLine($" Document statistics:"); + Console.WriteLine($" Character count (in Unicode graphemes): {result.Statistics.CharacterCount}"); + Console.WriteLine($" Transaction count: {result.Statistics.TransactionCount}"); + Console.WriteLine(""); + } + } + } + + #endregion + } + } +} From 3bd0b6d00a07166c0ccc7aa71233e7cd8599ce96 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Thu, 29 Oct 2020 10:41:29 -0700 Subject: [PATCH 04/58] fix build error - passing build --- .../Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs index 033eba49dd868..fea636451da97 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs @@ -73,5 +73,4 @@ public void Healthcare() #endregion } - } } From 4bc60dc01e1e561c47401b342622084e83e24b40 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Thu, 29 Oct 2020 12:14:09 -0700 Subject: [PATCH 05/58] added healthcare cancellation - build passing --- .../src/TextAnalyticsClient.cs | 53 +++++++++++++++++++ .../tests/samples/Sample_HealthcareAsync.cs | 1 - 2 files changed, 53 insertions(+), 1 deletion(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index f27f6fa768f98..d28b92f68bf98 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -2462,6 +2462,59 @@ private async Task StartAnalyzeHealthAsync(MultiLanguage } } + /// Cancel healthcare prediction job. + /// operation. + /// The cancellation token to use. + // Look for other alternatives of operation cancellation + #pragma warning disable AZC0003 // DO make service methods virtual. + #pragma warning disable AZC0015 // Unexpected client method return type. + public async Task StartCancelHealthJobAsync(AnalyzeHealthOperation operation, CancellationToken cancellationToken = default) + #pragma warning restore AZC0015 // Unexpected client method return type. + #pragma warning restore AZC0003 // DO make service methods virtual. + { + using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartCancelHealthJobAsync)}"); + scope.Start(); + + try + { + ResponseWithHeaders response = await _serviceRestClient.CancelHealthJobAsync(new Guid(operation.Id), cancellationToken).ConfigureAwait(false); + + return response.Headers.OperationLocation; + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + + } + + /// Cancel healthcare prediction job. + /// Job ID. + /// The cancellation token to use. + #pragma warning disable AZC0003 // DO make service methods virtual. + #pragma warning disable AZC0015 // Unexpected client method return type. + public string StartCancelHealthJob(AnalyzeHealthOperation operation, CancellationToken cancellationToken = default) + #pragma warning restore AZC0015 // Unexpected client method return type. + #pragma warning restore AZC0003 // DO make service methods virtual. + { + using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartCancelHealthJobAsync)}"); + scope.Start(); + // Look for other alternatives of operation cancellation + + try + { + ResponseWithHeaders response = _serviceRestClient.CancelHealthJob(new Guid(operation.Id), cancellationToken); + + return response.Headers.OperationLocation; + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + #endregion #region Common diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs index 5ccc65155f3f8..0b7c95b956f45 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs @@ -75,5 +75,4 @@ public async Task HealthcareAsync() #endregion } - } } From 45e36fd91a43b044a4472a65ce4dcc6cdce96bb3 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Thu, 29 Oct 2020 12:24:13 -0700 Subject: [PATCH 06/58] added healthcare samples with cancellation - build passing --- .../Sample_HealthcareAsync_Cancellation.cs | 37 +++++++++++++++++++ .../samples/Sample_Healthcare_Cancellation.cs | 36 ++++++++++++++++++ 2 files changed, 73 insertions(+) create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Cancellation.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Cancellation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Cancellation.cs new file mode 100644 index 0000000000000..f6f1259fb7579 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Cancellation.cs @@ -0,0 +1,37 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Threading.Tasks; +using Azure.AI.TextAnalytics.Models; +using Azure.AI.TextAnalytics.Tests; +using Azure.Core.TestFramework; +using NUnit.Framework; + +namespace Azure.AI.TextAnalytics.Samples +{ + [LiveOnly] + public partial class TextAnalyticsSamples: SamplesBase + { + [Test] + public async Task HealthcareAsyncCancellation() + { + string endpoint = TestEnvironment.Endpoint; + string apiKey = TestEnvironment.ApiKey; + + #region Snippet:TextAnalyticsSample1CreateClient + var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); + #endregion + + #region Snippet:HealthcareAsyncCancellation + string document = "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; + + AnalyzeHealthOperation healthOperation = await client.StartAnalyzeHealthAsync(document); + + await client.StartCancelHealthJobAsync(healthOperation); + + } + + #endregion + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs new file mode 100644 index 0000000000000..1fb0142c48cfc --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs @@ -0,0 +1,36 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Threading.Tasks; +using Azure.AI.TextAnalytics.Models; +using Azure.AI.TextAnalytics.Tests; +using Azure.Core.TestFramework; +using NUnit.Framework; + +namespace Azure.AI.TextAnalytics.Samples +{ + [LiveOnly] + public partial class TextAnalyticsSamples: SamplesBase + { + [Test] + public void HealthcareCancellation() + { + string endpoint = TestEnvironment.Endpoint; + string apiKey = TestEnvironment.ApiKey; + + #region Snippet:TextAnalyticsSample1CreateClient + var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); + #endregion + + #region Snippet:HealthcareCancellation + string document = "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; + + AnalyzeHealthOperation healthOperation = client.StartAnalyzeHealth(document); + + client.StartCancelHealthJob(healthOperation); + } + + #endregion + } +} From 1a7e8e5e4c14a9c6510faa7c0d3b39cdaab33329 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Fri, 30 Oct 2020 11:09:23 -0700 Subject: [PATCH 07/58] HC samples added - build passing --- .../src/AnalyzeHealthOperation.cs | 30 +++++++++++++++--- .../src/DocumentHealthcareEntities.cs | 8 +++++ .../src/RecognizeHealthcareEntititesResult.cs | 6 ++-- .../src/TextAnalyticsClient.cs | 8 ++--- .../Azure.AI.TextAnalytics/src/Transforms.cs | 28 +++++++++++++++++ .../tests/samples/Sample_Healthcare.cs | 31 +++++++++---------- .../tests/samples/Sample_HealthcareAsync.cs | 18 +++++------ .../samples/Sample_Healthcare_Cancellation.cs | 9 +++--- 8 files changed, 97 insertions(+), 41 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeHealthOperation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeHealthOperation.cs index d42539f6c5fb9..c7af5af02fcdb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeHealthOperation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeHealthOperation.cs @@ -21,6 +21,7 @@ public class AnalyzeHealthOperation : OperationProvides tools for exception creation in case of failure. private readonly ClientDiagnostics _diagnostics; + private readonly MultiLanguageBatchInput _batchInput; /// /// Gets an ID representing the operation that can be used to poll for the status @@ -90,10 +91,12 @@ public AnalyzeHealthOperation(string operationId, TextAnalyticsClient client) /// The client for communicating with the Form Recognizer Azure Cognitive Service through its REST API. /// The client diagnostics for exception creation in case of failure. /// The address of the long-running operation. It can be obtained from the response headers upon starting the operation. - internal AnalyzeHealthOperation(TextAnalyticsRestClient serviceClient, ClientDiagnostics diagnostics, string operationLocation) + /// + internal AnalyzeHealthOperation(TextAnalyticsRestClient serviceClient, ClientDiagnostics diagnostics, string operationLocation, MultiLanguageBatchInput batchInput) { _serviceClient = serviceClient; _diagnostics = diagnostics; + _batchInput = batchInput; // TODO: Add validation here // https://github.com/Azure/azure-sdk-for-net/issues/11505 @@ -186,10 +189,9 @@ private async ValueTask UpdateStatusAsync(bool async, CancellationToke if (update.Value.Status == JobStatus.Succeeded) { + IDictionary map = CreateIdToIndexMap(_batchInput.Documents); // we need to first assign a vaue and then mark the operation as completed to avoid race conditions - _value = new RecognizeHealthcareEntitiesResultCollection(new List() { /*update.Value.Results*/ }, - update.Value.Results.Statistics, - update.Value.Results.ModelVersion); + _value = Transforms.ConvertToRecognizeHealthcareEntitiesResultCollection(update.Value.Results, map); _hasCompleted = true; } else if (update.Value.Status == JobStatus.Failed) @@ -209,5 +211,25 @@ private async ValueTask UpdateStatusAsync(bool async, CancellationToke return GetRawResponse(); } + + private static IDictionary CreateIdToIndexMap(IEnumerable documents) + { + var map = new Dictionary(documents.Count()); + + int i = 0; + foreach (T item in documents) + { + string id = item switch + { + LanguageInput li => li.Id, + MultiLanguageInput mli => mli.Id, + _ => throw new NotSupportedException(), + }; + + map[id] = i++; + } + + return map; + } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntities.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntities.cs index f4989b4df5748..d5ddc75b47be6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntities.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntities.cs @@ -43,6 +43,14 @@ internal DocumentHealthcareEntities(string id, IEnumerable ent Warnings = Transforms.ConvertToWarnings(warnings.ToList()); } + internal DocumentHealthcareEntities(DocumentHealthcareEntitiesInternal documentHealthcareEntities) + { + Entities = documentHealthcareEntities.Entities; + Relations = ResolveHealthcareRelations(documentHealthcareEntities.Entities, documentHealthcareEntities.Relations); + Id = documentHealthcareEntities.Id; + Warnings = documentHealthcareEntities.Warnings != null ? Transforms.ConvertToWarnings(documentHealthcareEntities.Warnings) : null; + } + /// Initializes a new instance of DocumentHealthcareEntities. /// Unique, non-empty document identifier. /// Healthcare entities. diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntititesResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntititesResult.cs index a88f6227a78f1..5b9a617ab4c14 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntititesResult.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntititesResult.cs @@ -12,9 +12,9 @@ namespace Azure.AI.TextAnalytics /// public class RecognizeHealthcareEntititesResult : TextAnalyticsResult { - private readonly DocumentHealthcareEntitiesCollection _entities; + private readonly DocumentHealthcareEntities _entities; - internal RecognizeHealthcareEntititesResult(string id, TextDocumentStatistics statistics, DocumentHealthcareEntitiesCollection entities) + internal RecognizeHealthcareEntititesResult(string id, TextDocumentStatistics statistics, DocumentHealthcareEntities entities) : base(id, statistics) { _entities = entities; @@ -25,7 +25,7 @@ internal RecognizeHealthcareEntititesResult(string id, TextAnalyticsError error) /// /// Gets the collection of named entities identified in the document. /// - public DocumentHealthcareEntitiesCollection Entities + public DocumentHealthcareEntities Entities { get { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index d28b92f68bf98..002a4f54141fc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -2378,7 +2378,7 @@ public virtual AnalyzeHealthOperation StartAnalyzeHealth(IEnumerable response = _serviceRestClient.Health(documentInputs, options.ModelVersion, _stringCodeUnit, cancellationToken); string location = response.Headers.OperationLocation; - return new AnalyzeHealthOperation(_serviceRestClient, _clientDiagnostics, location); + return new AnalyzeHealthOperation(_serviceRestClient, _clientDiagnostics, location, documentInputs); } catch (Exception e) { @@ -2411,7 +2411,7 @@ public virtual async Task StartAnalyzeHealthAsync(IEnume ResponseWithHeaders response = await _serviceRestClient.HealthAsync(documentInputs, options.ModelVersion, _stringCodeUnit, cancellationToken).ConfigureAwait(false); string location = response.Headers.OperationLocation; - return new AnalyzeHealthOperation(_serviceRestClient, _clientDiagnostics, location); + return new AnalyzeHealthOperation(_serviceRestClient, _clientDiagnostics, location, documentInputs); } catch (Exception e) { @@ -2432,7 +2432,7 @@ private AnalyzeHealthOperation StartAnalyzeHealth(MultiLanguageBatchInput batchI ResponseWithHeaders response = _serviceRestClient.Health(batchInput, options.ModelVersion, _stringCodeUnit, cancellationToken); string location = response.Headers.OperationLocation; - return new AnalyzeHealthOperation(_serviceRestClient, _clientDiagnostics, location); + return new AnalyzeHealthOperation(_serviceRestClient, _clientDiagnostics, location, batchInput); } catch (Exception e) { @@ -2453,7 +2453,7 @@ private async Task StartAnalyzeHealthAsync(MultiLanguage ResponseWithHeaders response = await _serviceRestClient.HealthAsync(batchInput, options.ModelVersion, _stringCodeUnit, cancellationToken).ConfigureAwait(false); string location = response.Headers.OperationLocation; - return new AnalyzeHealthOperation(_serviceRestClient, _clientDiagnostics, location); + return new AnalyzeHealthOperation(_serviceRestClient, _clientDiagnostics, location, batchInput); } catch (Exception e) { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs index 273e93b4ffac0..0e6ad14fde634 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs @@ -220,6 +220,34 @@ internal static RecognizeLinkedEntitiesResultCollection ConvertToRecognizeLinked #endregion + #region Healthcare + + internal static RecognizeHealthcareEntitiesResultCollection ConvertToRecognizeHealthcareEntitiesResultCollection(HealthcareResult results, IDictionary idToIndexMap) + { + var healthcareEntititesResults = new List(); + + //Read errors + foreach (DocumentError error in results.Errors) + { + healthcareEntititesResults.Add(new RecognizeHealthcareEntititesResult(error.Id, ConvertToError(error.Error))); + } + + //Read entities + foreach (DocumentHealthcareEntitiesInternal documentHealthcareEntities in results.Documents) + { + healthcareEntititesResults.Add( + new RecognizeHealthcareEntititesResult(documentHealthcareEntities.Id, + documentHealthcareEntities.Statistics ?? default, + new DocumentHealthcareEntities(documentHealthcareEntities))); + } + + healthcareEntititesResults = SortHeterogeneousCollection(healthcareEntititesResults, idToIndexMap); + + return new RecognizeHealthcareEntitiesResultCollection(healthcareEntititesResults, results.Statistics, results.ModelVersion); + } + + #endregion + private static List SortHeterogeneousCollection(List collection, IDictionary idToIndexMap) where T : TextAnalyticsResult { return collection.OrderBy(result => idToIndexMap[result.Id]).ToList(); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs index fea636451da97..26a07e494f619 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs @@ -14,7 +14,7 @@ namespace Azure.AI.TextAnalytics.Samples public partial class TextAnalyticsSamples: SamplesBase { [Test] - public void Healthcare() + public async Task Healthcare() { string endpoint = TestEnvironment.Endpoint; string apiKey = TestEnvironment.ApiKey; @@ -28,6 +28,8 @@ public void Healthcare() AnalyzeHealthOperation healthOperation = client.StartAnalyzeHealth(document); + await healthOperation.WaitForCompletionAsync(); + RecognizeHealthcareEntitiesResultCollection results = healthOperation.Value; Console.WriteLine($"Results of Azure Text Analytics \"Healthcare\" Model, version: \"{results.ModelVersion}\""); @@ -42,24 +44,21 @@ public void Healthcare() } else { - Console.WriteLine($" Recognized the following {result.Entities.Count} healthcare entities:"); + Console.WriteLine($" Recognized the following {result.Entities.Entities.Count} healthcare entities:"); - foreach (DocumentHealthcareEntities entities in result.Entities) + foreach (HealthcareEntity entity in result.Entities.Entities) { - foreach (HealthcareEntity entity in entities.Entities) - { - Console.WriteLine($" Entity: {entity.Text}"); - Console.WriteLine($" Subcategory: {entity.Subcategory}"); - Console.WriteLine($" Offset: {entity.Offset}"); - Console.WriteLine($" Length: {entity.Length}"); - Console.WriteLine($" IsNegated: {entity.IsNegated}"); - Console.WriteLine($" Links:"); + Console.WriteLine($" Entity: {entity.Text}"); + Console.WriteLine($" Subcategory: {entity.Subcategory}"); + Console.WriteLine($" Offset: {entity.Offset}"); + Console.WriteLine($" Length: {entity.Length}"); + Console.WriteLine($" IsNegated: {entity.IsNegated}"); + Console.WriteLine($" Links:"); - foreach (HealthcareEntityLink healthcareEntityLink in entity.Links) - { - Console.WriteLine($" ID: {healthcareEntityLink.Id}"); - Console.WriteLine($" DataSource: {healthcareEntityLink.DataSource}"); - } + foreach (HealthcareEntityLink healthcareEntityLink in entity.Links) + { + Console.WriteLine($" ID: {healthcareEntityLink.Id}"); + Console.WriteLine($" DataSource: {healthcareEntityLink.DataSource}"); } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs index 0b7c95b956f45..02a28df9635c5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs @@ -2,6 +2,7 @@ // Licensed under the MIT License. using System; +using System.Linq; using System.Threading.Tasks; using Azure.AI.TextAnalytics.Models; using Azure.AI.TextAnalytics.Tests; @@ -44,19 +45,18 @@ public async Task HealthcareAsync() } else { - Console.WriteLine($" Recognized the following {result.Entities.Count} healthcare entities:"); + Console.WriteLine($" Recognized the following {result.Entities.Entities.Count()} healthcare entities:"); - foreach (DocumentHealthcareEntities entities in result.Entities) + foreach (HealthcareEntity entity in result.Entities.Entities) { - foreach (HealthcareEntity entity in entities.Entities) + Console.WriteLine($" Entity: {entity.Text}"); + Console.WriteLine($" Subcategory: {entity.Subcategory}"); + Console.WriteLine($" Offset: {entity.Offset}"); + Console.WriteLine($" Length: {entity.Length}"); + Console.WriteLine($" IsNegated: {entity.IsNegated}"); + if (entity.Links.Count > 0) { - Console.WriteLine($" Entity: {entity.Text}"); - Console.WriteLine($" Subcategory: {entity.Subcategory}"); - Console.WriteLine($" Offset: {entity.Offset}"); - Console.WriteLine($" Length: {entity.Length}"); - Console.WriteLine($" IsNegated: {entity.IsNegated}"); Console.WriteLine($" Links:"); - foreach (HealthcareEntityLink healthcareEntityLink in entity.Links) { Console.WriteLine($" ID: {healthcareEntityLink.Id}"); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs index 1fb0142c48cfc..5d40c927d735b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs @@ -15,19 +15,18 @@ public partial class TextAnalyticsSamples: SamplesBase Date: Fri, 30 Oct 2020 13:07:43 -0700 Subject: [PATCH 08/58] Added ShowStats samples for healthcare --- .../src/AnalyzeHealthOperation.cs | 16 +++- .../src/AnalyzeHealthOptions.cs | 15 +++ .../src/TextAnalyticsClient.cs | 2 +- .../tests/samples/Sample_HealthcareAsync.cs | 4 +- .../Sample_HealthcareAsync_ShowStats.cs | 92 +++++++++++++++++++ .../samples/Sample_Healthcare_Cancellation.cs | 9 +- .../samples/Sample_Healthcare_ShowStats.cs | 89 ++++++++++++++++++ 7 files changed, 216 insertions(+), 11 deletions(-) create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeHealthOperation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeHealthOperation.cs index c7af5af02fcdb..18f0804201615 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeHealthOperation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeHealthOperation.cs @@ -66,6 +66,11 @@ public override RecognizeHealthcareEntitiesResultCollection Value /// The result of the long-running operation. null until result is received on status update. private RecognizeHealthcareEntitiesResultCollection _value; + + private int? _top { get; } + private int? _skip { get; } + private bool? _showStats { get; } + /// /// Returns true if the long-running operation completed successfully and has produced final result (accessible by Value property). /// @@ -92,11 +97,17 @@ public AnalyzeHealthOperation(string operationId, TextAnalyticsClient client) /// The client diagnostics for exception creation in case of failure. /// The address of the long-running operation. It can be obtained from the response headers upon starting the operation. /// - internal AnalyzeHealthOperation(TextAnalyticsRestClient serviceClient, ClientDiagnostics diagnostics, string operationLocation, MultiLanguageBatchInput batchInput) + /// + /// + /// + internal AnalyzeHealthOperation(TextAnalyticsRestClient serviceClient, ClientDiagnostics diagnostics, string operationLocation, MultiLanguageBatchInput batchInput, int? top = null, int? skip = null, bool? showStats = null) { _serviceClient = serviceClient; _diagnostics = diagnostics; _batchInput = batchInput; + _top = top; + _skip = skip; + _showStats = showStats; // TODO: Add validation here // https://github.com/Azure/azure-sdk-for-net/issues/11505 @@ -178,9 +189,6 @@ private async ValueTask UpdateStatusAsync(bool async, CancellationToke try { - bool? _showStats = null; - int? _top = null; - int? _skip = null; Response update = async ? await _serviceClient.HealthStatusAsync(new Guid(Id), _top, _skip, _showStats, cancellationToken).ConfigureAwait(false) : _serviceClient.HealthStatus(new Guid(Id), _top, _skip, _showStats, cancellationToken); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeHealthOptions.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeHealthOptions.cs index 03fcb4c4a5d81..af30bcdad5926 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeHealthOptions.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeHealthOptions.cs @@ -16,5 +16,20 @@ public class AnalyzeHealthOptions : TextAnalyticsRequestOptions public AnalyzeHealthOptions() { } + + /// + /// Initializes a new instance of the + /// class. + /// + public AnalyzeHealthOptions(int? top = null, int? skip = null, bool? showStats = null) + { + Top = top; + Skip = skip; + ShowStats = showStats; + } + + public int? Top { get; internal set; } + public int? Skip { get; internal set; } + public bool? ShowStats { get; internal set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index 002a4f54141fc..eb1bc9ffa0d0d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -2453,7 +2453,7 @@ private async Task StartAnalyzeHealthAsync(MultiLanguage ResponseWithHeaders response = await _serviceRestClient.HealthAsync(batchInput, options.ModelVersion, _stringCodeUnit, cancellationToken).ConfigureAwait(false); string location = response.Headers.OperationLocation; - return new AnalyzeHealthOperation(_serviceRestClient, _clientDiagnostics, location, batchInput); + return new AnalyzeHealthOperation(_serviceRestClient, _clientDiagnostics, location, batchInput, options.Top, options.Skip, options.ShowStats); } catch (Exception e) { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs index 02a28df9635c5..e1b387d268984 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs @@ -17,8 +17,8 @@ public partial class TextAnalyticsSamples: SamplesBase + { + [Test] + public async Task HealthcareAsyncShowStats() + { + string endpoint = TestEnvironment.Endpoint; + string apiKey = TestEnvironment.ApiKey; + + #region Snippet:TextAnalyticsSample1CreateClient + var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); + #endregion + + #region Snippet:HealthcareAsyncShowStats + string document = "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; + + MultiLanguageBatchInput batchInput = new MultiLanguageBatchInput(new List() + { + new MultiLanguageInput("doc 1", document), + new MultiLanguageInput("doc 2", document), + }); + + AnalyzeHealthOptions options = new AnalyzeHealthOptions() + { + Top = 1, + Skip = 0, + ShowStats = true + }; + + AnalyzeHealthOperation healthOperation = await client.StartAnalyzeHealthAsync(document, "", options); + + await healthOperation.WaitForCompletionAsync(); + + RecognizeHealthcareEntitiesResultCollection results = healthOperation.Value; + + Console.WriteLine($"Results of Azure Text Analytics \"Healthcare Async\" Model, version: \"{results.ModelVersion}\""); + Console.WriteLine(""); + + foreach (RecognizeHealthcareEntititesResult result in results) + { + if (result.HasError) + { + Console.WriteLine($" Document error code: {result.Error.ErrorCode}."); + Console.WriteLine($" Message: {result.Error.Message}."); + } + else + { + Console.WriteLine($" Recognized the following {result.Entities.Entities.Count()} healthcare entities:"); + + foreach (HealthcareEntity entity in result.Entities.Entities) + { + Console.WriteLine($" Entity: {entity.Text}"); + Console.WriteLine($" Subcategory: {entity.Subcategory}"); + Console.WriteLine($" Offset: {entity.Offset}"); + Console.WriteLine($" Length: {entity.Length}"); + Console.WriteLine($" IsNegated: {entity.IsNegated}"); + if (entity.Links.Count > 0) + { + Console.WriteLine($" Links:"); + foreach (HealthcareEntityLink healthcareEntityLink in entity.Links) + { + Console.WriteLine($" ID: {healthcareEntityLink.Id}"); + Console.WriteLine($" DataSource: {healthcareEntityLink.DataSource}"); + } + } + } + + Console.WriteLine($" Document statistics:"); + Console.WriteLine($" Character count (in Unicode graphemes): {result.Statistics.CharacterCount}"); + Console.WriteLine($" Transaction count: {result.Statistics.TransactionCount}"); + Console.WriteLine(""); + } + } + } + + #endregion + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs index 5d40c927d735b..ce298eb0cea7c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs @@ -15,11 +15,12 @@ public partial class TextAnalyticsSamples: SamplesBase + { + [Test] + public async Task HealthcareShowStats() + { + string endpoint = TestEnvironment.Endpoint; + string apiKey = TestEnvironment.ApiKey; + + #region Snippet:TextAnalyticsSample1CreateClient + var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); + #endregion + + #region Snippet:Healthcare + string document = "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; + + MultiLanguageBatchInput batchInput = new MultiLanguageBatchInput(new List() + { + new MultiLanguageInput("doc 1", document), + new MultiLanguageInput("doc 2", document), + }); + + AnalyzeHealthOptions options = new AnalyzeHealthOptions() + { + Top = 1, + Skip = 0, + ShowStats = true + }; + + AnalyzeHealthOperation healthOperation = client.StartAnalyzeHealth(batchInput, options); + + await healthOperation.WaitForCompletionAsync(); + + RecognizeHealthcareEntitiesResultCollection results = healthOperation.Value; + + Console.WriteLine($"Results of Azure Text Analytics \"Healthcare\" Model, version: \"{results.ModelVersion}\""); + Console.WriteLine(""); + + foreach (RecognizeHealthcareEntititesResult result in results) + { + if (result.HasError) + { + Console.WriteLine($" Document error code: {result.Error.ErrorCode}."); + Console.WriteLine($" Message: {result.Error.Message}."); + } + else + { + Console.WriteLine($" Recognized the following {result.Entities.Entities.Count} healthcare entities:"); + + foreach (HealthcareEntity entity in result.Entities.Entities) + { + Console.WriteLine($" Entity: {entity.Text}"); + Console.WriteLine($" Subcategory: {entity.Subcategory}"); + Console.WriteLine($" Offset: {entity.Offset}"); + Console.WriteLine($" Length: {entity.Length}"); + Console.WriteLine($" IsNegated: {entity.IsNegated}"); + Console.WriteLine($" Links:"); + + foreach (HealthcareEntityLink healthcareEntityLink in entity.Links) + { + Console.WriteLine($" ID: {healthcareEntityLink.Id}"); + Console.WriteLine($" DataSource: {healthcareEntityLink.DataSource}"); + } + } + + Console.WriteLine($" Document statistics:"); + Console.WriteLine($" Character count (in Unicode graphemes): {result.Statistics.CharacterCount}"); + Console.WriteLine($" Transaction count: {result.Statistics.TransactionCount}"); + Console.WriteLine(""); + } + } + } + + #endregion + } +} From b46f7002c1e131f539c0004b01a5226921a2da31 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Fri, 30 Oct 2020 13:13:53 -0700 Subject: [PATCH 09/58] fix tests and build passing --- .../samples/Sample_HealthcareAsync_ShowStats.cs | 14 +++++++------- .../samples/Sample_Healthcare_Cancellation.cs | 4 ++-- .../tests/samples/Sample_Healthcare_ShowStats.cs | 10 +++++----- 3 files changed, 14 insertions(+), 14 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs index dfdd5e0cefdfc..47fb96cb96666 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs @@ -18,8 +18,8 @@ public partial class TextAnalyticsSamples: SamplesBase() + List batchInput = new List() { - new MultiLanguageInput("doc 1", document), - new MultiLanguageInput("doc 2", document), - }); + document, + document, + }; AnalyzeHealthOptions options = new AnalyzeHealthOptions() { @@ -41,7 +41,7 @@ public async Task HealthcareAsyncShowStats() ShowStats = true }; - AnalyzeHealthOperation healthOperation = await client.StartAnalyzeHealthAsync(document, "", options); + AnalyzeHealthOperation healthOperation = await client.StartAnalyzeHealthAsync(batchInput, "en", options); await healthOperation.WaitForCompletionAsync(); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs index ce298eb0cea7c..6a57e6d878b37 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs @@ -16,8 +16,8 @@ public partial class TextAnalyticsSamples: SamplesBase() + List batchInput = new List() { - new MultiLanguageInput("doc 1", document), - new MultiLanguageInput("doc 2", document), - }); + document, + document, + }; AnalyzeHealthOptions options = new AnalyzeHealthOptions() { @@ -40,7 +40,7 @@ public async Task HealthcareShowStats() ShowStats = true }; - AnalyzeHealthOperation healthOperation = client.StartAnalyzeHealth(batchInput, options); + AnalyzeHealthOperation healthOperation = client.StartAnalyzeHealth(batchInput, "en", options); await healthOperation.WaitForCompletionAsync(); From ca06d2f6b671f8ddf9bfb425745e65979dadfefd Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Sun, 1 Nov 2020 18:37:51 -0800 Subject: [PATCH 10/58] update names and resolved comments --- ...lthOperation.cs => HealthcareOperation.cs} | 53 +++++-------- ...eHealthOptions.cs => HealthcareOptions.cs} | 10 +-- .../src/TextAnalyticsClient.cs | 79 ++++++++++--------- .../tests/samples/Sample_Healthcare.cs | 2 +- .../tests/samples/Sample_HealthcareAsync.cs | 2 +- .../Sample_HealthcareAsync_Cancellation.cs | 2 +- .../Sample_HealthcareAsync_ShowStats.cs | 4 +- .../samples/Sample_Healthcare_Cancellation.cs | 2 +- .../samples/Sample_Healthcare_ShowStats.cs | 4 +- 9 files changed, 74 insertions(+), 84 deletions(-) rename sdk/textanalytics/Azure.AI.TextAnalytics/src/{AnalyzeHealthOperation.cs => HealthcareOperation.cs} (83%) rename sdk/textanalytics/Azure.AI.TextAnalytics/src/{AnalyzeHealthOptions.cs => HealthcareOptions.cs} (67%) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeHealthOperation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs similarity index 83% rename from sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeHealthOperation.cs rename to sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs index 18f0804201615..833f74e7d05b4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeHealthOperation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs @@ -13,15 +13,19 @@ namespace Azure.AI.TextAnalytics { - /// The AnalyzeOperation class for LRO. - public class AnalyzeHealthOperation : Operation + /// The HealthcareOperation class for LRO. + public class HealthcareOperation : Operation { - /// Provides communication with the Form Recognizer Azure Cognitive Service through its REST API. + /// Provides communication with the Text Analytics Azure Cognitive Service through its REST API. private readonly TextAnalyticsRestClient _serviceClient; /// Provides tools for exception creation in case of failure. private readonly ClientDiagnostics _diagnostics; - private readonly MultiLanguageBatchInput _batchInput; + + /// + /// Provides the input to be part of HealthcareOperation class + /// + private readonly IDictionary _idToIndexMap; /// /// Gets an ID representing the operation that can be used to poll for the status @@ -77,11 +81,11 @@ public override RecognizeHealthcareEntitiesResultCollection Value public override bool HasValue => _value != null; /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// /// The ID of this operation. /// The client used to check for completion. - public AnalyzeHealthOperation(string operationId, TextAnalyticsClient client) + public HealthcareOperation(string operationId, TextAnalyticsClient client) { // TODO: Add argument validation here. @@ -91,20 +95,20 @@ public AnalyzeHealthOperation(string operationId, TextAnalyticsClient client) } /// - /// Initializes a new instance of the class. + /// Initializes a new instance of the class. /// - /// The client for communicating with the Form Recognizer Azure Cognitive Service through its REST API. + /// The client for communicating with the Text Analytics Azure Cognitive Service through its REST API. /// The client diagnostics for exception creation in case of failure. /// The address of the long-running operation. It can be obtained from the response headers upon starting the operation. - /// + /// /// /// /// - internal AnalyzeHealthOperation(TextAnalyticsRestClient serviceClient, ClientDiagnostics diagnostics, string operationLocation, MultiLanguageBatchInput batchInput, int? top = null, int? skip = null, bool? showStats = null) + internal HealthcareOperation(TextAnalyticsRestClient serviceClient, ClientDiagnostics diagnostics, string operationLocation, IDictionary idToIndexMap, int? top = default, int? skip = default, bool? showStats = default) { _serviceClient = serviceClient; _diagnostics = diagnostics; - _batchInput = batchInput; + _idToIndexMap = idToIndexMap; _top = top; _skip = skip; _showStats = showStats; @@ -120,7 +124,7 @@ internal AnalyzeHealthOperation(TextAnalyticsRestClient serviceClient, ClientDia /// /// /// The last response returned from the server during the lifecycle of this instance. - /// An instance of sends requests to a server in UpdateStatusAsync, UpdateStatus, and other methods. + /// An instance of sends requests to a server in UpdateStatusAsync, UpdateStatus, and other methods. /// Responses from these requests can be accessed using GetRawResponse. /// public override Response GetRawResponse() => _response; @@ -184,7 +188,7 @@ private async ValueTask UpdateStatusAsync(bool async, CancellationToke { if (!_hasCompleted) { - using DiagnosticScope scope = _diagnostics.CreateScope($"{nameof(AnalyzeHealthOperation)}.{nameof(UpdateStatus)}"); + using DiagnosticScope scope = _diagnostics.CreateScope($"{nameof(HealthcareOperation)}.{nameof(UpdateStatus)}"); scope.Start(); try @@ -197,9 +201,8 @@ private async ValueTask UpdateStatusAsync(bool async, CancellationToke if (update.Value.Status == JobStatus.Succeeded) { - IDictionary map = CreateIdToIndexMap(_batchInput.Documents); // we need to first assign a vaue and then mark the operation as completed to avoid race conditions - _value = Transforms.ConvertToRecognizeHealthcareEntitiesResultCollection(update.Value.Results, map); + _value = Transforms.ConvertToRecognizeHealthcareEntitiesResultCollection(update.Value.Results, _idToIndexMap); _hasCompleted = true; } else if (update.Value.Status == JobStatus.Failed) @@ -219,25 +222,5 @@ private async ValueTask UpdateStatusAsync(bool async, CancellationToke return GetRawResponse(); } - - private static IDictionary CreateIdToIndexMap(IEnumerable documents) - { - var map = new Dictionary(documents.Count()); - - int i = 0; - foreach (T item in documents) - { - string id = item switch - { - LanguageInput li => li.Id, - MultiLanguageInput mli => mli.Id, - _ => throw new NotSupportedException(), - }; - - map[id] = i++; - } - - return map; - } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeHealthOptions.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOptions.cs similarity index 67% rename from sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeHealthOptions.cs rename to sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOptions.cs index af30bcdad5926..96a866bded359 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeHealthOptions.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOptions.cs @@ -7,21 +7,21 @@ namespace Azure.AI.TextAnalytics /// Options that allow callers to specify details about how the operation /// is run and what information is returned from it by the service. /// - public class AnalyzeHealthOptions : TextAnalyticsRequestOptions + public class HealthcareOptions : TextAnalyticsRequestOptions { /// - /// Initializes a new instance of the + /// Initializes a new instance of the /// class. /// - public AnalyzeHealthOptions() + public HealthcareOptions() { } /// - /// Initializes a new instance of the + /// Initializes a new instance of the /// class. /// - public AnalyzeHealthOptions(int? top = null, int? skip = null, bool? showStats = null) + public HealthcareOptions(int? top = null, int? skip = null, bool? showStats = null) { Top = top; Skip = skip; diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index eb1bc9ffa0d0d..a6a7d4380e8cb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -2258,20 +2258,20 @@ private Response RecognizeLinkedEntitie /// /// The document to analyze. /// The language that the document is written in. - /// The additional configurable + /// The additional configurable /// /// Service returned a non-success /// status code. - public virtual async Task StartAnalyzeHealthAsync(string document, string language = default, AnalyzeHealthOptions options = default, CancellationToken cancellationToken = default) + public virtual async Task StartHealthcareAsync(string document, string language = default, HealthcareOptions options = default, CancellationToken cancellationToken = default) { Argument.AssertNotNullOrEmpty(document, nameof(document)); - options ??= new AnalyzeHealthOptions(); + options ??= new HealthcareOptions(); var documents = new List() { document }; MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents, language); - return await StartAnalyzeHealthAsync(documentInputs, options, cancellationToken).ConfigureAwait(false); + return await StartHealthcareAsync(documentInputs, options, cancellationToken).ConfigureAwait(false); } /// @@ -2283,20 +2283,20 @@ public virtual async Task StartAnalyzeHealthAsync(string /// /// The document to analyze. /// The language that the document is written in. - /// The additional configurable + /// The additional configurable /// /// Service returned a non-success /// status code. - public virtual AnalyzeHealthOperation StartAnalyzeHealth(string document, string language = default, AnalyzeHealthOptions options = default, CancellationToken cancellationToken = default) + public virtual HealthcareOperation StartHealthcare(string document, string language = default, HealthcareOptions options = default, CancellationToken cancellationToken = default) { Argument.AssertNotNullOrEmpty(document, nameof(document)); - options ??= new AnalyzeHealthOptions(); + options ??= new HealthcareOptions(); var documents = new List() { document }; MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents, language); - return StartAnalyzeHealth(documentInputs, options, cancellationToken); + return StartHealthcare(documentInputs, options, cancellationToken); } /// @@ -2308,21 +2308,21 @@ public virtual AnalyzeHealthOperation StartAnalyzeHealth(string document, string /// /// The documents to analyze. /// The language that the document is written in. - /// The additional configurable + /// The additional configurable /// /// Service returned a non-success /// status code. - public virtual async Task StartAnalyzeHealthAsync(IEnumerable documents, string language = default, AnalyzeHealthOptions options = default, CancellationToken cancellationToken = default) + public virtual async Task StartHealthcareAsync(IEnumerable documents, string language = default, HealthcareOptions options = default, CancellationToken cancellationToken = default) { Argument.AssertNotNullOrEmpty(documents, nameof(documents)); - options ??= new AnalyzeHealthOptions(); + options ??= new HealthcareOptions(); MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents, language); - return await StartAnalyzeHealthAsync(documentInputs, options, cancellationToken).ConfigureAwait(false); + return await StartHealthcareAsync(documentInputs, options, cancellationToken).ConfigureAwait(false); } /// - /// StartAnalyzeHealth + /// StartHealthcare /// For more information on available categories, see /// . /// For a list of languages supported by this operation, see @@ -2345,13 +2345,13 @@ public virtual async Task StartAnalyzeHealthAsync(IEnume /// that a given entity correctly matches the identified substring. /// Service returned a non-success /// status code. - public virtual AnalyzeHealthOperation StartAnalyzeHealth(IEnumerable documents, string language = default, AnalyzeHealthOptions options = default, CancellationToken cancellationToken = default) + public virtual HealthcareOperation StartHealthcare(IEnumerable documents, string language = default, HealthcareOptions options = default, CancellationToken cancellationToken = default) { Argument.AssertNotNullOrEmpty(documents, nameof(documents)); - options ??= new AnalyzeHealthOptions(); + options ??= new HealthcareOptions(); MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents, language); - return StartAnalyzeHealth(documentInputs, options, cancellationToken); + return StartHealthcare(documentInputs, options, cancellationToken); } /// @@ -2360,17 +2360,17 @@ public virtual AnalyzeHealthOperation StartAnalyzeHealth(IEnumerable doc /// /// /// A controlling the request lifetime. - /// A to wait on this long-running operation. Its upon successful + /// A to wait on this long-running operation. Its upon successful /// completion will contain layout elements extracted from the form. - public virtual AnalyzeHealthOperation StartAnalyzeHealth(IEnumerable documents, AnalyzeHealthOptions options, CancellationToken cancellationToken = default) + public virtual HealthcareOperation StartHealthcare(IEnumerable documents, HealthcareOptions options, CancellationToken cancellationToken = default) { Argument.AssertNotNull(documents, nameof(documents)); - options ??= new AnalyzeHealthOptions(); + options ??= new HealthcareOptions(); MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents); - using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartAnalyzeHealth)}"); + using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartHealthcare)}"); scope.Start(); try @@ -2378,7 +2378,9 @@ public virtual AnalyzeHealthOperation StartAnalyzeHealth(IEnumerable response = _serviceRestClient.Health(documentInputs, options.ModelVersion, _stringCodeUnit, cancellationToken); string location = response.Headers.OperationLocation; - return new AnalyzeHealthOperation(_serviceRestClient, _clientDiagnostics, location, documentInputs); + IDictionary idToIndexMap = CreateIdToIndexMap(documentInputs.Documents); + + return new HealthcareOperation(_serviceRestClient, _clientDiagnostics, location, idToIndexMap); } catch (Exception e) { @@ -2393,17 +2395,17 @@ public virtual AnalyzeHealthOperation StartAnalyzeHealth(IEnumerable /// /// A controlling the request lifetime. - /// A to wait on this long-running operation. Its upon successful + /// A to wait on this long-running operation. Its upon successful /// completion will contain layout elements extracted from the form. - public virtual async Task StartAnalyzeHealthAsync(IEnumerable documents, AnalyzeHealthOptions options, CancellationToken cancellationToken = default) + public virtual async Task StartHealthcareAsync(IEnumerable documents, HealthcareOptions options, CancellationToken cancellationToken = default) { Argument.AssertNotNull(documents, nameof(documents)); - options ??= new AnalyzeHealthOptions(); + options ??= new HealthcareOptions(); MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents); - using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartAnalyzeHealth)}"); + using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartHealthcare)}"); scope.Start(); try @@ -2411,7 +2413,8 @@ public virtual async Task StartAnalyzeHealthAsync(IEnume ResponseWithHeaders response = await _serviceRestClient.HealthAsync(documentInputs, options.ModelVersion, _stringCodeUnit, cancellationToken).ConfigureAwait(false); string location = response.Headers.OperationLocation; - return new AnalyzeHealthOperation(_serviceRestClient, _clientDiagnostics, location, documentInputs); + IDictionary idToIndexMap = CreateIdToIndexMap(documentInputs.Documents); + return new HealthcareOperation(_serviceRestClient, _clientDiagnostics, location, idToIndexMap); } catch (Exception e) { @@ -2420,11 +2423,11 @@ public virtual async Task StartAnalyzeHealthAsync(IEnume } } - private AnalyzeHealthOperation StartAnalyzeHealth(MultiLanguageBatchInput batchInput, AnalyzeHealthOptions options, CancellationToken cancellationToken = default) + private HealthcareOperation StartHealthcare(MultiLanguageBatchInput batchInput, HealthcareOptions options, CancellationToken cancellationToken = default) { - options ??= new AnalyzeHealthOptions(); + options ??= new HealthcareOptions(); - using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartAnalyzeHealth)}"); + using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartHealthcare)}"); scope.Start(); try @@ -2432,7 +2435,9 @@ private AnalyzeHealthOperation StartAnalyzeHealth(MultiLanguageBatchInput batchI ResponseWithHeaders response = _serviceRestClient.Health(batchInput, options.ModelVersion, _stringCodeUnit, cancellationToken); string location = response.Headers.OperationLocation; - return new AnalyzeHealthOperation(_serviceRestClient, _clientDiagnostics, location, batchInput); + IDictionary idToIndexMap = CreateIdToIndexMap(batchInput.Documents); + + return new HealthcareOperation(_serviceRestClient, _clientDiagnostics, location, idToIndexMap); } catch (Exception e) { @@ -2441,11 +2446,11 @@ private AnalyzeHealthOperation StartAnalyzeHealth(MultiLanguageBatchInput batchI } } - private async Task StartAnalyzeHealthAsync(MultiLanguageBatchInput batchInput, AnalyzeHealthOptions options, CancellationToken cancellationToken = default) + private async Task StartHealthcareAsync(MultiLanguageBatchInput batchInput, HealthcareOptions options, CancellationToken cancellationToken = default) { - options ??= new AnalyzeHealthOptions(); + options ??= new HealthcareOptions(); - using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartAnalyzeHealth)}"); + using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartHealthcare)}"); scope.Start(); try @@ -2453,7 +2458,9 @@ private async Task StartAnalyzeHealthAsync(MultiLanguage ResponseWithHeaders response = await _serviceRestClient.HealthAsync(batchInput, options.ModelVersion, _stringCodeUnit, cancellationToken).ConfigureAwait(false); string location = response.Headers.OperationLocation; - return new AnalyzeHealthOperation(_serviceRestClient, _clientDiagnostics, location, batchInput, options.Top, options.Skip, options.ShowStats); + IDictionary idToIndexMap = CreateIdToIndexMap(batchInput.Documents); + + return new HealthcareOperation(_serviceRestClient, _clientDiagnostics, location, idToIndexMap, options.Top, options.Skip, options.ShowStats); } catch (Exception e) { @@ -2468,7 +2475,7 @@ private async Task StartAnalyzeHealthAsync(MultiLanguage // Look for other alternatives of operation cancellation #pragma warning disable AZC0003 // DO make service methods virtual. #pragma warning disable AZC0015 // Unexpected client method return type. - public async Task StartCancelHealthJobAsync(AnalyzeHealthOperation operation, CancellationToken cancellationToken = default) + public async Task StartCancelHealthJobAsync(HealthcareOperation operation, CancellationToken cancellationToken = default) #pragma warning restore AZC0015 // Unexpected client method return type. #pragma warning restore AZC0003 // DO make service methods virtual. { @@ -2494,7 +2501,7 @@ public async Task StartCancelHealthJobAsync(AnalyzeHealthOperation opera /// The cancellation token to use. #pragma warning disable AZC0003 // DO make service methods virtual. #pragma warning disable AZC0015 // Unexpected client method return type. - public string StartCancelHealthJob(AnalyzeHealthOperation operation, CancellationToken cancellationToken = default) + public string StartCancelHealthJob(HealthcareOperation operation, CancellationToken cancellationToken = default) #pragma warning restore AZC0015 // Unexpected client method return type. #pragma warning restore AZC0003 // DO make service methods virtual. { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs index 26a07e494f619..39c94ef847917 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs @@ -26,7 +26,7 @@ public async Task Healthcare() #region Snippet:Healthcare string document = "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; - AnalyzeHealthOperation healthOperation = client.StartAnalyzeHealth(document); + HealthcareOperation healthOperation = client.StartHealthcare(document); await healthOperation.WaitForCompletionAsync(); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs index e1b387d268984..f1956522ae478 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs @@ -27,7 +27,7 @@ public async Task HealthcareAsync() #region Snippet:HealthcareAsync string document = "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; - AnalyzeHealthOperation healthOperation = await client.StartAnalyzeHealthAsync(document); + HealthcareOperation healthOperation = await client.StartHealthcareAsync(document); await healthOperation.WaitForCompletionAsync(); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Cancellation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Cancellation.cs index f6f1259fb7579..2427857f86612 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Cancellation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Cancellation.cs @@ -26,7 +26,7 @@ public async Task HealthcareAsyncCancellation() #region Snippet:HealthcareAsyncCancellation string document = "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; - AnalyzeHealthOperation healthOperation = await client.StartAnalyzeHealthAsync(document); + HealthcareOperation healthOperation = await client.StartHealthcareAsync(document); await client.StartCancelHealthJobAsync(healthOperation); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs index 47fb96cb96666..2411305b75fb4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs @@ -34,14 +34,14 @@ public async Task HealthcareAsyncShowStats() document, }; - AnalyzeHealthOptions options = new AnalyzeHealthOptions() + HealthcareOptions options = new HealthcareOptions() { Top = 1, Skip = 0, ShowStats = true }; - AnalyzeHealthOperation healthOperation = await client.StartAnalyzeHealthAsync(batchInput, "en", options); + HealthcareOperation healthOperation = await client.StartHealthcareAsync(batchInput, "en", options); await healthOperation.WaitForCompletionAsync(); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs index 6a57e6d878b37..87f9535e7d8fb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs @@ -26,7 +26,7 @@ public void HealthcareCancellation() #region Snippet:HealthcareCancellation string document = "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; - AnalyzeHealthOperation healthOperation = client.StartAnalyzeHealth(document); + HealthcareOperation healthOperation = client.StartHealthcare(document); client.StartCancelHealthJob(healthOperation); } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs index 522005f54d9ee..8559e11d4973f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs @@ -33,14 +33,14 @@ public async Task HealthcareShowStats() document, }; - AnalyzeHealthOptions options = new AnalyzeHealthOptions() + HealthcareOptions options = new HealthcareOptions() { Top = 1, Skip = 0, ShowStats = true }; - AnalyzeHealthOperation healthOperation = client.StartAnalyzeHealth(batchInput, "en", options); + HealthcareOperation healthOperation = client.StartHealthcare(batchInput, "en", options); await healthOperation.WaitForCompletionAsync(); From 03f77e55b2d93d31a80010cf782cdf27006444c8 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Sun, 1 Nov 2020 20:01:20 -0800 Subject: [PATCH 11/58] resolved warnings for adding docstring --- .../src/Azure.AI.TextAnalytics.csproj | 3 +- .../src/DocumentHealthcareEntities.cs | 3 ++ .../src/EntitiesTask.cs | 5 +++ .../src/EntitiesTaskParameters.cs | 25 +++++++++++++++ .../src/Generated/Models/EntitiesTask.cs | 2 -- .../Models/EntitiesTaskParameters.cs | 3 -- .../src/Generated/Models/KeyPhrasesTask.cs | 2 -- .../src/Generated/Models/PiiTask.cs | 4 --- .../Models/PiiTaskParameters.Serialization.cs | 2 +- .../src/Generated/Models/PiiTaskParameters.cs | 8 ++--- .../src/Generated/Models/TaskState.cs | 20 ------------ .../src/HealthcareOptions.cs | 17 ++++------ .../src/HealthcareRelation.cs | 4 ++- .../src/KeyPhrasesTask.cs | 6 ++++ .../Azure.AI.TextAnalytics/src/PiiTask.cs | 6 ++++ .../src/PiiTaskParameters.cs | 30 +++++++++++++++++ .../Azure.AI.TextAnalytics/src/TaskState.cs | 32 +++++++++++++++++++ .../src/TextAnalyticsClient.cs | 2 +- .../Sample_HealthcareAsync_ShowStats.cs | 2 +- .../samples/Sample_Healthcare_ShowStats.cs | 2 +- 20 files changed, 124 insertions(+), 54 deletions(-) create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTaskParameters.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParameters.cs diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Azure.AI.TextAnalytics.csproj b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Azure.AI.TextAnalytics.csproj index 2a61b84017acd..3e8251cd227f6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Azure.AI.TextAnalytics.csproj +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Azure.AI.TextAnalytics.csproj @@ -6,7 +6,8 @@ 5.0.0 Microsoft Azure Text Analytics $(RequiredTargetFrameworks) - $(NoWarn);3021;AZC0012;CS1591 + + $(NoWarn);3021;AZC0012 diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntities.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntities.cs index d5ddc75b47be6..df2a046092c6e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntities.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntities.cs @@ -10,6 +10,9 @@ namespace Azure.AI.TextAnalytics { + /// + /// DocumentHealthcareEntities. + /// public partial class DocumentHealthcareEntities { /// Initializes a new instance of DocumentHealthcareEntities. diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTask.cs index 601a6d3c4c8f7..0076427a8d0e2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTask.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTask.cs @@ -9,5 +9,10 @@ namespace Azure.AI.TextAnalytics [CodeGenModel("EntitiesTask")] public partial class EntitiesTask { + /// + /// Parameters for EntitiesTask + /// + public EntitiesTaskParameters Parameters { get; set; } + } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTaskParameters.cs new file mode 100644 index 0000000000000..6f17935f57318 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTaskParameters.cs @@ -0,0 +1,25 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + /// + /// EntitiesTaskParameters class. + /// + [CodeGenModel("EntitiesTaskParameters")] + public partial class EntitiesTaskParameters + { + /// + /// ModelVersion + /// + public string ModelVersion { get; set; } + + /// + /// StringIndexType + /// + public StringIndexType? StringIndexType { get; set; } + + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTask.cs index ccf098d49f849..e7b5290a7b8be 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTask.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTask.cs @@ -16,7 +16,5 @@ public partial class EntitiesTask public EntitiesTask() { } - - public EntitiesTaskParameters Parameters { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.cs index 0605d2c316da2..94fada23dffc0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.cs @@ -16,8 +16,5 @@ public partial class EntitiesTaskParameters public EntitiesTaskParameters() { } - - public string ModelVersion { get; set; } - public StringIndexTypeResponse? StringIndexType { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.cs index 9a7829566a6bd..ab6997f7053ae 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.cs @@ -16,7 +16,5 @@ public partial class KeyPhrasesTask public KeyPhrasesTask() { } - - public KeyPhrasesTaskParameters Parameters { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTask.cs index d70b0209130fe..d503f7f3cdabe 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTask.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTask.cs @@ -5,8 +5,6 @@ #nullable disable -using Azure.AI.TextAnalytics.Models; - namespace Azure.AI.TextAnalytics { /// The PiiTask. @@ -16,7 +14,5 @@ public partial class PiiTask public PiiTask() { } - - public PiiTaskParameters Parameters { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.Serialization.cs index b13398500eae0..3405f6b5dd65e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.Serialization.cs @@ -8,7 +8,7 @@ using System.Text.Json; using Azure.Core; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { public partial class PiiTaskParameters : IUtf8JsonSerializable { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.cs index 3d861dde663d4..a8a6e5b5e6b65 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParameters.cs @@ -5,9 +5,9 @@ #nullable disable -using Azure.AI.TextAnalytics; +using Azure.AI.TextAnalytics.Models; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { /// The PiiTaskParameters. public partial class PiiTaskParameters @@ -16,9 +16,5 @@ public partial class PiiTaskParameters public PiiTaskParameters() { } - - public PiiTaskParametersDomain? Domain { get; set; } - public string ModelVersion { get; set; } - public StringIndexTypeResponse? StringIndexType { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.cs index 3313af9a7247b..488deddd9a86a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.cs @@ -12,25 +12,5 @@ namespace Azure.AI.TextAnalytics /// The TaskState. public partial class TaskState { - /// Initializes a new instance of TaskState. - /// . - /// . - /// . - /// is null. - internal TaskState(DateTimeOffset lastUpdateDateTime, string name, JobStatus status) - { - if (name == null) - { - throw new ArgumentNullException(nameof(name)); - } - - LastUpdateDateTime = lastUpdateDateTime; - Name = name; - Status = status; - } - - public DateTimeOffset LastUpdateDateTime { get; } - public string Name { get; } - public JobStatus Status { get; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOptions.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOptions.cs index 96a866bded359..92e32144b0c9d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOptions.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOptions.cs @@ -18,18 +18,13 @@ public HealthcareOptions() } /// - /// Initializes a new instance of the - /// class. + /// The first top documents from the result. /// - public HealthcareOptions(int? top = null, int? skip = null, bool? showStats = null) - { - Top = top; - Skip = skip; - ShowStats = showStats; - } + public int? Top { get; set; } - public int? Top { get; internal set; } - public int? Skip { get; internal set; } - public bool? ShowStats { get; internal set; } + /// + /// The skipped documents from the result. The Skip is called first when used with Top. + /// + public int? Skip { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareRelation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareRelation.cs index d29a2f885618a..4474ccb0a2a7b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareRelation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareRelation.cs @@ -7,10 +7,12 @@ using System.Linq; using System.Text.RegularExpressions; using Azure.AI.TextAnalytics.Models; -using Azure.Core; namespace Azure.AI.TextAnalytics { + /// + /// HealthcareRelation class. + /// public partial class HealthcareRelation { /// Initializes a new instance of HealthcareRelation. diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhrasesTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhrasesTask.cs index 8ae75f92222a5..838e2a510c03e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhrasesTask.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhrasesTask.cs @@ -2,6 +2,7 @@ // Licensed under the MIT License. using System.Collections.Generic; +using Azure.AI.TextAnalytics.Models; using Azure.Core; namespace Azure.AI.TextAnalytics @@ -9,5 +10,10 @@ namespace Azure.AI.TextAnalytics [CodeGenModel("KeyPhrasesTask")] public partial class KeyPhrasesTask { + /// + /// Parameters for KeyPhrasesTask + /// + public KeyPhrasesTaskParameters Parameters { get; set; } + } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTask.cs index eede1e2e2588f..5d098b5aa49ef 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTask.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTask.cs @@ -8,5 +8,11 @@ namespace Azure.AI.TextAnalytics [CodeGenModel("PiiTask")] public partial class PiiTask { + + /// + /// Parameters for PiiTask + /// + public PiiTaskParameters Parameters { get; set; } + } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParameters.cs new file mode 100644 index 0000000000000..1d0b79e94a057 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParameters.cs @@ -0,0 +1,30 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.AI.TextAnalytics.Models; +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + /// + /// PiiTaskParameters class. + /// + [CodeGenModel("PiiTaskParameters")] + public partial class PiiTaskParameters + { + /// + /// ModelVersion + /// + public string ModelVersion { get; set; } + + /// + /// StringIndexType + /// + public StringIndexType? StringIndexType { get; set; } + + /// + /// PiiTaskParametersDomain + /// + public PiiTaskParametersDomain? Domain { get; set; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TaskState.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TaskState.cs index f4eb29ea35611..430ec5a72818a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TaskState.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TaskState.cs @@ -1,6 +1,7 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +using System; using Azure.Core; namespace Azure.AI.TextAnalytics @@ -8,5 +9,36 @@ namespace Azure.AI.TextAnalytics [CodeGenModel("TaskState")] public partial class TaskState { + /// Initializes a new instance of TaskState. + /// . + /// . + /// . + /// is null. + internal TaskState(DateTimeOffset lastUpdateDateTime, string name, JobStatus status) + { + if (name == null) + { + throw new ArgumentNullException(nameof(name)); + } + + LastUpdateDateTime = lastUpdateDateTime; + Name = name; + Status = status; + } + + /// + /// Last updated time. + /// + public DateTimeOffset LastUpdateDateTime { get; } + + /// + /// Name for the Task. + /// + public string Name { get; } + + /// + /// Status for Task. + /// + public JobStatus Status { get; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index a6a7d4380e8cb..62d076e170438 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -2460,7 +2460,7 @@ private async Task StartHealthcareAsync(MultiLanguageBatchI IDictionary idToIndexMap = CreateIdToIndexMap(batchInput.Documents); - return new HealthcareOperation(_serviceRestClient, _clientDiagnostics, location, idToIndexMap, options.Top, options.Skip, options.ShowStats); + return new HealthcareOperation(_serviceRestClient, _clientDiagnostics, location, idToIndexMap, options.Top, options.Skip, options.IncludeStatistics); } catch (Exception e) { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs index 2411305b75fb4..c179d7cee362c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs @@ -38,7 +38,7 @@ public async Task HealthcareAsyncShowStats() { Top = 1, Skip = 0, - ShowStats = true + IncludeStatistics = true }; HealthcareOperation healthOperation = await client.StartHealthcareAsync(batchInput, "en", options); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs index 8559e11d4973f..85da4370eef0a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs @@ -37,7 +37,7 @@ public async Task HealthcareShowStats() { Top = 1, Skip = 0, - ShowStats = true + IncludeStatistics = true }; HealthcareOperation healthOperation = client.StartHealthcare(batchInput, "en", options); From 3e7106bf53cdd24d3cdb8a7f3d60ddc05f2da0ce Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Sun, 1 Nov 2020 20:35:35 -0800 Subject: [PATCH 12/58] removed unused functions from CLientCOmmon.cs --- .../src/ClientCommon.cs | 36 ------------------- 1 file changed, 36 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/ClientCommon.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/ClientCommon.cs index a4d340de31c71..ce837f6af4b96 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/ClientCommon.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/ClientCommon.cs @@ -12,42 +12,6 @@ namespace Azure.AI.TextAnalytics { internal static class ClientCommon { - /// - /// Used as part of argument validation. Attempts to create a from a string and - /// throws an in case of failure. - /// - /// The model identifier to be parsed into a . - /// The original parameter name of the . Used to create exceptions in case of failure. - /// The instance created from the . - /// Thrown when parsing fails. - public static Guid ValidateModelId(string modelId, string paramName) - { - Guid guid; - - try - { - guid = new Guid(modelId); - } - catch (Exception ex) when (ex is FormatException || ex is OverflowException) - { - throw new ArgumentException($"The {paramName} must be a valid GUID.", paramName, ex); - } - - return guid; - } - - public static string GetResponseHeader(ResponseHeaders responseHeaders, string headerName) - { - if (responseHeaders.TryGetValue(headerName, out var headerValue)) - { - return headerValue; - } - else - { - throw new KeyNotFoundException($"Header '{headerName}' was not present in the response sent by the server."); - } - } - public static async ValueTask CreateExceptionForFailedOperationAsync(bool async, ClientDiagnostics diagnostics, Response response, IReadOnlyList errors, string errorMessage = default) { string errorCode = default; From ac28683ccfa8168ab7929ac3065816c3b1392603 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Sun, 1 Nov 2020 21:04:42 -0800 Subject: [PATCH 13/58] resolve comments --- .../src/DocumentHealthcareEntities.cs | 52 +------------------ .../tests/samples/Sample_HealthcareAsync.cs | 4 +- 2 files changed, 3 insertions(+), 53 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntities.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntities.cs index df2a046092c6e..154fe9e7fe7d3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntities.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntities.cs @@ -15,37 +15,6 @@ namespace Azure.AI.TextAnalytics /// public partial class DocumentHealthcareEntities { - /// Initializes a new instance of DocumentHealthcareEntities. - /// Unique, non-empty document identifier. - /// Healthcare entities. - /// Healthcare entity relations. - /// Warnings encountered while processing document. - /// , , , or is null. - internal DocumentHealthcareEntities(string id, IEnumerable entities, IEnumerable relations, IEnumerable warnings) - { - if (id == null) - { - throw new ArgumentNullException(nameof(id)); - } - if (entities == null) - { - throw new ArgumentNullException(nameof(entities)); - } - if (relations == null) - { - throw new ArgumentNullException(nameof(relations)); - } - if (warnings == null) - { - throw new ArgumentNullException(nameof(warnings)); - } - - Id = id; - Entities = entities.ToList(); - Relations = ResolveHealthcareRelations(entities, relations); - Warnings = Transforms.ConvertToWarnings(warnings.ToList()); - } - internal DocumentHealthcareEntities(DocumentHealthcareEntitiesInternal documentHealthcareEntities) { Entities = documentHealthcareEntities.Entities; @@ -54,21 +23,6 @@ internal DocumentHealthcareEntities(DocumentHealthcareEntitiesInternal documentH Warnings = documentHealthcareEntities.Warnings != null ? Transforms.ConvertToWarnings(documentHealthcareEntities.Warnings) : null; } - /// Initializes a new instance of DocumentHealthcareEntities. - /// Unique, non-empty document identifier. - /// Healthcare entities. - /// Healthcare entity relations. - /// Warnings encountered while processing document. - /// if showStats=true was specified in the request this field will contain information about the document payload. - internal DocumentHealthcareEntities(string id, IReadOnlyList entities, IReadOnlyList relations, IReadOnlyList warnings, TextDocumentStatistics? statistics) - { - Id = id; - Entities = entities; - Relations = ResolveHealthcareRelations(entities, relations); - Warnings = Transforms.ConvertToWarnings(warnings); - Statistics = statistics; - } - internal static IReadOnlyList ResolveHealthcareRelations(IEnumerable entities, IEnumerable relations) { List list = new List(); @@ -102,14 +56,10 @@ internal static HealthcareEntity ResolveHealthcareEntity(IEnumerable Date: Sun, 1 Nov 2020 22:21:14 -0800 Subject: [PATCH 14/58] resolved comments --- .../src/Azure.AI.TextAnalytics.csproj | 1 + .../DocumentHealthcareEntitiesCollection.cs | 25 -------- ...ntities.cs => DocumentHealthcareResult.cs} | 18 +++++- .../Models/HealthcareEntity.Serialization.cs | 3 +- .../src/Generated/Models/HealthcareEntity.cs | 5 +- .../StringIndexTypeResponse.Serialization.cs | 30 +++++++++ .../Models/StringIndexTypeResponse.cs | 44 ++----------- .../src/HealthcareEntity.cs | 9 +-- .../src/HealthcareOperation.cs | 2 +- .../src/HealthcareRelation.cs | 26 -------- .../src/OperationHelpers.cs | 62 ------------------- ...gnizeHealthcareEntitiesResultCollection.cs | 4 +- .../src/RecognizeHealthcareEntititesResult.cs | 14 ++--- .../src/StringIndexTypeResponse.cs | 12 ---- .../src/TextAnalyticsErrorCode.cs | 5 ++ .../Azure.AI.TextAnalytics/src/Transforms.cs | 12 ++-- .../tests/samples/Sample_Healthcare.cs | 18 +----- .../tests/samples/Sample_HealthcareAsync.cs | 42 +++++-------- .../Sample_HealthcareAsync_ShowStats.cs | 46 ++++++-------- .../samples/Sample_Healthcare_ShowStats.cs | 44 ++++++------- 20 files changed, 129 insertions(+), 293 deletions(-) delete mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntitiesCollection.cs rename sdk/textanalytics/Azure.AI.TextAnalytics/src/{DocumentHealthcareEntities.cs => DocumentHealthcareResult.cs} (81%) create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexTypeResponse.Serialization.cs delete mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/OperationHelpers.cs delete mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexTypeResponse.cs diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Azure.AI.TextAnalytics.csproj b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Azure.AI.TextAnalytics.csproj index 3e8251cd227f6..29e8a533be579 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Azure.AI.TextAnalytics.csproj +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Azure.AI.TextAnalytics.csproj @@ -28,5 +28,6 @@ + diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntitiesCollection.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntitiesCollection.cs deleted file mode 100644 index a4eea41575312..0000000000000 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntitiesCollection.cs +++ /dev/null @@ -1,25 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -using System.Collections.Generic; -using System.Collections.ObjectModel; - -namespace Azure.AI.TextAnalytics -{ - /// - /// Collection of objects in a document. - /// - public class DocumentHealthcareEntitiesCollection : ReadOnlyCollection - { - internal DocumentHealthcareEntitiesCollection(IList entities, IList warnings) - : base(entities) - { - Warnings = new ReadOnlyCollection(warnings); - } - - /// - /// Warnings encountered while processing the document. - /// - public IReadOnlyCollection Warnings { get; } - } -} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntities.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareResult.cs similarity index 81% rename from sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntities.cs rename to sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareResult.cs index 154fe9e7fe7d3..4a95ef5556e35 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareEntities.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareResult.cs @@ -13,9 +13,9 @@ namespace Azure.AI.TextAnalytics /// /// DocumentHealthcareEntities. /// - public partial class DocumentHealthcareEntities + public partial class DocumentHealthcareResult { - internal DocumentHealthcareEntities(DocumentHealthcareEntitiesInternal documentHealthcareEntities) + internal DocumentHealthcareResult(DocumentHealthcareEntitiesInternal documentHealthcareEntities) { Entities = documentHealthcareEntities.Entities; Relations = ResolveHealthcareRelations(documentHealthcareEntities.Entities, documentHealthcareEntities.Relations); @@ -23,6 +23,17 @@ internal DocumentHealthcareEntities(DocumentHealthcareEntitiesInternal documentH Warnings = documentHealthcareEntities.Warnings != null ? Transforms.ConvertToWarnings(documentHealthcareEntities.Warnings) : null; } + /// + /// Initializes a new instance of the class. + /// + /// + /// + public DocumentHealthcareResult(string id, TextAnalyticsError textAnalyticsError) + { + Id = id; + TextAnalyticsError = textAnalyticsError; + } + internal static IReadOnlyList ResolveHealthcareRelations(IEnumerable entities, IEnumerable relations) { List list = new List(); @@ -48,6 +59,9 @@ internal static IReadOnlyList ResolveHealthcareRelations(IEn /// if showStats=true was specified in the request this field will contain information about the document payload. public TextDocumentStatistics? Statistics { get; } + /// TextAnalyticsError. + public TextAnalyticsError TextAnalyticsError { get; } + private static Regex _healthcareEntityRegex = new Regex(@"\#/results/documents\/(?\d*)\/entities\/(?\d*)$", RegexOptions.Compiled, TimeSpan.FromSeconds(2)); internal static HealthcareEntity ResolveHealthcareEntity(IEnumerable entities, string reference) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntity.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntity.Serialization.cs index 8fe86c4c959f3..d2a73b85b5048 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntity.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntity.Serialization.cs @@ -7,10 +7,9 @@ using System.Collections.Generic; using System.Text.Json; -using Azure.AI.TextAnalytics; using Azure.Core; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { public partial class HealthcareEntity { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntity.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntity.cs index 6842152a11bac..2d817694fa049 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntity.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareEntity.cs @@ -7,10 +7,9 @@ using System; using System.Collections.Generic; -using Azure.AI.TextAnalytics; using Azure.Core; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { /// The HealthcareEntity. public partial class HealthcareEntity : Entity @@ -52,5 +51,7 @@ internal HealthcareEntity(string text, string category, string subcategory, int IsNegated = isNegated; Links = links; } + /// Entity references in known data sources. + public IReadOnlyList Links { get; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexTypeResponse.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexTypeResponse.Serialization.cs new file mode 100644 index 0000000000000..7a7fd9743004b --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexTypeResponse.Serialization.cs @@ -0,0 +1,30 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; + +namespace Azure.AI.TextAnalytics.Models +{ + internal static class StringIndexTypeResponseExtensions + { + public static string ToSerialString(this StringIndexTypeResponse value) => value switch + { + StringIndexTypeResponse.TextElementsV8 => "TextElements_v8", + StringIndexTypeResponse.UnicodeCodePoint => "UnicodeCodePoint", + StringIndexTypeResponse.Utf16CodeUnit => "Utf16CodeUnit", + _ => throw new ArgumentOutOfRangeException(nameof(value), value, "Unknown StringIndexTypeResponse value.") + }; + + public static StringIndexTypeResponse ToStringIndexTypeResponse(this string value) + { + if (string.Equals(value, "TextElements_v8", StringComparison.InvariantCultureIgnoreCase)) return StringIndexTypeResponse.TextElementsV8; + if (string.Equals(value, "UnicodeCodePoint", StringComparison.InvariantCultureIgnoreCase)) return StringIndexTypeResponse.UnicodeCodePoint; + if (string.Equals(value, "Utf16CodeUnit", StringComparison.InvariantCultureIgnoreCase)) return StringIndexTypeResponse.Utf16CodeUnit; + throw new ArgumentOutOfRangeException(nameof(value), value, "Unknown StringIndexTypeResponse value."); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexTypeResponse.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexTypeResponse.cs index cbac7d6aea201..80ef2a7a9bbeb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexTypeResponse.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexTypeResponse.cs @@ -5,50 +5,16 @@ #nullable disable -using System; -using System.ComponentModel; - -namespace Azure.AI.TextAnalytics +namespace Azure.AI.TextAnalytics.Models { /// The StringIndexTypeResponse. - public readonly partial struct StringIndexTypeResponse : IEquatable + internal enum StringIndexTypeResponse { - private readonly string _value; - - /// Determines if two values are the same. - /// is null. - public StringIndexTypeResponse(string value) - { - _value = value ?? throw new ArgumentNullException(nameof(value)); - } - - private const string TextElementsV8Value = "TextElements_v8"; - private const string UnicodeCodePointValue = "UnicodeCodePoint"; - private const string Utf16CodeUnitValue = "Utf16CodeUnit"; - /// Returned offset and length values will correspond to TextElements (Graphemes and Grapheme clusters) confirming to the Unicode 8.0.0 standard. Use this option if your application is written in .Net Framework or .Net Core and you will be using StringInfo. - public static StringIndexTypeResponse TextElementsV8 { get; } = new StringIndexTypeResponse(TextElementsV8Value); + TextElementsV8, /// Returned offset and length values will correspond to Unicode code points. Use this option if your application is written in a language that support Unicode, for example Python. - public static StringIndexTypeResponse UnicodeCodePoint { get; } = new StringIndexTypeResponse(UnicodeCodePointValue); + UnicodeCodePoint, /// Returned offset and length values will correspond to UTF-16 code units. Use this option if your application is written in a language that support Unicode, for example Java, JavaScript. - public static StringIndexTypeResponse Utf16CodeUnit { get; } = new StringIndexTypeResponse(Utf16CodeUnitValue); - /// Determines if two values are the same. - public static bool operator ==(StringIndexTypeResponse left, StringIndexTypeResponse right) => left.Equals(right); - /// Determines if two values are not the same. - public static bool operator !=(StringIndexTypeResponse left, StringIndexTypeResponse right) => !left.Equals(right); - /// Converts a string to a . - public static implicit operator StringIndexTypeResponse(string value) => new StringIndexTypeResponse(value); - - /// - [EditorBrowsable(EditorBrowsableState.Never)] - public override bool Equals(object obj) => obj is StringIndexTypeResponse other && Equals(other); - /// - public bool Equals(StringIndexTypeResponse other) => string.Equals(_value, other._value, StringComparison.InvariantCultureIgnoreCase); - - /// - [EditorBrowsable(EditorBrowsableState.Never)] - public override int GetHashCode() => _value?.GetHashCode() ?? 0; - /// - public override string ToString() => _value; + Utf16CodeUnit } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntity.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntity.cs index c6c68ba958cfe..416647ac15f0a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntity.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntity.cs @@ -4,7 +4,7 @@ using System.Collections.Generic; using Azure.Core; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { [CodeGenModel("HealthcareEntity")] public partial class HealthcareEntity @@ -12,14 +12,7 @@ public partial class HealthcareEntity /// /// IsNegated /// - [CodeGenMember("IsNegated")] public bool IsNegated { get; } - /// - /// Links - /// - [CodeGenMember("Links")] - public IReadOnlyList Links { get; } - } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs index 833f74e7d05b4..af01a16a4cd96 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs @@ -202,7 +202,7 @@ private async ValueTask UpdateStatusAsync(bool async, CancellationToke if (update.Value.Status == JobStatus.Succeeded) { // we need to first assign a vaue and then mark the operation as completed to avoid race conditions - _value = Transforms.ConvertToRecognizeHealthcareEntitiesResultCollection(update.Value.Results, _idToIndexMap); + _value = Transforms.ConvertToRecognizeHealthcareEntitiesResultCollection(update.Value.Results); _hasCompleted = true; } else if (update.Value.Status == JobStatus.Failed) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareRelation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareRelation.cs index 4474ccb0a2a7b..b4181cec47a80 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareRelation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareRelation.cs @@ -2,11 +2,6 @@ // Licensed under the MIT License. using System; -using System.Collections.Generic; -using System.Globalization; -using System.Linq; -using System.Text.RegularExpressions; -using Azure.AI.TextAnalytics.Models; namespace Azure.AI.TextAnalytics { @@ -42,27 +37,6 @@ internal HealthcareRelation(string relationType, bool bidirectional, HealthcareE Target = target; } - private static Regex _healthcareEntityRegex = new Regex(@"\#/results/documents\/(?\d*)\/entities\/(?\d*)$", RegexOptions.Compiled, TimeSpan.FromSeconds(2)); - - internal static HealthcareEntity ResolveHealthcareEntity(IEnumerable entities, string reference) - { - var healthcareEntityMatch = _healthcareEntityRegex.Match(reference); - if (healthcareEntityMatch.Success) - { - int entityIndex = int.Parse(healthcareEntityMatch.Groups["entityIndex"].Value, CultureInfo.InvariantCulture); - //int entityIndex = int.Parse(healthcareEntityMatch.Groups[2].Value, CultureInfo.InvariantCulture); - - if (entityIndex < entities.Count()) - { - var entity = entities.ElementAt(entityIndex); - return new HealthcareEntity(entity.Text, entity.Category, - entity.Offset, entity.Length, entity.ConfidenceScore, - entity.IsNegated); - } - } - - throw new InvalidOperationException($"Failed to parse element reference: {reference}"); - } /// /// Source Entity /// diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/OperationHelpers.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/OperationHelpers.cs deleted file mode 100644 index 40636c644ce90..0000000000000 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/OperationHelpers.cs +++ /dev/null @@ -1,62 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -using System; -using System.Threading; -using System.Threading.Tasks; - -#nullable enable - -namespace Azure.Core -{ - internal static class OperationHelpers - { - public static TimeSpan DefaultPollingInterval { get; } = TimeSpan.FromSeconds(1); - - public static T GetValue(ref T? value) where T : class - { - if (value is null) - { - throw new InvalidOperationException("The operation has not completed yet."); - } - - return value; - } - - public static T GetValue(ref T? value) where T : struct - { - if (value == null) - { - throw new InvalidOperationException("The operation has not completed yet."); - } - - return value.Value; - } - - public static ValueTask> DefaultWaitForCompletionAsync(this Operation operation, CancellationToken cancellationToken) - where TResult : notnull - { - return operation.WaitForCompletionAsync(DefaultPollingInterval, cancellationToken); - } - - public static async ValueTask> DefaultWaitForCompletionAsync(this Operation operation, TimeSpan pollingInterval, CancellationToken cancellationToken) - where TResult : notnull - { - while (true) - { - await operation.UpdateStatusAsync(cancellationToken).ConfigureAwait(false); - if (operation.HasCompleted) - { - return Response.FromValue(operation.Value, operation.GetRawResponse()); - } - - await Task.Delay(pollingInterval, cancellationToken).ConfigureAwait(false); - } - } - - internal static Guid GetValue() - { - throw new NotImplementedException(); - } - } -} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntitiesResultCollection.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntitiesResultCollection.cs index ed670ebde5b34..fe5fcd98620b6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntitiesResultCollection.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntitiesResultCollection.cs @@ -11,14 +11,14 @@ namespace Azure.AI.TextAnalytics /// Collection of objects corresponding /// to a batch of documents, and information about the batch operation. /// - public class RecognizeHealthcareEntitiesResultCollection : ReadOnlyCollection + public class RecognizeHealthcareEntitiesResultCollection : ReadOnlyCollection { /// /// /// /// /// - internal RecognizeHealthcareEntitiesResultCollection(IList list, TextDocumentBatchStatistics statistics, string modelVersion) : base(list) + internal RecognizeHealthcareEntitiesResultCollection(IList list, TextDocumentBatchStatistics statistics, string modelVersion) : base(list) { Statistics = statistics; ModelVersion = modelVersion; diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntititesResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntititesResult.cs index 5b9a617ab4c14..24b91d1f748e4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntititesResult.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntititesResult.cs @@ -6,18 +6,18 @@ namespace Azure.AI.TextAnalytics { /// - /// The result of the recognize entities operation on a document, - /// containing a collection of the objects + /// The result of the recognize healthcare entities in a document, + /// containing a collection of the objects /// identified in that document. /// public class RecognizeHealthcareEntititesResult : TextAnalyticsResult { - private readonly DocumentHealthcareEntities _entities; + private readonly DocumentHealthcareResult _result; - internal RecognizeHealthcareEntititesResult(string id, TextDocumentStatistics statistics, DocumentHealthcareEntities entities) + internal RecognizeHealthcareEntititesResult(string id, TextDocumentStatistics statistics, DocumentHealthcareResult result) : base(id, statistics) { - _entities = entities; + _result = result; } internal RecognizeHealthcareEntititesResult(string id, TextAnalyticsError error) : base(id, error) { } @@ -25,7 +25,7 @@ internal RecognizeHealthcareEntititesResult(string id, TextAnalyticsError error) /// /// Gets the collection of named entities identified in the document. /// - public DocumentHealthcareEntities Entities + public DocumentHealthcareResult Result { get { @@ -35,7 +35,7 @@ public DocumentHealthcareEntities Entities throw new InvalidOperationException($"Cannot access result for document {Id}, due to error {Error.ErrorCode}: {Error.Message}"); #pragma warning restore CA1065 // Do not raise exceptions in unexpected locations } - return _entities; + return _result; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexTypeResponse.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexTypeResponse.cs deleted file mode 100644 index b86812a02b3c4..0000000000000 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexTypeResponse.cs +++ /dev/null @@ -1,12 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -using Azure.Core; - -namespace Azure.AI.TextAnalytics -{ - [CodeGenModel("StringIndexTypeResponse")] - public partial struct StringIndexTypeResponse - { - } -} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsErrorCode.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsErrorCode.cs index 8a673bdbcbc63..15c03358e723d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsErrorCode.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsErrorCode.cs @@ -79,6 +79,11 @@ namespace Azure.AI.TextAnalytics /// public static readonly string InvalidCountryHint = "InvalidCountryHint"; + /// + /// Specifies that the error code is a not found job. + /// + public static readonly string NotFound = "NotFound"; + private TextAnalyticsErrorCode(string errorCode) { Argument.AssertNotNullOrEmpty(errorCode, nameof(errorCode)); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs index 0e6ad14fde634..6290f943183b1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs @@ -222,27 +222,23 @@ internal static RecognizeLinkedEntitiesResultCollection ConvertToRecognizeLinked #region Healthcare - internal static RecognizeHealthcareEntitiesResultCollection ConvertToRecognizeHealthcareEntitiesResultCollection(HealthcareResult results, IDictionary idToIndexMap) + internal static RecognizeHealthcareEntitiesResultCollection ConvertToRecognizeHealthcareEntitiesResultCollection(HealthcareResult results) { - var healthcareEntititesResults = new List(); + var healthcareEntititesResults = new List(); //Read errors foreach (DocumentError error in results.Errors) { - healthcareEntititesResults.Add(new RecognizeHealthcareEntititesResult(error.Id, ConvertToError(error.Error))); + healthcareEntititesResults.Add(new DocumentHealthcareResult(error.Id, ConvertToError(error.Error))); } //Read entities foreach (DocumentHealthcareEntitiesInternal documentHealthcareEntities in results.Documents) { healthcareEntititesResults.Add( - new RecognizeHealthcareEntititesResult(documentHealthcareEntities.Id, - documentHealthcareEntities.Statistics ?? default, - new DocumentHealthcareEntities(documentHealthcareEntities))); + new DocumentHealthcareResult(documentHealthcareEntities)); } - healthcareEntititesResults = SortHeterogeneousCollection(healthcareEntititesResults, idToIndexMap); - return new RecognizeHealthcareEntitiesResultCollection(healthcareEntititesResults, results.Statistics, results.ModelVersion); } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs index 39c94ef847917..1079946433595 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs @@ -35,18 +35,11 @@ public async Task Healthcare() Console.WriteLine($"Results of Azure Text Analytics \"Healthcare\" Model, version: \"{results.ModelVersion}\""); Console.WriteLine(""); - foreach (RecognizeHealthcareEntititesResult result in results) + foreach (DocumentHealthcareResult result in results) { - if (result.HasError) - { - Console.WriteLine($" Document error code: {result.Error.ErrorCode}."); - Console.WriteLine($" Message: {result.Error.Message}."); - } - else - { - Console.WriteLine($" Recognized the following {result.Entities.Entities.Count} healthcare entities:"); + Console.WriteLine($" Recognized the following {result.Entities.Count} healthcare entities:"); - foreach (HealthcareEntity entity in result.Entities.Entities) + foreach (HealthcareEntity entity in result.Entities) { Console.WriteLine($" Entity: {entity.Text}"); Console.WriteLine($" Subcategory: {entity.Subcategory}"); @@ -61,12 +54,7 @@ public async Task Healthcare() Console.WriteLine($" DataSource: {healthcareEntityLink.DataSource}"); } } - - Console.WriteLine($" Document statistics:"); - Console.WriteLine($" Character count (in Unicode graphemes): {result.Statistics.CharacterCount}"); - Console.WriteLine($" Transaction count: {result.Statistics.TransactionCount}"); Console.WriteLine(""); - } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs index c760eafff06b8..7a85a21f80175 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs @@ -36,40 +36,26 @@ public async Task HealthcareAsync() Console.WriteLine($"Results of Azure Text Analytics \"Healthcare Async\" Model, version: \"{results.ModelVersion}\""); Console.WriteLine(""); - foreach (RecognizeHealthcareEntititesResult result in results) + foreach (DocumentHealthcareResult result in results) { - if (result.HasError) - { - Console.WriteLine($" Document error code: {result.Error.ErrorCode}."); - Console.WriteLine($" Message: {result.Error.Message}."); - } - else + Console.WriteLine($" Recognized the following {result.Entities.Count} healthcare entities:"); + + foreach (HealthcareEntity entity in result.Entities) { - Console.WriteLine($" Recognized the following {result.Entities.Entities.Count()} healthcare entities:"); + Console.WriteLine($" Entity: {entity.Text}"); + Console.WriteLine($" Subcategory: {entity.Subcategory}"); + Console.WriteLine($" Offset: {entity.Offset}"); + Console.WriteLine($" Length: {entity.Length}"); + Console.WriteLine($" IsNegated: {entity.IsNegated}"); + Console.WriteLine($" Links:"); - foreach (HealthcareEntity entity in result.Entities.Entities) + foreach (HealthcareEntityLink healthcareEntityLink in entity.Links) { - Console.WriteLine($" Entity: {entity.Text}"); - Console.WriteLine($" Subcategory: {entity.Subcategory}"); - Console.WriteLine($" Offset: {entity.Offset}"); - Console.WriteLine($" Length: {entity.Length}"); - Console.WriteLine($" IsNegated: {entity.IsNegated}"); - if (entity.Links.Count > 0) - { - Console.WriteLine($" Links:"); - foreach (HealthcareEntityLink healthcareEntityLink in entity.Links) - { - Console.WriteLine($" ID: {healthcareEntityLink.Id}"); - Console.WriteLine($" DataSource: {healthcareEntityLink.DataSource}"); - } - } + Console.WriteLine($" ID: {healthcareEntityLink.Id}"); + Console.WriteLine($" DataSource: {healthcareEntityLink.DataSource}"); } - - Console.WriteLine($" Document statistics:"); - Console.WriteLine($" Character count (in Unicode graphemes): {result.Statistics.CharacterCount}"); - Console.WriteLine($" Transaction count: {result.Statistics.TransactionCount}"); - Console.WriteLine(""); } + Console.WriteLine(""); } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs index c179d7cee362c..afe1ebfdd9f03 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs @@ -50,40 +50,30 @@ public async Task HealthcareAsyncShowStats() Console.WriteLine($"Results of Azure Text Analytics \"Healthcare Async\" Model, version: \"{results.ModelVersion}\""); Console.WriteLine(""); - foreach (RecognizeHealthcareEntititesResult result in results) + foreach (DocumentHealthcareResult result in results) { - if (result.HasError) - { - Console.WriteLine($" Document error code: {result.Error.ErrorCode}."); - Console.WriteLine($" Message: {result.Error.Message}."); - } - else + Console.WriteLine($" Recognized the following {result.Entities.Count} healthcare entities:"); + + foreach (HealthcareEntity entity in result.Entities) { - Console.WriteLine($" Recognized the following {result.Entities.Entities.Count()} healthcare entities:"); + Console.WriteLine($" Entity: {entity.Text}"); + Console.WriteLine($" Subcategory: {entity.Subcategory}"); + Console.WriteLine($" Offset: {entity.Offset}"); + Console.WriteLine($" Length: {entity.Length}"); + Console.WriteLine($" IsNegated: {entity.IsNegated}"); + Console.WriteLine($" Links:"); - foreach (HealthcareEntity entity in result.Entities.Entities) + foreach (HealthcareEntityLink healthcareEntityLink in entity.Links) { - Console.WriteLine($" Entity: {entity.Text}"); - Console.WriteLine($" Subcategory: {entity.Subcategory}"); - Console.WriteLine($" Offset: {entity.Offset}"); - Console.WriteLine($" Length: {entity.Length}"); - Console.WriteLine($" IsNegated: {entity.IsNegated}"); - if (entity.Links.Count > 0) - { - Console.WriteLine($" Links:"); - foreach (HealthcareEntityLink healthcareEntityLink in entity.Links) - { - Console.WriteLine($" ID: {healthcareEntityLink.Id}"); - Console.WriteLine($" DataSource: {healthcareEntityLink.DataSource}"); - } - } + Console.WriteLine($" ID: {healthcareEntityLink.Id}"); + Console.WriteLine($" DataSource: {healthcareEntityLink.DataSource}"); } - - Console.WriteLine($" Document statistics:"); - Console.WriteLine($" Character count (in Unicode graphemes): {result.Statistics.CharacterCount}"); - Console.WriteLine($" Transaction count: {result.Statistics.TransactionCount}"); - Console.WriteLine(""); } + + Console.WriteLine($" Document statistics:"); + Console.WriteLine($" Character count (in Unicode graphemes): {result.Statistics.Value.CharacterCount}"); + Console.WriteLine($" Transaction count: {result.Statistics.Value.TransactionCount}"); + Console.WriteLine(""); } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs index 85da4370eef0a..b7e36fd1e89dd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs @@ -49,38 +49,30 @@ public async Task HealthcareShowStats() Console.WriteLine($"Results of Azure Text Analytics \"Healthcare\" Model, version: \"{results.ModelVersion}\""); Console.WriteLine(""); - foreach (RecognizeHealthcareEntititesResult result in results) + foreach (DocumentHealthcareResult result in results) { - if (result.HasError) - { - Console.WriteLine($" Document error code: {result.Error.ErrorCode}."); - Console.WriteLine($" Message: {result.Error.Message}."); - } - else + Console.WriteLine($" Recognized the following {result.Entities.Count} healthcare entities:"); + + foreach (HealthcareEntity entity in result.Entities) { - Console.WriteLine($" Recognized the following {result.Entities.Entities.Count} healthcare entities:"); + Console.WriteLine($" Entity: {entity.Text}"); + Console.WriteLine($" Subcategory: {entity.Subcategory}"); + Console.WriteLine($" Offset: {entity.Offset}"); + Console.WriteLine($" Length: {entity.Length}"); + Console.WriteLine($" IsNegated: {entity.IsNegated}"); + Console.WriteLine($" Links:"); - foreach (HealthcareEntity entity in result.Entities.Entities) + foreach (HealthcareEntityLink healthcareEntityLink in entity.Links) { - Console.WriteLine($" Entity: {entity.Text}"); - Console.WriteLine($" Subcategory: {entity.Subcategory}"); - Console.WriteLine($" Offset: {entity.Offset}"); - Console.WriteLine($" Length: {entity.Length}"); - Console.WriteLine($" IsNegated: {entity.IsNegated}"); - Console.WriteLine($" Links:"); - - foreach (HealthcareEntityLink healthcareEntityLink in entity.Links) - { - Console.WriteLine($" ID: {healthcareEntityLink.Id}"); - Console.WriteLine($" DataSource: {healthcareEntityLink.DataSource}"); - } + Console.WriteLine($" ID: {healthcareEntityLink.Id}"); + Console.WriteLine($" DataSource: {healthcareEntityLink.DataSource}"); } - - Console.WriteLine($" Document statistics:"); - Console.WriteLine($" Character count (in Unicode graphemes): {result.Statistics.CharacterCount}"); - Console.WriteLine($" Transaction count: {result.Statistics.TransactionCount}"); - Console.WriteLine(""); } + + Console.WriteLine($" Document statistics:"); + Console.WriteLine($" Character count (in Unicode graphemes): {result.Statistics.Value.CharacterCount}"); + Console.WriteLine($" Transaction count: {result.Statistics.Value.TransactionCount}"); + Console.WriteLine(""); } } From ba3162e91145bb4acefb572faa15d019482f271f Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Sun, 1 Nov 2020 22:35:44 -0800 Subject: [PATCH 15/58] resolved comments --- .../tests/samples/Sample_Healthcare.cs | 4 +--- .../tests/samples/Sample_HealthcareAsync.cs | 4 +--- .../samples/Sample_HealthcareAsync_Cancellation.cs | 4 +--- .../samples/Sample_HealthcareAsync_ShowStats.cs | 12 +++++------- .../tests/samples/Sample_Healthcare_Cancellation.cs | 4 +--- .../tests/samples/Sample_Healthcare_ShowStats.cs | 4 +--- 6 files changed, 10 insertions(+), 22 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs index 1079946433595..3d7eba4290813 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs @@ -19,11 +19,9 @@ public async Task Healthcare() string endpoint = TestEnvironment.Endpoint; string apiKey = TestEnvironment.ApiKey; - #region Snippet:TextAnalyticsSample1CreateClient var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); - #endregion - #region Snippet:Healthcare + #region Snippet:TextAnalyticsSampleHealthcare string document = "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; HealthcareOperation healthOperation = client.StartHealthcare(document); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs index 7a85a21f80175..23e2303d321bf 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs @@ -20,11 +20,9 @@ public async Task HealthcareAsync() string endpoint = TestEnvironment.Endpoint; string apiKey = TestEnvironment.ApiKey; - #region Snippet:TextAnalyticsSample1CreateClient var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); - #endregion - #region Snippet:HealthcareAsync + #region Snippet:TextAnalyticsSampleHealthcareAsync string document = "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; HealthcareOperation healthOperation = await client.StartHealthcareAsync(document); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Cancellation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Cancellation.cs index 2427857f86612..4d2bfb76b896c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Cancellation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Cancellation.cs @@ -19,11 +19,9 @@ public async Task HealthcareAsyncCancellation() string endpoint = TestEnvironment.Endpoint; string apiKey = TestEnvironment.ApiKey; - #region Snippet:TextAnalyticsSample1CreateClient var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); - #endregion - #region Snippet:HealthcareAsyncCancellation + #region Snippet:TextAnalyticsSampleHealthcareAsyncCancellation string document = "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; HealthcareOperation healthOperation = await client.StartHealthcareAsync(document); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs index afe1ebfdd9f03..38fa795bbc942 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs @@ -21,18 +21,16 @@ public async Task HealthcareAsyncShowStats() string endpoint = TestEnvironment.Endpoint; string apiKey = TestEnvironment.ApiKey; - #region Snippet:TextAnalyticsSample1CreateClient var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); - #endregion - #region Snippet:HealthcareAsyncShowStats + #region Snippet:TextAnalyticsSampleHealthcareAsyncShowStats string document = "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; List batchInput = new List() - { - document, - document, - }; + { + document, + document, + }; HealthcareOptions options = new HealthcareOptions() { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs index 87f9535e7d8fb..ffed46c7d572f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs @@ -19,11 +19,9 @@ public void HealthcareCancellation() string endpoint = TestEnvironment.Endpoint; string apiKey = TestEnvironment.ApiKey; - #region Snippet:TextAnalyticsSample1CreateClient var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); - #endregion - #region Snippet:HealthcareCancellation + #region Snippet:TextAnalyticsSampleHealthcareCancellation string document = "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; HealthcareOperation healthOperation = client.StartHealthcare(document); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs index b7e36fd1e89dd..b1ae7d9bea85b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs @@ -20,11 +20,9 @@ public async Task HealthcareShowStats() string endpoint = TestEnvironment.Endpoint; string apiKey = TestEnvironment.ApiKey; - #region Snippet:TextAnalyticsSample1CreateClient var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); - #endregion - #region Snippet:Healthcare + #region Snippet:TextAnalyticsSampleHealthcareShowStats string document = "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; List batchInput = new List() From 7d8141d396483900783894405f7380e15d788fbf Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Sun, 1 Nov 2020 23:19:23 -0800 Subject: [PATCH 16/58] resolved comments --- .../src/TextAnalyticsClient.cs | 58 +++++-------------- .../Sample_HealthcareAsync_ShowStats.cs | 2 +- .../samples/Sample_Healthcare_ShowStats.cs | 2 +- 3 files changed, 15 insertions(+), 47 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index 62d076e170438..81ff94f536a18 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -2247,7 +2247,7 @@ private Response RecognizeLinkedEntitie //#endregion - #region Health Async + #region Healthcare /// /// . @@ -2271,7 +2271,7 @@ public virtual async Task StartHealthcareAsync(string docum MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents, language); - return await StartHealthcareAsync(documentInputs, options, cancellationToken).ConfigureAwait(false); + return await StartHealthcareBatchAsync(documentInputs, options, cancellationToken).ConfigureAwait(false); } /// @@ -2296,7 +2296,7 @@ public virtual HealthcareOperation StartHealthcare(string document, string langu MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents, language); - return StartHealthcare(documentInputs, options, cancellationToken); + return StartHealthcareBatch(documentInputs, options, cancellationToken); } /// @@ -2312,13 +2312,13 @@ public virtual HealthcareOperation StartHealthcare(string document, string langu /// /// Service returned a non-success /// status code. - public virtual async Task StartHealthcareAsync(IEnumerable documents, string language = default, HealthcareOptions options = default, CancellationToken cancellationToken = default) + public virtual async Task StartHealthcareBatchAsync(IEnumerable documents, string language = default, HealthcareOptions options = default, CancellationToken cancellationToken = default) { Argument.AssertNotNullOrEmpty(documents, nameof(documents)); options ??= new HealthcareOptions(); MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents, language); - return await StartHealthcareAsync(documentInputs, options, cancellationToken).ConfigureAwait(false); + return await StartHealthcareBatchAsync(documentInputs, options, cancellationToken).ConfigureAwait(false); } /// @@ -2345,13 +2345,13 @@ public virtual async Task StartHealthcareAsync(IEnumerable< /// that a given entity correctly matches the identified substring. /// Service returned a non-success /// status code. - public virtual HealthcareOperation StartHealthcare(IEnumerable documents, string language = default, HealthcareOptions options = default, CancellationToken cancellationToken = default) + public virtual HealthcareOperation StartHealthcareBatch(IEnumerable documents, string language = default, HealthcareOptions options = default, CancellationToken cancellationToken = default) { Argument.AssertNotNullOrEmpty(documents, nameof(documents)); options ??= new HealthcareOptions(); MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents, language); - return StartHealthcare(documentInputs, options, cancellationToken); + return StartHealthcareBatch(documentInputs, options, cancellationToken); } /// @@ -2362,7 +2362,7 @@ public virtual HealthcareOperation StartHealthcare(IEnumerable documents /// A controlling the request lifetime. /// A to wait on this long-running operation. Its upon successful /// completion will contain layout elements extracted from the form. - public virtual HealthcareOperation StartHealthcare(IEnumerable documents, HealthcareOptions options, CancellationToken cancellationToken = default) + public virtual HealthcareOperation StartHealthcareBatch(IEnumerable documents, HealthcareOptions options, CancellationToken cancellationToken = default) { Argument.AssertNotNull(documents, nameof(documents)); @@ -2370,23 +2370,7 @@ public virtual HealthcareOperation StartHealthcare(IEnumerable response = _serviceRestClient.Health(documentInputs, options.ModelVersion, _stringCodeUnit, cancellationToken); - string location = response.Headers.OperationLocation; - - IDictionary idToIndexMap = CreateIdToIndexMap(documentInputs.Documents); - - return new HealthcareOperation(_serviceRestClient, _clientDiagnostics, location, idToIndexMap); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } + return StartHealthcareBatch(documentInputs, options, cancellationToken); } /// @@ -2397,7 +2381,7 @@ public virtual HealthcareOperation StartHealthcare(IEnumerableA controlling the request lifetime. /// A to wait on this long-running operation. Its upon successful /// completion will contain layout elements extracted from the form. - public virtual async Task StartHealthcareAsync(IEnumerable documents, HealthcareOptions options, CancellationToken cancellationToken = default) + public virtual async Task StartHealthcareBatchAsync(IEnumerable documents, HealthcareOptions options, CancellationToken cancellationToken = default) { Argument.AssertNotNull(documents, nameof(documents)); @@ -2405,25 +2389,10 @@ public virtual async Task StartHealthcareAsync(IEnumerable< MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents); - using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartHealthcare)}"); - scope.Start(); - - try - { - ResponseWithHeaders response = await _serviceRestClient.HealthAsync(documentInputs, options.ModelVersion, _stringCodeUnit, cancellationToken).ConfigureAwait(false); - string location = response.Headers.OperationLocation; - - IDictionary idToIndexMap = CreateIdToIndexMap(documentInputs.Documents); - return new HealthcareOperation(_serviceRestClient, _clientDiagnostics, location, idToIndexMap); - } - catch (Exception e) - { - scope.Failed(e); - throw; - } + return await StartHealthcareBatchAsync(documentInputs, options, cancellationToken).ConfigureAwait(false); } - private HealthcareOperation StartHealthcare(MultiLanguageBatchInput batchInput, HealthcareOptions options, CancellationToken cancellationToken = default) + private HealthcareOperation StartHealthcareBatch(MultiLanguageBatchInput batchInput, HealthcareOptions options, CancellationToken cancellationToken = default) { options ??= new HealthcareOptions(); @@ -2446,7 +2415,7 @@ private HealthcareOperation StartHealthcare(MultiLanguageBatchInput batchInput, } } - private async Task StartHealthcareAsync(MultiLanguageBatchInput batchInput, HealthcareOptions options, CancellationToken cancellationToken = default) + private async Task StartHealthcareBatchAsync(MultiLanguageBatchInput batchInput, HealthcareOptions options, CancellationToken cancellationToken = default) { options ??= new HealthcareOptions(); @@ -2507,7 +2476,6 @@ public string StartCancelHealthJob(HealthcareOperation operation, CancellationTo { using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartCancelHealthJobAsync)}"); scope.Start(); - // Look for other alternatives of operation cancellation try { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs index 38fa795bbc942..476fd8d31174a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs @@ -39,7 +39,7 @@ public async Task HealthcareAsyncShowStats() IncludeStatistics = true }; - HealthcareOperation healthOperation = await client.StartHealthcareAsync(batchInput, "en", options); + HealthcareOperation healthOperation = await client.StartHealthcareBatchAsync(batchInput, "en", options); await healthOperation.WaitForCompletionAsync(); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs index b1ae7d9bea85b..ed8f79a6a1b21 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs @@ -38,7 +38,7 @@ public async Task HealthcareShowStats() IncludeStatistics = true }; - HealthcareOperation healthOperation = client.StartHealthcare(batchInput, "en", options); + HealthcareOperation healthOperation = client.StartHealthcareBatch(batchInput, "en", options); await healthOperation.WaitForCompletionAsync(); From d4d7867746041fc40d97d016b514583a263538de Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Mon, 2 Nov 2020 09:39:53 -0800 Subject: [PATCH 17/58] added async pageablle for pagination --- .../src/Generated/TextAnalyticsRestClient.cs | 22 ++--- .../src/HealthcareOperation.cs | 7 +- .../src/TextAnalyticsClient.cs | 48 +++++++++++ .../Azure.AI.TextAnalytics/src/swagger.json | 4 +- .../Sample_HealthcareAsync_Pagination.cs | 85 +++++++++++++++++++ 5 files changed, 152 insertions(+), 14 deletions(-) create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Pagination.cs diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsRestClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsRestClient.cs index b91db6c68374a..2f259c17f637f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsRestClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsRestClient.cs @@ -46,7 +46,7 @@ internal HttpMessage CreateAnalyzeRequest(AnalyzeBatchInput body) request.Method = RequestMethod.Post; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/text/analytics/v3.2-preview.1", false); + uri.AppendRaw("/text/analytics/v3.1-preview.3", false); uri.AppendPath("/analyze", false); request.Uri = uri; request.Headers.Add("Content-Type", "application/json"); @@ -101,7 +101,7 @@ internal HttpMessage CreateAnalyzeStatusRequest(Guid jobId, bool? showStats, int request.Method = RequestMethod.Get; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/text/analytics/v3.2-preview.1", false); + uri.AppendRaw("/text/analytics/v3.1-preview.3", false); uri.AppendPath("/analyze/jobs/", false); uri.AppendPath(jobId, true); if (showStats != null) @@ -176,7 +176,7 @@ internal HttpMessage CreateHealthStatusRequest(Guid jobId, int? top, int? skip, request.Method = RequestMethod.Get; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/text/analytics/v3.2-preview.1", false); + uri.AppendRaw("/text/analytics/v3.1-preview.3", false); uri.AppendPath("/entities/health/jobs/", false); uri.AppendPath(jobId, true); if (top != null) @@ -251,7 +251,7 @@ internal HttpMessage CreateCancelHealthJobRequest(Guid jobId) request.Method = RequestMethod.Delete; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/text/analytics/v3.2-preview.1", false); + uri.AppendRaw("/text/analytics/v3.1-preview.3", false); uri.AppendPath("/entities/health/jobs/", false); uri.AppendPath(jobId, true); request.Uri = uri; @@ -300,7 +300,7 @@ internal HttpMessage CreateHealthRequest(MultiLanguageBatchInput input, string m request.Method = RequestMethod.Post; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/text/analytics/v3.2-preview.1", false); + uri.AppendRaw("/text/analytics/v3.1-preview.3", false); uri.AppendPath("/entities/health/jobs", false); if (modelVersion != null) { @@ -376,7 +376,7 @@ internal HttpMessage CreateEntitiesRecognitionGeneralRequest(MultiLanguageBatchI request.Method = RequestMethod.Post; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/text/analytics/v3.2-preview.1", false); + uri.AppendRaw("/text/analytics/v3.1-preview.3", false); uri.AppendPath("/entities/recognition/general", false); if (modelVersion != null) { @@ -466,7 +466,7 @@ internal HttpMessage CreateEntitiesRecognitionPiiRequest(MultiLanguageBatchInput request.Method = RequestMethod.Post; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/text/analytics/v3.2-preview.1", false); + uri.AppendRaw("/text/analytics/v3.1-preview.3", false); uri.AppendPath("/entities/recognition/pii", false); if (modelVersion != null) { @@ -568,7 +568,7 @@ internal HttpMessage CreateEntitiesLinkingRequest(MultiLanguageBatchInput input, request.Method = RequestMethod.Post; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/text/analytics/v3.2-preview.1", false); + uri.AppendRaw("/text/analytics/v3.1-preview.3", false); uri.AppendPath("/entities/linking", false); if (modelVersion != null) { @@ -658,7 +658,7 @@ internal HttpMessage CreateKeyPhrasesRequest(MultiLanguageBatchInput input, stri request.Method = RequestMethod.Post; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/text/analytics/v3.2-preview.1", false); + uri.AppendRaw("/text/analytics/v3.1-preview.3", false); uri.AppendPath("/keyPhrases", false); if (modelVersion != null) { @@ -742,7 +742,7 @@ internal HttpMessage CreateLanguagesRequest(LanguageBatchInput input, string mod request.Method = RequestMethod.Post; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/text/analytics/v3.2-preview.1", false); + uri.AppendRaw("/text/analytics/v3.1-preview.3", false); uri.AppendPath("/languages", false); if (modelVersion != null) { @@ -826,7 +826,7 @@ internal HttpMessage CreateSentimentRequest(MultiLanguageBatchInput input, strin request.Method = RequestMethod.Post; var uri = new RawRequestUriBuilder(); uri.AppendRaw(endpoint, false); - uri.AppendRaw("/text/analytics/v3.2-preview.1", false); + uri.AppendRaw("/text/analytics/v3.1-preview.3", false); uri.AppendPath("/sentiment", false); if (modelVersion != null) { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs index af01a16a4cd96..158113a220269 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs @@ -33,6 +33,11 @@ public class HealthcareOperation : Operation public override string Id { get; } + /// + /// next link string for pagination + /// + public string NextLink { get; set; } + /// /// Final result of the long-running operation. /// @@ -70,7 +75,6 @@ public override RecognizeHealthcareEntitiesResultCollection Value /// The result of the long-running operation. null until result is received on status update. private RecognizeHealthcareEntitiesResultCollection _value; - private int? _top { get; } private int? _skip { get; } private bool? _showStats { get; } @@ -203,6 +207,7 @@ private async ValueTask UpdateStatusAsync(bool async, CancellationToke { // we need to first assign a vaue and then mark the operation as completed to avoid race conditions _value = Transforms.ConvertToRecognizeHealthcareEntitiesResultCollection(update.Value.Results); + NextLink = update.Value.NextLink; _hasCompleted = true; } else if (update.Value.Status == JobStatus.Failed) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index 81ff94f536a18..7a152411eef5a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -2490,6 +2490,54 @@ public string StartCancelHealthJob(HealthcareOperation operation, CancellationTo } } + /// + /// Gets collection of healthcare entities from the HealthOperation using async pageable. + /// + /// + /// A controlling the request lifetime. + /// A collection of items. + public virtual AsyncPageable GetHealthcareEntities(HealthcareOperation operation, CancellationToken cancellationToken = default) + { + async Task> FirstPageFunc(int? pageSizeHint) + { + using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(GetHealthcareEntities)}"); + scope.Start(); + + try + { + Response response = await operation.WaitForCompletionAsync().ConfigureAwait(false); + + RecognizeHealthcareEntitiesResultCollection result = operation.Value; + return Page.FromValues(result.AsEnumerable(), operation.NextLink, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + async Task> NextPageFunc(string nextLink, int? pageSizeHint) + { + using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(GetHealthcareEntities)}"); + scope.Start(); + + try + { + Response response = await operation.WaitForCompletionAsync().ConfigureAwait(false); + + RecognizeHealthcareEntitiesResultCollection result = operation.Value; + return Page.FromValues(result.AsEnumerable(), operation.NextLink, response.GetRawResponse()); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + return PageableHelpers.CreateAsyncEnumerable(FirstPageFunc, NextPageFunc); + } + #endregion #region Common diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/swagger.json b/sdk/textanalytics/Azure.AI.TextAnalytics/src/swagger.json index 78f434ee38254..46810c3364d42 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/swagger.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/swagger.json @@ -1,7 +1,7 @@ { "swagger": "2.0", "info": { - "version": "v3.2-preview.1", + "version": "v3.1-preview.3", "contact": { "name": "Microsoft Cognitive Services", "url": "https://azure.microsoft.com/en-us/services/cognitive-services/text-analytics/", @@ -23,7 +23,7 @@ } ], "x-ms-parameterized-host": { - "hostTemplate": "{Endpoint}/text/analytics/v3.2-preview.1", + "hostTemplate": "{Endpoint}/text/analytics/v3.1-preview.3", "useSchemePrefix": false, "parameters": [ { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Pagination.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Pagination.cs new file mode 100644 index 0000000000000..fa20bed328d7e --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Pagination.cs @@ -0,0 +1,85 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Threading.Tasks; +using Azure.AI.TextAnalytics.Tests; +using Azure.Core.TestFramework; +using NUnit.Framework; + +namespace Azure.AI.TextAnalytics.Samples +{ + [LiveOnly] + public partial class TextAnalyticsSamples: SamplesBase + { + [Test] + public async Task HealthcareAsyncPagination() + { + string endpoint = TestEnvironment.Endpoint; + string apiKey = TestEnvironment.ApiKey; + + var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); + + #region Snippet:TextAnalyticsSampleHealthcareAsyncPagination + string document = "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; + + HealthcareOperation healthOperation = await client.StartHealthcareBatchAsync( + new List() { + document, + document, + document, + document, + document, + document, + document, + document, + document, + document, + document, + document, + document, + document, + document, + document, + document, + document, + document, + document, + document, + document, + document + }); + + AsyncPageable results = client.GetHealthcareEntities(healthOperation); + + Debug.WriteLine($"Results of Azure Text Analytics \"Healthcare Async\""); + Debug.WriteLine(""); + + await foreach (DocumentHealthcareResult result in results) + { + Debug.WriteLine($" Recognized the following {result.Entities.Count} healthcare entities:"); + + foreach (HealthcareEntity entity in result.Entities) + { + Debug.WriteLine($" Entity: {entity.Text}"); + Debug.WriteLine($" Subcategory: {entity.Subcategory}"); + Debug.WriteLine($" Offset: {entity.Offset}"); + Debug.WriteLine($" Length: {entity.Length}"); + Debug.WriteLine($" IsNegated: {entity.IsNegated}"); + Debug.WriteLine($" Links:"); + + foreach (HealthcareEntityLink healthcareEntityLink in entity.Links) + { + Debug.WriteLine($" ID: {healthcareEntityLink.Id}"); + Debug.WriteLine($" DataSource: {healthcareEntityLink.DataSource}"); + } + } + Debug.WriteLine(""); + } + } + + #endregion + } +} From f750361d82576ea38b56f811f5b7d90c1357af1b Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Mon, 2 Nov 2020 09:45:02 -0800 Subject: [PATCH 18/58] remove analyze commented code --- .../src/TextAnalyticsClient.cs | 175 ------------------ 1 file changed, 175 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index 7a152411eef5a..166358a47ea10 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -2072,181 +2072,6 @@ private Response RecognizeLinkedEntitie #endregion - //#region Analyze Operation - - ///// - ///// . - ///// For a list of languages supported by this operation, see - ///// . - ///// For document length limits, maximum batch size, and supported text encoding, see - ///// . - ///// - ///// The documents to analyze. - ///// The language that the document is written in. - ///// The additional configurable - ///// - ///// Service returned a non-success - ///// status code. - //public virtual async Task StartAnalyzeOperationAsync(IEnumerable documents, string language = default, AnalyzeOperationOptions options = default, CancellationToken cancellationToken = default) - //{ - // Argument.AssertNotNullOrEmpty(documents, nameof(documents)); - // options ??= new AnalyzeOperationOptions(); - // MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents, language); - - // return await StartAnalyzeOperationAsync(documentInputs, options, cancellationToken).ConfigureAwait(false); - //} - - ///// - ///// Runs a predictive model to identify a collection of entities containing - ///// Personally Identifiable Information found in the passed-in document, - ///// and categorize those entities into types such as US social security - ///// number, drivers license number, or credit card number. - ///// For more information on available categories, see - ///// . - ///// For a list of languages supported by this operation, see - ///// . - ///// For document length limits, maximum batch size, and supported text encoding, see - ///// . - ///// - ///// The documents to analyze. - ///// The language that the document is written in. - ///// If unspecified, this value will be set to the default language in - ///// in the request sent to the - ///// service. If set to an empty string, the service will apply a model - ///// where the language is explicitly set to "None". - ///// The additional configurable that may be passed when - ///// recognizing PII entities. Options include entity domain filters, model version, and more. - ///// A - ///// controlling the request lifetime. - ///// A result containing the collection of entities identified - ///// for each of the documents, as well as scores indicating the confidence - ///// that a given entity correctly matches the identified substring. - ///// Service returned a non-success - ///// status code. - //public virtual AnalyzeOperation StartAnalyzeOperation(IEnumerable documents, string language = default, AnalyzeOperationOptions options = default, CancellationToken cancellationToken = default) - //{ - // Argument.AssertNotNullOrEmpty(documents, nameof(documents)); - // options ??= new AnalyzeOperationOptions(); - // MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents, language); - - // return StartAnalyzeOperation(documentInputs, options, cancellationToken); - //} - - ///// - ///// Recognizes Analyze Operation. - ///// - ///// - ///// - ///// A controlling the request lifetime. - ///// A to wait on this long-running operation. Its upon successful - ///// completion will contain layout elements extracted from the form. - //public virtual AnalyzeOperation StartAnalyzeOperation(IEnumerable documents, AnalyzeOperationOptions options, CancellationToken cancellationToken = default) - //{ - // Argument.AssertNotNull(documents, nameof(documents)); - - // options ??= new AnalyzeOperationOptions(); - - // MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents); - - // AnalyzeBatchInput analyzeDocumentInputs = new AnalyzeBatchInput(documentInputs, new JobManifestTasks()); - // using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartAnalyzeOperation)}"); - // scope.Start(); - - // try - // { - // ResponseWithHeaders response = _serviceRestClient.Analyze(analyzeDocumentInputs, cancellationToken); - // string location = response.Headers.OperationLocation; - - // return new AnalyzeOperation(_serviceRestClient, _clientDiagnostics, location); - // } - // catch (Exception e) - // { - // scope.Failed(e); - // throw; - // } - //} - - ///// - ///// Recognizes Analyze Operation async. - ///// - ///// - ///// - ///// A controlling the request lifetime. - ///// A to wait on this long-running operation. Its upon successful - ///// completion will contain layout elements extracted from the form. - //public virtual async Task StartAnalyzeOperationAsync(IEnumerable documents, AnalyzeOperationOptions options, CancellationToken cancellationToken = default) - //{ - // Argument.AssertNotNull(documents, nameof(documents)); - - // options ??= new AnalyzeOperationOptions(); - - // MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents); - // AnalyzeBatchInput analyzeDocumentInputs = new AnalyzeBatchInput(documentInputs, new JobManifestTasks()); - - // using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartAnalyzeOperationAsync)}"); - // scope.Start(); - - // try - // { - // ResponseWithHeaders response = await _serviceRestClient.AnalyzeAsync(analyzeDocumentInputs, cancellationToken).ConfigureAwait(false); - // string location = response.Headers.OperationLocation; - - // return new AnalyzeOperation(_serviceRestClient, _clientDiagnostics, location); - // } - // catch (Exception e) - // { - // scope.Failed(e); - // throw; - // } - //} - - //private AnalyzeOperation StartAnalyzeOperation(MultiLanguageBatchInput batchInput, AnalyzeOperationOptions options, CancellationToken cancellationToken = default) - //{ - // options ??= new AnalyzeOperationOptions(); - - // AnalyzeBatchInput analyzeDocumentInputs = new AnalyzeBatchInput(batchInput, new JobManifestTasks()); - // using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartAnalyzeOperation)}"); - // scope.Start(); - - // try - // { - // ResponseWithHeaders response = _serviceRestClient.Analyze(analyzeDocumentInputs, cancellationToken); - // string location = response.Headers.OperationLocation; - - // return new AnalyzeOperation(_serviceRestClient, _clientDiagnostics, location); - // } - // catch (Exception e) - // { - // scope.Failed(e); - // throw; - // } - //} - - //private async Task StartAnalyzeOperationAsync(MultiLanguageBatchInput batchInput, AnalyzeOperationOptions options, CancellationToken cancellationToken = default) - //{ - // options ??= new AnalyzeOperationOptions(); - - // AnalyzeBatchInput analyzeDocumentInputs = new AnalyzeBatchInput(batchInput, new JobManifestTasks()); - - // using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartAnalyzeOperation)}"); - // scope.Start(); - - // try - // { - // ResponseWithHeaders response = await _serviceRestClient.AnalyzeAsync(analyzeDocumentInputs, cancellationToken).ConfigureAwait(false); - // string location = response.Headers.OperationLocation; - - // return new AnalyzeOperation(_serviceRestClient, _clientDiagnostics, location); - // } - // catch (Exception e) - // { - // scope.Failed(e); - // throw; - // } - //} - - //#endregion - #region Healthcare /// From b1b8474c258d2482ab05d25cd33225ec350aebe0 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Mon, 2 Nov 2020 10:43:37 -0800 Subject: [PATCH 19/58] updated session record --- .../src/TextAnalyticsClient.cs | 4 +- ...lyzeSentimentBatchConvenienceFullTest.json | 18 +++---- ...entimentBatchConvenienceFullTestAsync.json | 18 +++---- .../AnalyzeSentimentBatchConvenienceTest.json | 18 +++---- ...yzeSentimentBatchConvenienceTestAsync.json | 18 +++---- ...tBatchConvenienceWithCancellationTest.json | 18 +++---- ...hConvenienceWithCancellationTestAsync.json | 18 +++---- ...nienceWithLanguageAndCancellationTest.json | 18 +++---- ...eWithLanguageAndCancellationTestAsync.json | 18 +++---- ...venienceWithLanguageAndStatisticsTest.json | 18 +++---- ...nceWithLanguageAndStatisticsTestAsync.json | 18 +++---- ...imentBatchConvenienceWithLanguageTest.json | 18 +++---- ...BatchConvenienceWithLanguageTestAsync.json | 18 +++---- ...BatchConvenienceWithOpinionMiningTest.json | 18 +++---- ...ConvenienceWithOpinionMiningTestAsync.json | 18 +++---- ...enceWithStatisticsAndCancellationTest.json | 18 +++---- ...ithStatisticsAndCancellationTestAsync.json | 18 +++---- ...entBatchConvenienceWithStatisticsTest.json | 18 +++---- ...tchConvenienceWithStatisticsTestAsync.json | 18 +++---- .../AnalyzeSentimentBatchTest.json | 18 +++---- .../AnalyzeSentimentBatchTestAsync.json | 18 +++---- .../AnalyzeSentimentBatchWithErrorTest.json | 18 +++---- ...alyzeSentimentBatchWithErrorTestAsync.json | 18 +++---- .../AnalyzeSentimentBatchWithNullIdTest.json | 16 +++--- ...lyzeSentimentBatchWithNullIdTestAsync.json | 16 +++--- ...AnalyzeSentimentBatchWithNullTextTest.json | 16 +++--- ...zeSentimentBatchWithNullTextTestAsync.json | 16 +++--- ...zeSentimentBatchWithOpinionMiningTest.json | 18 +++---- ...timentBatchWithOpinionMiningTestAsync.json | 18 +++---- ...alyzeSentimentBatchWithStatisticsTest.json | 18 +++---- ...SentimentBatchWithStatisticsTestAsync.json | 18 +++---- .../AnalyzeSentimentTest.json | 16 +++--- .../AnalyzeSentimentTestAsync.json | 18 +++---- .../AnalyzeSentimentWithCancellationTest.json | 18 +++---- ...yzeSentimentWithCancellationTestAsync.json | 18 +++---- ...timentWithLanguageAndCancellationTest.json | 18 +++---- ...tWithLanguageAndCancellationTestAsync.json | 18 +++---- .../AnalyzeSentimentWithLanguageTest.json | 18 +++---- ...AnalyzeSentimentWithLanguageTestAsync.json | 18 +++---- .../AnalyzeSentimentWithOpinionMining.json | 18 +++---- ...nalyzeSentimentWithOpinionMiningAsync.json | 18 +++---- ...nalyzeSentimentWithOpinionMiningEmpty.json | 18 +++---- ...eSentimentWithOpinionMiningEmptyAsync.json | 18 +++---- ...lyzeSentimentWithOpinionMiningNegated.json | 16 +++--- ...entimentWithOpinionMiningNegatedAsync.json | 18 +++---- .../DetectLanguageBatchConvenienceTest.json | 18 +++---- ...tectLanguageBatchConvenienceTestAsync.json | 18 +++---- ...ageBatchConvenienceWithStatisticsTest.json | 18 +++---- ...tchConvenienceWithStatisticsTestAsync.json | 18 +++---- .../DetectLanguageBatchTest.json | 18 +++---- .../DetectLanguageBatchTestAsync.json | 18 +++---- .../DetectLanguageBatchWithErrorTest.json | 22 ++++---- ...DetectLanguageBatchWithErrorTestAsync.json | 22 ++++---- .../DetectLanguageBatchWithNullIdTest.json | 16 +++--- ...etectLanguageBatchWithNullIdTestAsync.json | 18 +++---- .../DetectLanguageBatchWithNullTextTest.json | 18 +++---- ...ectLanguageBatchWithNullTextTestAsync.json | 16 +++--- ...DetectLanguageBatchWithStatisticsTest.json | 18 +++---- ...tLanguageBatchWithStatisticsTestAsync.json | 18 +++---- .../DetectLanguageTest.json | 20 ++++---- .../DetectLanguageTestAsync.json | 20 ++++---- .../DetectLanguageWithCountryHintTest.json | 20 ++++---- ...etectLanguageWithCountryHintTestAsync.json | 20 ++++---- ...etectLanguageWithErrorCountryHintTest.json | 18 +++---- ...LanguageWithErrorCountryHintTestAsync.json | 20 ++++---- ...DetectLanguageWithNoneCountryHintTest.json | 20 ++++---- ...tLanguageWithNoneCountryHintTestAsync.json | 20 ++++---- ...anguageWithNoneDefaultCountryHintTest.json | 20 ++++---- ...geWithNoneDefaultCountryHintTestAsync.json | 20 ++++---- ...ExtractKeyPhrasesBatchConvenienceTest.json | 18 +++---- ...ctKeyPhrasesBatchConvenienceTestAsync.json | 18 +++---- ...sesBatchConvenienceWithStatisticsTest.json | 18 +++---- ...tchConvenienceWithStatisticsTestAsync.json | 18 +++---- .../ExtractKeyPhrasesBatchTest.json | 18 +++---- .../ExtractKeyPhrasesBatchTestAsync.json | 18 +++---- .../ExtractKeyPhrasesBatchWithErrorTest.json | 16 +++--- ...ractKeyPhrasesBatchWithErrorTestAsync.json | 18 +++---- .../ExtractKeyPhrasesBatchWithNullIdTest.json | 16 +++--- ...actKeyPhrasesBatchWithNullIdTestAsync.json | 18 +++---- ...xtractKeyPhrasesBatchWithNullTextTest.json | 18 +++---- ...tKeyPhrasesBatchWithNullTextTestAsync.json | 18 +++---- ...tractKeyPhrasesBatchWithSatisticsTest.json | 18 +++---- ...KeyPhrasesBatchWithSatisticsTestAsync.json | 18 +++---- .../ExtractKeyPhrasesTest.json | 18 +++---- .../ExtractKeyPhrasesTestAsync.json | 18 +++---- .../ExtractKeyPhrasesWithLanguageTest.json | 18 +++---- ...xtractKeyPhrasesWithLanguageTestAsync.json | 18 +++---- .../ExtractKeyPhrasesWithWarningTest.json | 18 +++---- ...ExtractKeyPhrasesWithWarningTestAsync.json | 18 +++---- ...RecognizeEntitiesBatchConvenienceTest.json | 18 +++---- ...nizeEntitiesBatchConvenienceTestAsync.json | 18 +++---- ...iesBatchConvenienceWithStatisticsTest.json | 18 +++---- ...tchConvenienceWithStatisticsTestAsync.json | 18 +++---- .../RecognizeEntitiesBatchTest.json | 18 +++---- .../RecognizeEntitiesBatchTestAsync.json | 18 +++---- .../RecognizeEntitiesBatchWithErrorTest.json | 18 +++---- ...ognizeEntitiesBatchWithErrorTestAsync.json | 18 +++---- ...EntitiesBatchWithInvalidDocumentBatch.json | 18 +++---- ...iesBatchWithInvalidDocumentBatchAsync.json | 16 +++--- .../RecognizeEntitiesBatchWithNullIdTest.json | 16 +++--- ...gnizeEntitiesBatchWithNullIdTestAsync.json | 16 +++--- ...ecognizeEntitiesBatchWithNullTextTest.json | 16 +++--- ...izeEntitiesBatchWithNullTextTestAsync.json | 18 +++---- ...ognizeEntitiesBatchWithStatisticsTest.json | 18 +++---- ...eEntitiesBatchWithStatisticsTestAsync.json | 18 +++---- .../RecognizeEntitiesTest.json | 18 +++---- .../RecognizeEntitiesTestAsync.json | 18 +++---- .../RecognizeEntitiesWithLanguageTest.json | 18 +++---- ...ecognizeEntitiesWithLanguageTestAsync.json | 18 +++---- .../RecognizeEntitiesWithSubCategoryTest.json | 18 +++---- ...gnizeEntitiesWithSubCategoryTestAsync.json | 18 +++---- ...izeLinkedEntitiesBatchConvenienceTest.json | 50 +++++++++---------- ...nkedEntitiesBatchConvenienceTestAsync.json | 50 +++++++++---------- ...iesBatchConvenienceWithStatisticsTest.json | 50 +++++++++---------- ...tchConvenienceWithStatisticsTestAsync.json | 50 +++++++++---------- .../RecognizeLinkedEntitiesBatchTest.json | 50 +++++++++---------- ...RecognizeLinkedEntitiesBatchTestAsync.json | 50 +++++++++---------- ...gnizeLinkedEntitiesBatchWithErrorTest.json | 50 +++++++++---------- ...LinkedEntitiesBatchWithErrorTestAsync.json | 50 +++++++++---------- ...EntitiesBatchWithInvalidDocumentBatch.json | 16 +++--- ...iesBatchWithInvalidDocumentBatchAsync.json | 16 +++--- ...nizeLinkedEntitiesBatchWithNullIdTest.json | 18 +++---- ...inkedEntitiesBatchWithNullIdTestAsync.json | 18 +++---- ...zeLinkedEntitiesBatchWithNullTextTest.json | 18 +++---- ...kedEntitiesBatchWithNullTextTestAsync.json | 18 +++---- ...LinkedEntitiesBatchWithStatisticsTest.json | 50 +++++++++---------- ...dEntitiesBatchWithStatisticsTestAsync.json | 50 +++++++++---------- .../RecognizeLinkedEntitiesTest.json | 50 +++++++++---------- .../RecognizeLinkedEntitiesTestAsync.json | 50 +++++++++---------- ...cognizeLinkedEntitiesWithLanguageTest.json | 50 +++++++++---------- ...zeLinkedEntitiesWithLanguageTestAsync.json | 50 +++++++++---------- ...ognizePiiEntitiesBatchConvenienceTest.json | 18 +++---- ...ePiiEntitiesBatchConvenienceTestAsync.json | 18 +++---- ...iesBatchConvenienceWithStatisticsTest.json | 18 +++---- ...tchConvenienceWithStatisticsTestAsync.json | 18 +++---- .../RecognizePiiEntitiesBatchTest.json | 18 +++---- .../RecognizePiiEntitiesBatchTestAsync.json | 18 +++---- ...ecognizePiiEntitiesBatchWithErrorTest.json | 18 +++---- ...izePiiEntitiesBatchWithErrorTestAsync.json | 18 +++---- ...izePiiEntitiesBatchWithStatisticsTest.json | 18 +++---- ...iEntitiesBatchWithStatisticsTestAsync.json | 18 +++---- .../RecognizePiiEntitiesTest.json | 18 +++---- .../RecognizePiiEntitiesTestAsync.json | 18 +++---- .../RecognizePiiEntitiesWithDomainTest.json | 18 +++---- ...cognizePiiEntitiesWithDomainTestAsync.json | 18 +++---- .../RecognizePiiEntitiesWithLanguageTest.json | 18 +++---- ...gnizePiiEntitiesWithLanguageTestAsync.json | 16 +++--- .../EntitiesCategories.json | 18 +++---- .../EntitiesCategoriesAsync.json | 18 +++---- .../TextInKoreanNFC.json | 18 +++---- .../TextInKoreanNFCAsync.json | 18 +++---- .../TextWithDiacriticsNFC.json | 18 +++---- .../TextWithDiacriticsNFCAsync.json | 18 +++---- .../TextWithEmoji.json | 18 +++---- .../TextWithEmojiAsync.json | 18 +++---- 155 files changed, 1454 insertions(+), 1762 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index 166358a47ea10..83e657fea9d9e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -2269,7 +2269,7 @@ private async Task StartHealthcareBatchAsync(MultiLanguageB // Look for other alternatives of operation cancellation #pragma warning disable AZC0003 // DO make service methods virtual. #pragma warning disable AZC0015 // Unexpected client method return type. - public async Task StartCancelHealthJobAsync(HealthcareOperation operation, CancellationToken cancellationToken = default) + public virtual async Task StartCancelHealthJobAsync(HealthcareOperation operation, CancellationToken cancellationToken = default) #pragma warning restore AZC0015 // Unexpected client method return type. #pragma warning restore AZC0003 // DO make service methods virtual. { @@ -2295,7 +2295,7 @@ public async Task StartCancelHealthJobAsync(HealthcareOperation operatio /// The cancellation token to use. #pragma warning disable AZC0003 // DO make service methods virtual. #pragma warning disable AZC0015 // Unexpected client method return type. - public string StartCancelHealthJob(HealthcareOperation operation, CancellationToken cancellationToken = default) + public virtual string StartCancelHealthJob(HealthcareOperation operation, CancellationToken cancellationToken = default) #pragma warning restore AZC0015 // Unexpected client method return type. #pragma warning restore AZC0003 // DO make service methods virtual. { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json index bfeaee0d59a55..be9dd603b967e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fe89f70b43442d45add33cff99304155-d447ab1fac12e04f-00", + "traceparent": "00-db2e63c220857e428fec41c4831ad194-57ceeb2e377f1347-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7fbb9dea32b8080ffdad856789b2330d", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ee1283d8-f2b7-4865-9745-250f98a8a6f3", + "apim-request-id": "936abdcd-9124-4677-b77e-0e0cb9bb5a35", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:00 GMT", + "Date": "Mon, 02 Nov 2020 18:41:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "101" + "x-envoy-upstream-service-time": "86" }, "ResponseBody": { "statistics": { @@ -135,8 +135,6 @@ } ], "Variables": { - "RandomSeed": "508530765", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "508530765" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json index 56a5b62e47b68..e3dcd2ef5998b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-68919d211b3fec429abbcbb74cfa597a-1e94321b2a98d94e-00", + "traceparent": "00-109ea83c0eefcb4b8272d6b6c39ef631-e9bc2ca66ca6ef4d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9ce6282fe98018f1ea732ad3ecd9e59c", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "74abce6f-75eb-4186-9961-7faaeaf0c888", + "apim-request-id": "fae84248-c4ab-4f82-b46a-c6cdfaf781e6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:04 GMT", + "Date": "Mon, 02 Nov 2020 18:41:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "95" + "x-envoy-upstream-service-time": "86" }, "ResponseBody": { "statistics": { @@ -135,8 +135,6 @@ } ], "Variables": { - "RandomSeed": "172625245", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "172625245" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json index 4041bfc99f456..7cef3e2a5cf84 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-81fe07c5aac7eb4992829645da84449f-5bd17e7fd0a8d14a-00", + "traceparent": "00-4680e93c83ef2b4d9c6deb17d5145423-ddaaef6b9b4bb74e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "119c99db1e02c34777426e77d5c75cb6", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e8295108-4a40-4909-a0a4-9f1b5a98ae51", + "apim-request-id": "cff809d7-b782-4b83-b29e-46dc0fb0cfd6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:00 GMT", + "Date": "Mon, 02 Nov 2020 18:41:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "88" + "x-envoy-upstream-service-time": "80" }, "ResponseBody": { "documents": [ @@ -121,8 +121,6 @@ } ], "Variables": { - "RandomSeed": "1081025872", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1081025872" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json index eac6340293e22..69edd112ecb5e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d3f9f3865590b14eb01f4894e5127c86-e7d03c936c79c14c-00", + "traceparent": "00-170514c26634c944808f1a3d43f50b3c-92a8351780570c4e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9d1067da67ede0f99771b2c8070f5079", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "83df1278-f16c-408b-906c-c82f7ff74746", + "apim-request-id": "422b34e8-2a7a-4c13-87fc-7a1fafee106d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:04 GMT", + "Date": "Mon, 02 Nov 2020 18:41:12 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": [ @@ -121,8 +121,6 @@ } ], "Variables": { - "RandomSeed": "353364953", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "353364953" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json index a0d31cce6b767..e5a9e428b95f6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-76e570997f1d064189b7514d6aca7c1f-7e5e94ac7d725644-00", + "traceparent": "00-b91611d6f2ddc6498fe235cc854148fc-5147697a7c8e174d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "86b79e2f0559eb97f25b1c5b233a68dd", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8991027f-e427-49a6-b272-e6dc2a9fef3e", + "apim-request-id": "a19ce3f2-898b-40bf-b605-76c16891ed4d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:00 GMT", + "Date": "Mon, 02 Nov 2020 18:41:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "86" + "x-envoy-upstream-service-time": "88" }, "ResponseBody": { "documents": [ @@ -121,8 +121,6 @@ } ], "Variables": { - "RandomSeed": "1844243829", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1844243829" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json index bb2bd793e12d8..7c99bb8f68bf0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-024ecf93c3ef3b4ca5720d97e3038cb7-6ece9af17cbc8c47-00", + "traceparent": "00-776a09fbe7132f46940fbdbf2fc2c9cd-7596b803b9636a44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "300adb4a8ab9aa03c50b104c35b7e035", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e732db2e-b043-45a0-9db4-dcad1598dee4", + "apim-request-id": "330b31b7-3359-4ab2-8ec3-bf7d3b81befa", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:04 GMT", + "Date": "Mon, 02 Nov 2020 18:41:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "92" + "x-envoy-upstream-service-time": "82" }, "ResponseBody": { "documents": [ @@ -121,8 +121,6 @@ } ], "Variables": { - "RandomSeed": "413540855", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "413540855" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json index f7d0e8c3a9229..eb2cda56c1dea 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cda8e7b79bf0f64885d07c15cafad447-6f0d38653f351044-00", + "traceparent": "00-b4113501bc06084f88d9533719896d12-16fddc6e64e7744b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "abe848a0b41107615847f9d88e292402", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4ec8324a-5f63-4cbc-b90e-102343edb10b", + "apim-request-id": "99907a2b-5691-4687-be69-8de407b5a51d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:00 GMT", + "Date": "Mon, 02 Nov 2020 18:41:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "93" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": { "documents": [ @@ -121,8 +121,6 @@ } ], "Variables": { - "RandomSeed": "1867949087", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1867949087" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json index 2587396258ed7..ce56a347b3c35 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-889ecf92320a844eae040225c1001bcd-56426e93312f3c47-00", + "traceparent": "00-b19afa437c3c0f41957031abf981f409-254acb524c87834f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e76a4622dec6c96d7ae12bfd307d2c70", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6dee8a5e-8304-4826-ac37-b0e143f6a9b9", + "apim-request-id": "4a1a3583-950d-4b96-ae9a-978f8cb478d8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:04 GMT", + "Date": "Mon, 02 Nov 2020 18:41:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "96" + "x-envoy-upstream-service-time": "85" }, "ResponseBody": { "documents": [ @@ -121,8 +121,6 @@ } ], "Variables": { - "RandomSeed": "1600068101", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1600068101" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json index fb35c5a2717b9..8c13eb648be78 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-20f23886962633429179a51e9ba43023-3a798b0a699c2f41-00", + "traceparent": "00-3595d40a0c8aef449929fc32c86a5d9d-3410caa8026abb46-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ddaaf35e96b9dae8e520d1e25db41ef1", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "857d16b7-1ec3-4433-a5de-77441616598f", + "apim-request-id": "10ac04bc-2dda-42b9-9f84-3c731985c173", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:00 GMT", + "Date": "Mon, 02 Nov 2020 18:41:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "90" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": { "statistics": { @@ -135,8 +135,6 @@ } ], "Variables": { - "RandomSeed": "1265629352", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1265629352" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json index 93775f7bf1f69..71d67a30226e9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-02cfd9127ffbc44db64ebd540f2601c0-3332f8ec859e304e-00", + "traceparent": "00-f15ea436225b184db804ce7d12bbe3ea-2e2f8d32027cb046-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a461009a7ec465a3d8be1a54c58e3575", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "43fcfb24-29a0-4536-92d1-57cf69ddbfd3", + "apim-request-id": "f4e82926-2e83-446a-a5a7-de8b075ce95b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:05 GMT", + "Date": "Mon, 02 Nov 2020 18:41:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "102" + "x-envoy-upstream-service-time": "82" }, "ResponseBody": { "statistics": { @@ -135,8 +135,6 @@ } ], "Variables": { - "RandomSeed": "598481068", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "598481068" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json index 12e86fabfbd57..c47dd674a6333 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5d6ac3aedf69df45ae63a25b8977ee3e-6cd369bfe45c5847-00", + "traceparent": "00-32aa562aa85830429f97d79f83d3963a-b5eacee2f001ad4b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f4f79420d55186c560e783cd65904498", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "522ff51b-01f1-43ef-b0d3-03a0577cfa01", + "apim-request-id": "0c4be638-c749-48b3-86fd-dfe58bb2e1d2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:00 GMT", + "Date": "Mon, 02 Nov 2020 18:41:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "93" + "x-envoy-upstream-service-time": "88" }, "ResponseBody": { "documents": [ @@ -121,8 +121,6 @@ } ], "Variables": { - "RandomSeed": "843042242", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "843042242" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json index ee2f192158160..7bc08540d6686 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5c4ce22bebe0d94292017c3b8687e915-f8d2011b6766fe40-00", + "traceparent": "00-bb0aa58d7ed3f94fb8fb03ec81de8565-746a2bfafb22a44d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a82300e8850457b9e1ddd84e5e66ebf5", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7c4d4036-7813-4883-81e5-3840f12fc6fc", + "apim-request-id": "fe08647b-03fa-457f-ae1f-ff61b2a7c644", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:05 GMT", + "Date": "Mon, 02 Nov 2020 18:41:12 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": "83" }, "ResponseBody": { "documents": [ @@ -121,8 +121,6 @@ } ], "Variables": { - "RandomSeed": "1612151291", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1612151291" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json index c1827bf2e541e..ef2bf57172b63 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-53df84aba35fba46be5ab1ebd42f2ad4-7886c95c7cbbbb40-00", + "traceparent": "00-8bb2707b77217d41b387c942cd1b8e8d-cf172274a4f00c43-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d0c9faccbe22f6229408f2811c507283", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "704fc41a-2cf8-4b79-b3cf-eb53a89c6ee4", + "apim-request-id": "99ea53c7-8853-4ea8-a860-1e29e85f870e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:01 GMT", + "Date": "Mon, 02 Nov 2020 18:41:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "95" + "x-envoy-upstream-service-time": "79" }, "ResponseBody": { "documents": [ @@ -250,8 +250,6 @@ } ], "Variables": { - "RandomSeed": "1558892529", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1558892529" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json index f179c23c654ab..012286b2574fd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-db06d79ed56bcd419b81b4045327dc8d-e3bf01728c7c7e41-00", + "traceparent": "00-65424c4feaac6f41910845f3cdd40b05-dd223ffa5300ae43-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "99f36dc03d5b69cad15ff682fb68e8a9", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bb81f723-efb6-4701-9aee-8cc381ed8c7e", + "apim-request-id": "8d5e7c5f-5301-471e-8cc3-54d77757b95d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:05 GMT", + "Date": "Mon, 02 Nov 2020 18:41:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "93" + "x-envoy-upstream-service-time": "116" }, "ResponseBody": { "documents": [ @@ -250,8 +250,6 @@ } ], "Variables": { - "RandomSeed": "1809635661", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1809635661" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json index ad4d7ad6e173e..14a94271de858 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-edc73d32f7b08e4c946be627ad11caf6-8c5fbc48f4429946-00", + "traceparent": "00-4cf3e327998e024cbde327e149f2c326-3d4fc72aa656c54f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ea37c4c5b43ade506c055e9d1167082c", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2e149649-f5aa-40d0-ad30-9f852dde5406", + "apim-request-id": "1693515d-b214-4728-b989-0615dc108ac4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:01 GMT", + "Date": "Mon, 02 Nov 2020 18:41:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "94" + "x-envoy-upstream-service-time": "91" }, "ResponseBody": { "statistics": { @@ -135,8 +135,6 @@ } ], "Variables": { - "RandomSeed": "1646397317", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1646397317" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json index d8b56fd169a4b..fb0d373813aac 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-96a83d290f77a24aa75445abbe0891a8-4e05419878618546-00", + "traceparent": "00-e89fd9cd159ecc4f9fa65366840b1fcf-4b770a684ef09f48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d297a709781eea07c58dac26eba5fefd", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "23c0da3e-b972-4af6-b55b-9c46252d4b37", + "apim-request-id": "cb170aff-f830-43b9-900b-bf5a1356fbf0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:05 GMT", + "Date": "Mon, 02 Nov 2020 18:41:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "95" + "x-envoy-upstream-service-time": "86" }, "ResponseBody": { "statistics": { @@ -135,8 +135,6 @@ } ], "Variables": { - "RandomSeed": "1063573528", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1063573528" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json index fa5c414ba00aa..572ae46c13300 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8dc19040fba69344afff81d38cb96bac-ef6ba5f8c1905846-00", + "traceparent": "00-0af819f5f21a0e4b89290f6d7817885d-4a90ce008976e14a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b93a282865c5e574aa1703755dff0595", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4dbcaffa-76e5-4501-988e-d97dd3c2fb50", + "apim-request-id": "39572acc-93e8-4af5-8941-da8d2df1b1e7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:01 GMT", + "Date": "Mon, 02 Nov 2020 18:41:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "90" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": { "statistics": { @@ -135,8 +135,6 @@ } ], "Variables": { - "RandomSeed": "1108552328", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1108552328" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json index e614fcedefabb..6bc7728a3d23a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d22419d011c5f644a02ab910baf36e97-6dfb4de7c04d5e4c-00", + "traceparent": "00-a58257fea0bf3044a8f33a5d5d8a7180-7abedb14a0ba9b42-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "896aa869bee9e15710e9b281353ff7e1", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "788d3904-d00c-457e-bc12-3b2f93f85140", + "apim-request-id": "d98b64a0-1379-4eed-ad30-985c0c3eb483", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:05 GMT", + "Date": "Mon, 02 Nov 2020 18:41:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": { "statistics": { @@ -135,8 +135,6 @@ } ], "Variables": { - "RandomSeed": "1480611001", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1480611001" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json index de77177a9036d..123c40e2ee101 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-59441a6d403f7147a08342f0713dbae3-bb5b3e34c6b1f146-00", + "traceparent": "00-1ed479a6bf029f47b38ea4ee03f57c04-52d895e577d6aa4f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f4c1d2e666ddf215fcefdfedc5dd71c8", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "558ea305-90c5-4478-817e-c7962ef3deb9", + "apim-request-id": "54eb8b66-f1db-41a2-8e67-c27ea6d12c81", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:01 GMT", + "Date": "Mon, 02 Nov 2020 18:41:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "142" + "x-envoy-upstream-service-time": "103" }, "ResponseBody": { "documents": [ @@ -121,8 +121,6 @@ } ], "Variables": { - "RandomSeed": "876796289", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "876796289" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json index 9efd1893b11da..54cde0e8ca739 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5f967bf3b83afb4eb7d4f645ac2d0063-dc72e3814942324d-00", + "traceparent": "00-93f3d9c876214d4f811f9aa846ce0771-983a77e692798340-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "26baa46075d446ba158f6fd6eeae447a", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8f7ae1ea-247b-4dc2-8fee-c8c25c0d5c37", + "apim-request-id": "e9e0255c-9264-4cd3-b56c-44c6180fcb3a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:06 GMT", + "Date": "Mon, 02 Nov 2020 18:41:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "107" + "x-envoy-upstream-service-time": "93" }, "ResponseBody": { "documents": [ @@ -121,8 +121,6 @@ } ], "Variables": { - "RandomSeed": "539665015", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "539665015" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json index f4a262d249163..23f2c10e7bb96 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "207", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-72346d5a64bc1f43a231fce199ef4862-f618e6e79afa6141-00", + "traceparent": "00-22aad64aa03eef42b4402002cc605226-36648c74d373e94f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "381e2b63f2088d45202cae7fd25e5042", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "15f194fa-5c4f-42e6-856d-c25fe0d07b95", + "apim-request-id": "09f71c03-e5d1-46ff-9c00-1a08958417d2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:01 GMT", + "Date": "Mon, 02 Nov 2020 18:41:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "85" + "x-envoy-upstream-service-time": "87" }, "ResponseBody": { "documents": [ @@ -116,8 +116,6 @@ } ], "Variables": { - "RandomSeed": "1934874503", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1934874503" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json index 5c13dfbbf8cb9..373e27aa00547 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "207", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e966cb6f4e8ef2479f89e2736c91abf3-da2996c36dfad649-00", + "traceparent": "00-29e26f3d0f2e164bb281a423710ef7bf-b2ea8b0561c7a248-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "29ac615e7a25f0506bd8c86ac7133e14", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3d1e8dd3-468e-41ab-89ba-00be3ad66676", + "apim-request-id": "849ef9ec-8e02-44ba-9f46-732d41366a15", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:06 GMT", + "Date": "Mon, 02 Nov 2020 18:41:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "85" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": { "documents": [ @@ -116,8 +116,6 @@ } ], "Variables": { - "RandomSeed": "951483506", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "951483506" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json index 75d55a3cc188f..6532e2549cd59 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-324495f11389294a976d44a26799222a-7162c2ea3665334f-00", + "traceparent": "00-b18928e7fbd70046856308e2bda1b2ed-016ed4dc364b5e40-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e97c715478efd2b509099d562415356f", "x-ms-return-client-request-id": "true" @@ -30,9 +30,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "1f087ea3-dc8e-46bd-a246-a9d4df00a259", + "apim-request-id": "c7c1cd8d-c9a0-4f49-acb1-3d23d2631767", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 31 Aug 2020 18:39:01 GMT", + "Date": "Mon, 02 Nov 2020 18:41:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -51,8 +51,6 @@ } ], "Variables": { - "RandomSeed": "627709314", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "627709314" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json index e00c44193e8a4..34777c0b395dd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-df0b5cfb1353fd4eb79bd18935eca6b9-7636486977b5b748-00", + "traceparent": "00-dc1eb46f64c53f449064dcd8457da45a-7eead007d09ed54d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7d28785fafea6a705989dd511c352058", "x-ms-return-client-request-id": "true" @@ -30,9 +30,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "9de9d9f2-f0f2-40c5-9069-9acf92a28f02", + "apim-request-id": "3702c925-f0df-4225-a177-5f6406c85116", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 31 Aug 2020 18:39:06 GMT", + "Date": "Mon, 02 Nov 2020 18:41:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -51,8 +51,6 @@ } ], "Variables": { - "RandomSeed": "1350287540", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1350287540" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json index 3128e0b9659e0..7c5bcb779d1b4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-450fe04acc838444b12d939f7e3e3418-318956048c5cc54f-00", + "traceparent": "00-2a44e1f00dd45446b7c3ba650a22ea7b-275372b753af024d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a82047bc1e56521f19fee095619725e3", "x-ms-return-client-request-id": "true" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "62d595c3-887d-4148-9c91-7ade3731226b", + "apim-request-id": "ea989483-18ae-4633-9179-a3667877ab82", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 31 Aug 2020 18:39:01 GMT", + "Date": "Mon, 02 Nov 2020 18:41:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -58,8 +58,6 @@ } ], "Variables": { - "RandomSeed": "847855095", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "847855095" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json index dddbb3bb5fda0..326ab8af05883 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5134a2e6a42c7a48a5aab09adcd4c5a5-67ef46193dfad548-00", + "traceparent": "00-d400b11fb3209c47adfd54c4a9c51c22-91a6bf8eb9a0c741-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e4b5e1c573e3bc3fc5137a6a90633740", "x-ms-return-client-request-id": "true" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b2b3f581-3d25-41b2-9790-9cd471957a2d", + "apim-request-id": "4b689172-7819-4dc3-9dba-026930a89673", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 31 Aug 2020 18:39:06 GMT", + "Date": "Mon, 02 Nov 2020 18:41:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -58,8 +58,6 @@ } ], "Variables": { - "RandomSeed": "256924080", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "256924080" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json index c3c53eb006572..e850566e1866e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f4483d7a466f7a468433352aa55bb3f3-3515465e267dc64a-00", + "traceparent": "00-1e4f40d6fc4f30438cdb6ac11dcd76a1-5e9d517035261947-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4bb052b32c66958101e8bfb2d70a96bf", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fc1dd4fe-9fa9-4081-9672-ad7bbb169178", + "apim-request-id": "676fc30f-38d1-46c9-ae17-fee69adde9b8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:03 GMT", + "Date": "Mon, 02 Nov 2020 18:41:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "82" + "x-envoy-upstream-service-time": "80" }, "ResponseBody": { "documents": [ @@ -250,8 +250,6 @@ } ], "Variables": { - "RandomSeed": "1053489488", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1053489488" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json index e21326ffa7451..57af9ab63c846 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2f71fe0ab9eb234693ea0aec7d8e870d-827279e106283b4a-00", + "traceparent": "00-a0884ce8a1e89a42901b7fa1dc84bdda-33527e5adcc2e04e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "10469efe411909195ef72681bf249b22", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2fb7becd-9ec4-4059-b0a9-eeba236ff1ee", + "apim-request-id": "31647638-3c63-42fe-91be-0940f87098f9", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:06 GMT", + "Date": "Mon, 02 Nov 2020 18:41:13 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": "87" }, "ResponseBody": { "documents": [ @@ -250,8 +250,6 @@ } ], "Variables": { - "RandomSeed": "1224561162", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1224561162" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json index a8f8cd9007dfc..d3d629dae49ee 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-68930f07f51b8c4fbd8e91a6fd39a97f-bbd0a77936397242-00", + "traceparent": "00-6f035b5a2bbee64cac3f406e14eb1487-4b5f591ba990f94c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "380d3332cec3ce7a5b0d21c20c2f8b8d", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5b36981c-1f87-43c1-9926-e257cdee18ab", + "apim-request-id": "cb8f6225-352d-4b06-b19d-894e9462d062", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:03 GMT", + "Date": "Mon, 02 Nov 2020 18:41:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "102" + "x-envoy-upstream-service-time": "100" }, "ResponseBody": { "statistics": { @@ -135,8 +135,6 @@ } ], "Variables": { - "RandomSeed": "2080433243", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "2080433243" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json index 98c46d2260bb1..57f94abe25429 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d92cb42d4156c745803404324c5fa508-9f90295078766642-00", + "traceparent": "00-0a0ec64bd2200246869cc0d93edc5a4a-73a1a234376ac941-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f794f0733bb3c43d680189f109278930", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "abbaada6-8ded-4d30-b2f9-d662f3271501", + "apim-request-id": "48f90acb-7bae-45b5-9552-1bfec553b07f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:06 GMT", + "Date": "Mon, 02 Nov 2020 18:41:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "110" + "x-envoy-upstream-service-time": "100" }, "ResponseBody": { "statistics": { @@ -135,8 +135,6 @@ } ], "Variables": { - "RandomSeed": "1104601644", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1104601644" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json index 6fd38f469ced8..91e7bd20cfbfe 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-06be37afb4c8da40a26f5390817da137-bf903c60a2d58c42-00", + "traceparent": "00-69b2a6aca8a63e44812ea414ab02d900-7b277a02842b6e4c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4e5bdbe5820d38723d195b24082e286d", "x-ms-return-client-request-id": "true" @@ -30,10 +30,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "660a40e1-9342-439f-b9d0-d83e9dceb61e", + "apim-request-id": "a3af7a6a-931b-497a-8c1d-8c0ace6f850b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 18:39:03 GMT", + "Date": "Mon, 02 Nov 2020 18:41:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -71,8 +71,6 @@ } ], "Variables": { - "RandomSeed": "2146668003", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "2146668003" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json index 5321629cc5550..676b0209b5522 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7c2a9f2a302737499f1c03f8f8df26fc-1c5abfa82d4f3647-00", + "traceparent": "00-dcad1aa375b26841b0c459e0624103c4-102934c26ba59a43-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "03ba29d245db7d4660e70538d783a159", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "38d81d2f-3692-4bcb-8724-b9f90372055e", + "apim-request-id": "69bb78ed-1135-408a-b055-c63230a23542", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 18:39:06 GMT", + "Date": "Mon, 02 Nov 2020 18:41:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "89" + "x-envoy-upstream-service-time": "80" }, "ResponseBody": { "documents": [ @@ -71,8 +71,6 @@ } ], "Variables": { - "RandomSeed": "9060464", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "9060464" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json index e6797bc812019..00acdc8bf2024 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3922ab49c6b2fa48b2603ce565b359ef-e535c553102e454e-00", + "traceparent": "00-e9d1df9651df174894226bd680b512a6-4dd9d9c01c8cdd47-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1cd519dfbccdba31b1f719f550932df6", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ce04c01c-ce4a-4ace-843c-45b4ece76ee3", + "apim-request-id": "62361d42-fd5e-4f52-a764-d717067d314a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 18:39:03 GMT", + "Date": "Mon, 02 Nov 2020 18:41:11 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": "94" }, "ResponseBody": { "documents": [ @@ -71,8 +71,6 @@ } ], "Variables": { - "RandomSeed": "673624529", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "673624529" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json index 3059ccd0d52a4..a5b14bdbc4f39 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-632475ec5e95a440a3d61726b532c118-0a09b3c78212a14e-00", + "traceparent": "00-516fd0e6dcc3514ab2f379fb6991e8e0-7f121b14493bfc46-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e4628ff9d75e35fa30a2a74d75b5d054", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "27607630-2eb8-4c6d-828b-ed83405ed43f", + "apim-request-id": "61cf0b75-48f7-4ad0-a3d5-4ed7fb932888", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 18:39:07 GMT", + "Date": "Mon, 02 Nov 2020 18:41:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "90" + "x-envoy-upstream-service-time": "87" }, "ResponseBody": { "documents": [ @@ -71,8 +71,6 @@ } ], "Variables": { - "RandomSeed": "486778307", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "486778307" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json index a9d871a966bbc..75acfba39fbc6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ddf8fc9babec7b4ebbd115222ceced29-ee60dce19b332846-00", + "traceparent": "00-302208dc5beef540b644d023ddf09839-d0cd0e6ee71d3e42-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0226741a4a3852fb661facf15a20cdfc", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "618d739f-b8df-4859-a6f9-7298ffce25cb", + "apim-request-id": "52517d31-571e-4e06-86de-f6bf339a79e9", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 18:39:03 GMT", + "Date": "Mon, 02 Nov 2020 18:41:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "104" + "x-envoy-upstream-service-time": "97" }, "ResponseBody": { "documents": [ @@ -71,8 +71,6 @@ } ], "Variables": { - "RandomSeed": "735963321", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "735963321" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json index aefe9b7a30ba2..7f0c07cf0ff84 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-74a6314254307d44b195cbf5524b1302-ef33bfaaf8fd674f-00", + "traceparent": "00-d28b93b180678c42a7336e3d2024bdc9-e9f8bab0ae731c45-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1d19c9bc741aeaae2a3044500760d7de", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ce70d410-0463-45e1-a415-c945fbe03624", + "apim-request-id": "1f418ae1-945a-4237-8c3a-7c362880d290", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 18:39:07 GMT", + "Date": "Mon, 02 Nov 2020 18:41:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "135" + "x-envoy-upstream-service-time": "98" }, "ResponseBody": { "documents": [ @@ -71,8 +71,6 @@ } ], "Variables": { - "RandomSeed": "1305725402", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1305725402" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json index 40a3806d87f34..898b86917ef48 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9b95ce6388be874fbfe1ab1ee01841b8-d96141ca6ef54240-00", + "traceparent": "00-6b76207eb0a6724f9fc21070791f38ee-217c431371f02a41-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b1c263e328066fc8dce532b649cbfd03", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "56fbfe39-1f59-46be-8aa6-f207785cb1f1", + "apim-request-id": "c89e59cc-bd6f-4fef-93d6-b8c1aac4605e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 18:39:04 GMT", + "Date": "Mon, 02 Nov 2020 18:41:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "110" + "x-envoy-upstream-service-time": "96" }, "ResponseBody": { "documents": [ @@ -71,8 +71,6 @@ } ], "Variables": { - "RandomSeed": "137641087", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "137641087" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json index 87099b09c52c8..ea83e32c31369 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-06a4a461863182429a3fe60f253cdf42-5db4e73f11485e48-00", + "traceparent": "00-cc314a6a6521ff4c9e0c24a2b964ed00-066afdf2f3eafd47-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "61e4104888cde5cbe34786063a0401dd", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e98628fb-0968-43b5-8383-25a021177e3a", + "apim-request-id": "8c77053d-95bf-4412-8b77-9bd707cc9b21", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 18:39:07 GMT", + "Date": "Mon, 02 Nov 2020 18:41:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "143" + "x-envoy-upstream-service-time": "121" }, "ResponseBody": { "documents": [ @@ -71,8 +71,6 @@ } ], "Variables": { - "RandomSeed": "537807865", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "537807865" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json index 5d86e04a405f3..07959fa60522f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "127", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1fcb13aab7b3f44a86e3b40dc50d18fb-da9ce8e2aab22f4f-00", + "traceparent": "00-f90a9a1100259f47b16c2fb5b1237294-5c9dc77b821eea4f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1e33ed24967d42087f8188a6111ef9b0", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "84c4baa1-6de3-4327-b3ec-98e88c1a55bc", + "apim-request-id": "c027fc25-1a30-48e7-9de0-157274b1fcc9", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 18:39:04 GMT", + "Date": "Mon, 02 Nov 2020 18:41:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "86" + "x-envoy-upstream-service-time": "90" }, "ResponseBody": { "documents": [ @@ -175,8 +175,6 @@ } ], "Variables": { - "RandomSeed": "4400155", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "4400155" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json index ca32ab95d9544..cd61d70fa5494 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "127", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6e38ca681e13a9439e581977c8aeac22-a5104844d8d55644-00", + "traceparent": "00-c3f49b941e211a459abe52b8ef251134-e630683cf0bc3b44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "504a9c53bf1eca7814bfce867e01718a", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "57f7a558-d09d-4f82-b050-3c47b0b1fdef", + "apim-request-id": "1839d9c4-1c55-4dfe-bbba-10a687bed781", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 18:39:07 GMT", + "Date": "Mon, 02 Nov 2020 18:41:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "88" + "x-envoy-upstream-service-time": "86" }, "ResponseBody": { "documents": [ @@ -175,8 +175,6 @@ } ], "Variables": { - "RandomSeed": "1364359232", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1364359232" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json index d6dc33e5529ba..a6aca00d1e141 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a18e489ada14ba4cb66137382ccc1bec-caa1aba7831b9a4e-00", + "traceparent": "00-dafe587e6adf2b43b5390e4dd42136fb-c20dd568cac57c43-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "558a7442c3b1c5137141db1dd8ca6858", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c51449c2-0510-49df-bf17-02642df2d0d3", + "apim-request-id": "b8f0f8d6-0622-4d9a-96db-ebf2b6b7442e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 18:39:04 GMT", + "Date": "Mon, 02 Nov 2020 18:41:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-envoy-upstream-service-time": "81" }, "ResponseBody": { "documents": [ @@ -73,8 +73,6 @@ } ], "Variables": { - "RandomSeed": "1727170942", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1727170942" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json index d7d81db9b25ea..efda5590f7211 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b7ee76cb690b324fbe2855ccfd1bc331-7af74a277c49b34c-00", + "traceparent": "00-114a9638a91d6b459c1abeaa1f52f1c5-9ff3d2f8f7b20341-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f6867f38d810d57a89dad763eab07a05", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c2dbcde0-5c1b-4d15-b5ef-4c25be4a8675", + "apim-request-id": "69329ce0-d240-4bbe-9887-00b966212d91", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 18:39:07 GMT", + "Date": "Mon, 02 Nov 2020 18:41:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "92" + "x-envoy-upstream-service-time": "93" }, "ResponseBody": { "documents": [ @@ -73,8 +73,6 @@ } ], "Variables": { - "RandomSeed": "167361615", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "167361615" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json index 513fe44c198a2..f4721b0048d4b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "80", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5129a8a7b406a8459d78e15f1a4b8f09-a29c1fb3f6b1664c-00", + "traceparent": "00-10bc4bf465ec594da0d7be6b82208ffe-18baed686d10ed4e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8d0590d28394353aadd5df7e697ac312", "x-ms-return-client-request-id": "true" @@ -30,10 +30,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f1b38174-b407-4332-b4fe-c13fadc91c22", + "apim-request-id": "9e6c28ad-85c6-49ec-b011-12e2d090c3c4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 18:39:04 GMT", + "Date": "Mon, 02 Nov 2020 18:41:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -102,8 +102,6 @@ } ], "Variables": { - "RandomSeed": "825040414", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "825040414" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json index 341449c006dfe..a2f316ea6fa62 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "80", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0bd47657b3b74047aaa9dbd14f707e1d-338470d74c3b0f4a-00", + "traceparent": "00-e2f5fb76700abd43a772efd9cb5a9e24-93214ae2aeda1e4c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "94ab183ce7dcf7c7f3beeb119ae08867", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e60b8795-845c-4416-83ed-078b77927ee1", + "apim-request-id": "d843caf9-e78b-4e01-9fd9-239b60aeccb4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 18:39:07 GMT", + "Date": "Mon, 02 Nov 2020 18:41:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "85" + "x-envoy-upstream-service-time": "81" }, "ResponseBody": { "documents": [ @@ -102,8 +102,6 @@ } ], "Variables": { - "RandomSeed": "1263606711", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1263606711" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json index 4665186b53879..3d66bcea89df6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-95d8a852e9f6564db3a3d888159681be-f28e52da98844a47-00", + "traceparent": "00-8aa12dbde3879541b35997792c8bef0f-b98ceaf5b1b6c540-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5005f5e8a08b47218215f19574b370f6", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "76a3d9ae-7b89-4166-8ad7-33a26255f564", + "apim-request-id": "beae6660-a1d6-4954-aab6-6ccc24072649", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Fri, 28 Aug 2020 21:32:58 GMT", + "Date": "Mon, 02 Nov 2020 18:41:14 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": "824" }, "ResponseBody": { "documents": [ @@ -85,8 +85,6 @@ } ], "Variables": { - "RandomSeed": "2925177", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "2925177" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json index 3d0d7c1fe317a..fddaefaa96c56 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f53af193e137cd4fbabb2225a3aab012-93721c2dbbe8c24c-00", + "traceparent": "00-326d9c4bc1e8214ca37d4c7294585258-78d90203124f2244-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3574863b78b3d4b99962ee1a8b7bbd89", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bdf3ac13-091f-4997-ab33-c3784a96cc20", + "apim-request-id": "be6c00c6-0e5d-4a49-a28b-2eb28c6db707", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Fri, 28 Aug 2020 21:32:58 GMT", + "Date": "Mon, 02 Nov 2020 18:41:15 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": "6" }, "ResponseBody": { "documents": [ @@ -85,8 +85,6 @@ } ], "Variables": { - "RandomSeed": "1287375904", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1287375904" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json index 0853d465e384a..96c388ac715db 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages?model-version=2019-10-01\u0026showStats=true", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9f3e9ea8a0d4774a9095821bbbf8516a-cdfbe6a1b530554a-00", + "traceparent": "00-ade3db6a83a55a4a9d4d0a3e2d02e2f3-7d94dd3a2accb445-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "738db85ac016be284349434968e4adff", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e6fbf5d2-4fcd-4fa0-adcc-7556a42c9418", + "apim-request-id": "426c9877-40db-4422-a86c-09aae8344613", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Fri, 28 Aug 2020 21:32:58 GMT", + "Date": "Mon, 02 Nov 2020 18:41:14 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": "10" }, "ResponseBody": { "statistics": { @@ -103,8 +103,6 @@ } ], "Variables": { - "RandomSeed": "211607003", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "211607003" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json index e1695b0b1fc9e..9dbcce52117e5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages?model-version=2019-10-01\u0026showStats=true", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-32014badc0cdb846ae010744faa27a73-9e9269211bfebe48-00", + "traceparent": "00-ee22e0bddd7d1d48af3682240911ae3a-1b447d978c5b4144-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6246079b8393935bca52b813124b2ad7", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bf80673f-f2c3-4501-a539-6d21383d14bd", + "apim-request-id": "35bddd65-8a81-43d5-b729-7e0f799f3e9b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Fri, 28 Aug 2020 21:32:58 GMT", + "Date": "Mon, 02 Nov 2020 18:41:15 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": "6" }, "ResponseBody": { "statistics": { @@ -103,8 +103,6 @@ } ], "Variables": { - "RandomSeed": "293475495", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "293475495" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json index 57988b51942bf..d730e2427309e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d51162bc3afb4342bf5df1c956143be1-9ca6d38a5e41be4e-00", + "traceparent": "00-cb2225945939ef499cb215deecee5b0e-0fd84b2e3177a643-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9ed49d935379ea824d7c2153a1e6e6e4", "x-ms-return-client-request-id": "true" @@ -45,14 +45,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2928877f-4062-428c-8e53-35f6daae23bf", + "apim-request-id": "dcc45577-7c59-4b9b-bd8b-10c3d9a9037f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Fri, 28 Aug 2020 21:32:58 GMT", + "Date": "Mon, 02 Nov 2020 18:41:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ @@ -99,8 +99,6 @@ } ], "Variables": { - "RandomSeed": "1725013070", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1725013070" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json index f05cdc022795e..49f493b25d04d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9de187dd38996340a398a9218a86458f-89407386bebbcf42-00", + "traceparent": "00-8f6a01d8d1c857408c0b3b810249c9be-3bf0074c2f318147-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "da5f41d41140dce5b95983493bb999e3", "x-ms-return-client-request-id": "true" @@ -45,14 +45,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1f61c477-6da8-4b53-85e6-dccf70913029", + "apim-request-id": "c7f6f071-340b-40a0-be1f-80f1856305d1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Fri, 28 Aug 2020 21:32:58 GMT", + "Date": "Mon, 02 Nov 2020 18:41:15 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": "6" }, "ResponseBody": { "documents": [ @@ -99,8 +99,6 @@ } ], "Variables": { - "RandomSeed": "1564753879", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1564753879" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json index 46f607710d77d..a406136c068f2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages?showStats=false", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "156", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5d7dc012d48c12479a014681422a9e29-a10209a1b86d0d40-00", + "traceparent": "00-ffec4eeea789c0499a5dac4bf9c4d2c1-d313baf540b79042-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3ce40d8d4db949068b12a56808d1cfa5", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9456f37d-05b4-40ab-8641-3c819948c2a3", + "apim-request-id": "37263772-0180-4c40-a80b-996d3358b675", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 28 Aug 2020 21:32:58 GMT", + "Date": "Mon, 02 Nov 2020 18:41:15 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": "308" }, "ResponseBody": { "documents": [ @@ -56,7 +56,7 @@ "detectedLanguage": { "name": "English", "iso6391Name": "en", - "confidenceScore": 1.0 + "confidenceScore": 0.92 }, "warnings": [] }, @@ -83,13 +83,11 @@ } } ], - "modelVersion": "2020-07-01" + "modelVersion": "2020-09-01" } } ], "Variables": { - "RandomSeed": "1998787501", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1998787501" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json index 42ab719314135..622173071b2ef 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages?showStats=false", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "156", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0db18196169939469562a1a7bd1f1dcb-a3ccb9ad91dcef41-00", + "traceparent": "00-6d8659b8127714458c58130cde76c9f0-cf751ac903680f46-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "51807d44b190171f3639086e14582723", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6220a60c-5f93-48b5-b445-848bbaadb17d", + "apim-request-id": "8c4db4b8-0012-4923-a5af-a54635fb8c62", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 28 Aug 2020 21:32:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:15 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": "13" }, "ResponseBody": { "documents": [ @@ -56,7 +56,7 @@ "detectedLanguage": { "name": "English", "iso6391Name": "en", - "confidenceScore": 1.0 + "confidenceScore": 0.92 }, "warnings": [] }, @@ -83,13 +83,11 @@ } } ], - "modelVersion": "2020-07-01" + "modelVersion": "2020-09-01" } } ], "Variables": { - "RandomSeed": "1902435763", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1902435763" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json index 85da4ccac84cf..558ac82b09bc3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "67", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7b4dbadbc8e34a4ca5643f41234c1610-bed5234ce520bf42-00", + "traceparent": "00-434a587b6c3b134bb69390012aeecedb-c70ec9b16abbed4f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1a3b3f53b2eb19e83bb91b78bee10b95", "x-ms-return-client-request-id": "true" @@ -30,9 +30,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "439c2d70-1ea4-4603-9853-67eb93842e29", + "apim-request-id": "81cd154f-9d4a-4480-b88e-92204907722a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 28 Aug 2020 21:32:58 GMT", + "Date": "Mon, 02 Nov 2020 18:41:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -51,8 +51,6 @@ } ], "Variables": { - "RandomSeed": "1842668100", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1842668100" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json index 5285cd5e973e6..9719e7aea93c0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "67", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d0e1647cb8624f4ba9a8909033f5bc48-5af1cf58ed5d5b44-00", + "traceparent": "00-5bb2fdafe081b343805678ddd5a1d1d5-b9b96711dcee1a49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b23c80179f571f450cf30413f8966972", "x-ms-return-client-request-id": "true" @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "774eac92-4d06-45f3-a861-10a5459de3db", + "apim-request-id": "0aa8bcab-6d2e-4306-b75c-820952c10bf6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 28 Aug 2020 21:32:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { @@ -51,8 +51,6 @@ } ], "Variables": { - "RandomSeed": "1421275547", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1421275547" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json index b9a6491a7abc8..f88d42f23e8f6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "57", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bc89b434d4a11342b69fda57eaa30264-e7ddc9e54e03c84f-00", + "traceparent": "00-044350f76042ba4e9cead95cd8603c0e-27d535a0d410254d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ed66d74da14036cde144d6235dacd6d3", "x-ms-return-client-request-id": "true" @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "788d6cd1-3978-4d60-87ea-fdc02781a788", + "apim-request-id": "e2391ffc-3fd2-40d2-bfca-7cfe5e7429c0", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 28 Aug 2020 21:32:58 GMT", + "Date": "Mon, 02 Nov 2020 18:41:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "1" }, "ResponseBody": { "documents": [], @@ -58,8 +58,6 @@ } ], "Variables": { - "RandomSeed": "1472278800", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1472278800" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json index 043cec3157bab..1a6a25f43d309 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "57", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-144a0c0d50deec4c93528b466b16c926-db679b2d59de5a43-00", + "traceparent": "00-1eb64f918c6d0c48bddecd3f01203a31-2f5c605d0b550643-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "46af5eece4595e8658920ddb272bdb42", "x-ms-return-client-request-id": "true" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bc0b656a-6a55-412f-b456-ba729c8a9eb9", + "apim-request-id": "57a4ab02-a04e-4598-91f7-ff946b382005", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 28 Aug 2020 21:32:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -58,8 +58,6 @@ } ], "Variables": { - "RandomSeed": "1379897499", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1379897499" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json index 3d7768221db3a..9743e9542f31d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages?model-version=2019-10-01\u0026showStats=true", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5d5c735a19071c4d8b335d65756b73bc-4132bb21269e0c45-00", + "traceparent": "00-9ae890928574db4ab485f756253312b4-6d23f1f3d1d91742-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "acad3cc12aa10a7667d1533045b0a321", "x-ms-return-client-request-id": "true" @@ -45,14 +45,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b8081ad1-70ea-4710-ad7e-3233b4171b50", + "apim-request-id": "fde1dd41-6169-4873-b4cc-6560751419a2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Fri, 28 Aug 2020 21:32:58 GMT", + "Date": "Mon, 02 Nov 2020 18:41:15 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": "6" }, "ResponseBody": { "statistics": { @@ -121,8 +121,6 @@ } ], "Variables": { - "RandomSeed": "1441514523", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1441514523" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json index dea436cd72350..24081f21eebe9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages?model-version=2019-10-01\u0026showStats=true", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e4f3249b2733974db79a7a3b32fff6b6-3bb81f91e82a5f4d-00", + "traceparent": "00-a4c0467134987f4bafabc26effba52ed-94355610dd6b0749-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "50a7683e77aad92fe53b41b770dfa6fb", "x-ms-return-client-request-id": "true" @@ -45,14 +45,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a95d4649-36b0-4a2f-8f29-4f3f5b9611c8", + "apim-request-id": "efc1e344-0389-4d8d-99bb-8f30f866ee3b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Fri, 28 Aug 2020 21:32:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "statistics": { @@ -121,8 +121,6 @@ } ], "Variables": { - "RandomSeed": "1925146009", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1925146009" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json index b0bb655911560..91f816d65da85 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "82", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0f13365193b8e24a93a7022ecd8558a0-00c0c478551d5b49-00", + "traceparent": "00-8d90238c6efa8d498142e967b60de6b4-ccfead37fa82ab4c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7aaab163ed1d982c319bbad40483549a", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b5681e1f-402f-494f-93a8-5d1ffed0cf2f", + "apim-request-id": "5e756e7f-91cf-4174-81cf-4538d72a3015", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 28 Aug 2020 21:32:58 GMT", + "Date": "Mon, 02 Nov 2020 18:41:15 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": "6" }, "ResponseBody": { "documents": [ @@ -52,13 +52,11 @@ } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-09-01" } } ], "Variables": { - "RandomSeed": "1945127661", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1945127661" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json index 7a4748cb5f126..b3cb60799ed4d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "82", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ecc1b89ebdbb6d48b15c005992fe5281-26ac408687aeb540-00", + "traceparent": "00-266a0f09bb5f184696752bed0657922e-eac0d959d9b96f42-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d4cc6357ff58c85240bd64c6445c1d0f", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fb30ce91-dd92-4f9d-a863-6dbd5a6eee35", + "apim-request-id": "fe0f8d26-ae09-4075-a6fc-c34b37e85f55", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 28 Aug 2020 21:32:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "documents": [ @@ -52,13 +52,11 @@ } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-09-01" } } ], "Variables": { - "RandomSeed": "2124897013", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "2124897013" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json index 8111b81b746c7..69b2e1daff449 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "95", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-211a1588b64aaf48b61fe7f473ab686e-abec7e24c25d2049-00", + "traceparent": "00-5d575ef7ccd326468cf36719b2a87106-4a15af4346d65e4f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "98a2a27e9082d475805aa932800b5cf6", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bcece764-6ac7-4dd7-88d0-f90a47a26f81", + "apim-request-id": "59463400-c087-423c-b0c1-f986ff95dfda", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 28 Aug 2020 21:32:58 GMT", + "Date": "Mon, 02 Nov 2020 18:41:15 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": { "documents": [ @@ -52,13 +52,11 @@ } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-09-01" } } ], "Variables": { - "RandomSeed": "1745096315", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1745096315" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json index a1b619eff9ccd..5dcae9799f8d1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "95", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7a62c13ebe58784895abdc75e0797a31-b7a63feed2e5744b-00", + "traceparent": "00-85f38a07db863e49a1eb710a5791109a-41343e27425fa245-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f0760fc68cadb07ff1c89a4d1612c056", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c22c8828-99bb-4ab9-9a34-612ab7bed1d3", + "apim-request-id": "9b44b709-54c1-499a-b539-d5f864e48366", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 28 Aug 2020 21:32:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "documents": [ @@ -52,13 +52,11 @@ } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-09-01" } } ], "Variables": { - "RandomSeed": "2142485753", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "2142485753" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json index cc7fdce389bcb..e0e818c5366cb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "101", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-de95013f22bf0042b7780aa02bb6c981-f82fdc6176d6ee44-00", + "traceparent": "00-889c9b4a8b86f34aa1ac167a3b993d16-cc816fc5cd977d48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d6d037d3997433f0d1d408295081d2b0", "x-ms-return-client-request-id": "true" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "50a7f993-cf57-4125-a831-43ad87840078", + "apim-request-id": "eef79725-f058-4d5e-b2b0-353d2285c818", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 28 Aug 2020 21:32:58 GMT", + "Date": "Mon, 02 Nov 2020 18:41:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -53,13 +53,11 @@ } } ], - "modelVersion": "2020-07-01" + "modelVersion": "2020-09-01" } } ], "Variables": { - "RandomSeed": "467349083", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "467349083" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json index 5de369816d43b..ae57086ac9cbb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "101", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fae4565264f2384d83e65046d800c659-3a1bc2c57e3cac47-00", + "traceparent": "00-6b9929ec0b9d774c9264f2428449fa0a-62cc45666c3cb649-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9d92baec240d7c0e78b80d24d8752359", "x-ms-return-client-request-id": "true" @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eba9ffa7-3724-4499-8ea7-e32248a6332a", + "apim-request-id": "126e11ff-b5f1-4f2b-ae66-aaf8e6bee879", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 28 Aug 2020 21:32:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [], @@ -53,13 +53,11 @@ } } ], - "modelVersion": "2020-07-01" + "modelVersion": "2020-09-01" } } ], "Variables": { - "RandomSeed": "1987537636", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1987537636" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json index 588f7849d1f04..2a39a2688d546 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-db9fe85aec81f14d95eca21d804199d5-a05edca4f351274a-00", + "traceparent": "00-75199db9a85be74b989bc98a3da63fb0-5be7980b5bec3d45-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9cded6f43daa9a1f5be8cb3934e1c44c", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c1e311a4-a3c3-4741-b61b-dbc5e0a5f4f0", + "apim-request-id": "e53678fb-b7a0-4d66-8a8e-064df6c80ed2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 28 Aug 2020 21:32:58 GMT", + "Date": "Mon, 02 Nov 2020 18:41:15 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": "5" }, "ResponseBody": { "documents": [ @@ -52,13 +52,11 @@ } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-09-01" } } ], "Variables": { - "RandomSeed": "1940049365", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1940049365" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json index 4e35457174bf1..f96f978c762ae 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a6e13946143b41479ff7dbae257cc88e-2aa7f7d1d0b47849-00", + "traceparent": "00-e07492fdbf7b2341ad942ac419687ba4-b84aa89a3dcd7c43-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6124b40a04621bbacc815e287718638c", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bbe24841-f248-4899-b1c1-54f601ac4124", + "apim-request-id": "8531bd58-9e78-462a-8cb5-d54093498c1d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 28 Aug 2020 21:32:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:15 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": "10" }, "ResponseBody": { "documents": [ @@ -52,13 +52,11 @@ } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-09-01" } } ], "Variables": { - "RandomSeed": "1328135102", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1328135102" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json index 5662d4a9fd53b..576f0a57ec3f4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fe528657907c504ba368e48208904e47-c8fabe9675773445-00", + "traceparent": "00-352d9bdc58f14a41875d5ca58c058e7e-ea33c5c215a18e49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "dda057b9e217d2ba6e5090c17d8fd607", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "575de77e-8dc3-4a6d-98cc-59860b573cb5", + "apim-request-id": "7feab89a-bc57-464d-92ce-814017b7823b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 28 Aug 2020 21:32:58 GMT", + "Date": "Mon, 02 Nov 2020 18:41:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "documents": [ @@ -52,13 +52,11 @@ } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-09-01" } } ], "Variables": { - "RandomSeed": "397710028", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "397710028" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json index f0dd1d4e0efda..c1b47b688350a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-12aa7dc7f98787498b6375ee1bedccfd-c79dba69873d0b41-00", + "traceparent": "00-74d5d45d6a31684f99953c0249d575d9-3633db345080a640-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bfed051a0d9b7fe81f8b58b8ccb397c0", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6765fd13-c33d-494b-8167-f84ace23a164", + "apim-request-id": "5dec555c-e449-4a76-bde3-614b18524e6b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 28 Aug 2020 21:32:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "documents": [ @@ -52,13 +52,11 @@ } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-09-01" } } ], "Variables": { - "RandomSeed": "691922193", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "691922193" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json index 9f716b5a78d31..6362bb655ec4d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/keyPhrases?showStats=false", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e9041880428efd4d86076aae43a45c09-118fcc82e367fa44-00", + "traceparent": "00-04d731565ffb674eb21232f9d031995e-1cc65b133c973443-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "632e1038e2d2bd9cdcf3dd442e79c63c", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f4881e1f-c73a-410c-a6e1-064a39007cff", + "apim-request-id": "fbcda523-1704-4186-bd71-4b5e806661fe", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 28 Aug 2020 21:32:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "1124" }, "ResponseBody": { "documents": [ @@ -71,8 +71,6 @@ } ], "Variables": { - "RandomSeed": "2011102001", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "2011102001" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json index c834d49aa8f0e..1a5578c35794d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/keyPhrases?showStats=false", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7cc9c8ebb3e90543a2d13b8f007d6814-051f6ee1662a1d48-00", + "traceparent": "00-4880968659cce3408cde85958191ec47-45dfc4e61713554a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bb6bf08839909e0e578d5bc1b428bcd2", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0f6a3f88-69d4-4bfa-b963-233e5d565b2b", + "apim-request-id": "ed7a9e41-e91d-4ad1-aefd-6f6666a6027e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 28 Aug 2020 21:32:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "documents": [ @@ -71,8 +71,6 @@ } ], "Variables": { - "RandomSeed": "1790351005", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1790351005" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json index 0e149c1838ab9..a9d3de056d532 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/keyPhrases?showStats=true", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f151628631b04846982be154421022c0-b95f7462919a9545-00", + "traceparent": "00-175cc7d6b89a4a438e7ae16728837244-a6cbae3effeb7641-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4dfa2958a1568d79bc14e1b570d63d15", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f04a9026-4403-49c5-8be9-cd761f276338", + "apim-request-id": "180f741d-2047-4d41-9367-99e0d111c971", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 28 Aug 2020 21:32:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "statistics": { @@ -85,8 +85,6 @@ } ], "Variables": { - "RandomSeed": "1074286074", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1074286074" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json index 3a6f09fcfe3ea..96cfaaf8050eb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/keyPhrases?showStats=true", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b42df1da81740545a4088f3fdaf6d68f-6574abe0d4ebf94a-00", + "traceparent": "00-52d3d3c937e4c74dba3e9168e4c95a28-3acae364be611d4e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f8f1e114d697e804255315d1c7e9b6ab", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "66621587-fa5c-442e-a0af-4a0dbb7834b5", + "apim-request-id": "9b52c259-ec29-4742-807a-6682b8a40fa1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 28 Aug 2020 21:32:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:17 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": "10" }, "ResponseBody": { "statistics": { @@ -85,8 +85,6 @@ } ], "Variables": { - "RandomSeed": "1602869274", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1602869274" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json index 1ce948ba565d3..e30ffa41f63da 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/keyPhrases?showStats=false", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-381477d2daa65d46bf18a56eceb0c29a-27c8d9a8c2e3124c-00", + "traceparent": "00-fd94e837b59dcd4b97ba31b67dc6ad30-d81b1cd6eae06e47-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f8376358e18a19e0b7e6f893926ac745", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ec855c7f-e033-4dc2-a8fa-454b61d2b6d9", + "apim-request-id": "65a83bf5-b55e-42a3-935d-eb28222fef0e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 28 Aug 2020 21:32:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "documents": [ @@ -71,8 +71,6 @@ } ], "Variables": { - "RandomSeed": "979539460", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "979539460" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json index a1c65b2878269..62e736bb2f36c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/keyPhrases?showStats=false", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-647ccbe3dfd01548911644f3a82de8cb-d608dbbf07f3064a-00", + "traceparent": "00-e08aafa9ac948e4d83a2c6beffcee505-1d362a7fdf1ff340-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "272edb015782fb6dbcae1cc2967deed3", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a3ce2097-7d8b-4eb1-8d51-48c9d039c5fa", + "apim-request-id": "8fc42a59-5e23-4fb9-9e7c-768e70e58cbf", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 28 Aug 2020 21:33:00 GMT", + "Date": "Mon, 02 Nov 2020 18:41:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ @@ -71,8 +71,6 @@ } ], "Variables": { - "RandomSeed": "349892618", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "349892618" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json index b3a65b07a4d37..88175711a0b63 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/keyPhrases?showStats=false", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f8fabf1cf0fab14a9d1d070df952bd7f-e985bf3546815e4d-00", + "traceparent": "00-3f6db2edeee8944880e779ce8bf7b106-6c1890faa9b16c46-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "dd92af13693d6c6d10f5b45092a05fbe", "x-ms-return-client-request-id": "true" @@ -40,10 +40,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0b5f3c29-7045-4473-b8ff-c3d4cb04398b", + "apim-request-id": "1aab243b-05d1-4954-a165-92611c151a15", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 28 Aug 2020 21:32:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -87,8 +87,6 @@ } ], "Variables": { - "RandomSeed": "1310930461", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1310930461" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json index 63df9922231e3..af2cfca310c77 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/keyPhrases?showStats=false", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8da136ab4d3f2a4680036f0b647a6da7-c0e2f493b3562b48-00", + "traceparent": "00-5ee6a50b8b0ea4419217e6499e421e43-87056b73c1883041-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "161fb623980eba163f1211744629e747", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f4f04efa-7cf1-48b1-8c06-312f12eb0681", + "apim-request-id": "21bb7eaf-0605-4b90-abab-e9216a8172a7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 28 Aug 2020 21:33:00 GMT", + "Date": "Mon, 02 Nov 2020 18:41:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "documents": [ @@ -87,8 +87,6 @@ } ], "Variables": { - "RandomSeed": "2016817382", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "2016817382" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json index 94f06b627cbf3..41d65f81b6a5b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/keyPhrases?showStats=false", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d10b8ce33abf8344842c32accf8115ce-4d328e945f58d44a-00", + "traceparent": "00-97c94193be2b3642be11ea3fa31f8a06-38734b83a3f48b46-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "02233abc1a851f8d7b73c3a9864f0660", "x-ms-return-client-request-id": "true" @@ -30,9 +30,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "4a7d28fb-2c73-4055-a12b-a57ac962e6a9", + "apim-request-id": "5ab28cbd-9519-4ec9-b1af-efb66d06333c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 28 Aug 2020 21:32:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -51,8 +51,6 @@ } ], "Variables": { - "RandomSeed": "39669393", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "39669393" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json index 6e833569e18fc..5ef203a8449c8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/keyPhrases?showStats=false", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-902d8de5c854f144bcff882bd4123ba6-b6ba3530a93a8348-00", + "traceparent": "00-117f4c4904a17c4bb9b69e19df8453a2-279e656324775949-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d3ffef96a22198e4e5a15a93f55c6a25", "x-ms-return-client-request-id": "true" @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "a6e6f3ef-647e-4366-8ee1-670bf08ea6e2", + "apim-request-id": "8629e1b8-0110-4cb5-acf9-9b1c28ea1cca", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 28 Aug 2020 21:33:00 GMT", + "Date": "Mon, 02 Nov 2020 18:41:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { @@ -51,8 +51,6 @@ } ], "Variables": { - "RandomSeed": "356416899", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "356416899" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json index c296250c37da4..0eff78af8ea10 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/keyPhrases?showStats=false", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-77ee19bdc129f348bc0f108234b31fde-0bfe86fe627b934c-00", + "traceparent": "00-7372d9d1c38e874f9e372909f3b875d1-cad1d282c8a0d948-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5bf1e93674612a2cd70f69188e2d39f7", "x-ms-return-client-request-id": "true" @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3113fe1b-adfe-4a1f-9ffa-626fa57e9a8e", + "apim-request-id": "dd0336ff-1fbd-4987-b885-7ccf5fc2e58e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 28 Aug 2020 21:32:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-envoy-upstream-service-time": "2" }, "ResponseBody": { "documents": [], @@ -58,8 +58,6 @@ } ], "Variables": { - "RandomSeed": "593241093", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "593241093" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json index b0f6a63ef2a85..758b405cd29f7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/keyPhrases?showStats=false", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2cb373a59f4bc744b7f88b1872ecf659-1cbdf1301b39ed42-00", + "traceparent": "00-7e57a2206c81814fbe0811264d8b235f-a9db2c38c655a143-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5dbd36794559c388c50dd26e725f8f67", "x-ms-return-client-request-id": "true" @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c7d5831d-aaa0-4a3e-aa3c-e2f2d3477b3c", + "apim-request-id": "18b11713-e092-43a8-b8b1-5ebacdb0b21c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 28 Aug 2020 21:33:00 GMT", + "Date": "Mon, 02 Nov 2020 18:41:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "2" }, "ResponseBody": { "documents": [], @@ -58,8 +58,6 @@ } ], "Variables": { - "RandomSeed": "872837413", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "872837413" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json index e5f31f2420239..d0327f4d27263 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/keyPhrases?showStats=true", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5c58898f46494149a205f76e0c54ed5c-853e033813c49144-00", + "traceparent": "00-e0bccac827f7114bb090a085ac6f1858-a09737d35f5ab74b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "481340828d769a0d6f19ecfe6b0d9666", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d5fe811b-6db3-4d3d-8699-5053e5a3f938", + "apim-request-id": "4b4e5a8a-0ce3-474c-8ac6-268d88da0e11", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 28 Aug 2020 21:32:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:17 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": "9" }, "ResponseBody": { "statistics": { @@ -85,8 +85,6 @@ } ], "Variables": { - "RandomSeed": "1134123605", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1134123605" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json index 012cfc4059ef3..6b5aafe2fc650 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/keyPhrases?showStats=true", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5139c50b45820949b8861fc23c771891-9fd76d0e4fa2664d-00", + "traceparent": "00-4bc71fdceaf3ca4ab7f9227f898606ac-a367cb48c8721e4f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fcabdefd3d51a89852601fc0d61f3468", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d2d4edac-db1a-4ab7-9b12-f6630c2e57a7", + "apim-request-id": "3c028bf5-1b43-4e8c-98ef-8af321a20853", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 28 Aug 2020 21:33:00 GMT", + "Date": "Mon, 02 Nov 2020 18:41:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "statistics": { @@ -85,8 +85,6 @@ } ], "Variables": { - "RandomSeed": "1658669752", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1658669752" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json index 5855e4668c4ad..200b7d7d9fe41 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/keyPhrases", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "92", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ae055785a30a23428a7f031f7dba8c67-79464420d7596b45-00", + "traceparent": "00-f1532ec30248554fb9441deaf6f65596-c5eacc7aeaabec49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b86575e1b38857965c8495535ac2b899", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "17c4681b-11ba-4465-8fd1-03dea8f631a5", + "apim-request-id": "7b7ed77f-21b5-4ac5-b3cc-6b9bc70fdc24", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 28 Aug 2020 21:32:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:17 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": "8" }, "ResponseBody": { "documents": [ @@ -56,8 +56,6 @@ } ], "Variables": { - "RandomSeed": "4209270", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "4209270" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json index fa3ea5fffe1c4..80c19de0fefb6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/keyPhrases", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "92", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e63dc28b63dbeb41bfa3ce5805a61c6d-9c3e83b90d887444-00", + "traceparent": "00-de504aeb4511d94dbd31b0420386e7f6-a5d52dcea7142449-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f80f56a1c735d323972d5c2c674aed06", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1cd0aa3d-6716-4213-ba72-98a6663978ef", + "apim-request-id": "c8b1d171-502a-40b7-b565-327ffb44a900", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 28 Aug 2020 21:33:00 GMT", + "Date": "Mon, 02 Nov 2020 18:41:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ @@ -56,8 +56,6 @@ } ], "Variables": { - "RandomSeed": "1076673025", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1076673025" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json index ac45dc0d442da..89ac5e1970391 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/keyPhrases", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "88", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4d6db8518e1ee7448fc552361b7ca40b-b604d50d54823346-00", + "traceparent": "00-eef2994b1890aa41a9d41c1d0194e66e-8df89f46fa98c944-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fee09dae9a1670151c1a3a802afd3e61", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "850a6e84-8af1-491f-bbd1-b6ef4e599c90", + "apim-request-id": "f0aa5f2a-d3c9-41c0-aa0b-3c67d96f4987", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 28 Aug 2020 21:32:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:17 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": { "documents": [ @@ -56,8 +56,6 @@ } ], "Variables": { - "RandomSeed": "462050848", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "462050848" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json index 3fa8bffa82ceb..3b619149bc81b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/keyPhrases", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "88", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d8c46d1b06adf74488e4ccf66a3ef9a0-91f56837f4a8f744-00", + "traceparent": "00-88ab4f8a7c7121459e7d1f59e0524e69-17b80236c1a42f41-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3bfc775f82d23a381e7a3b00a0305c6c", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dd63a5c2-bd42-4adc-86eb-ac0260eb47d6", + "apim-request-id": "a4c8277a-9a7a-41ab-8df9-17fc0db0246f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 28 Aug 2020 21:33:00 GMT", + "Date": "Mon, 02 Nov 2020 18:41:17 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": "9" }, "ResponseBody": { "documents": [ @@ -56,8 +56,6 @@ } ], "Variables": { - "RandomSeed": "1676133981", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1676133981" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json index 702d034101947..fc576354d22fa 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/keyPhrases", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "180", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dd83c072ad16aa4d81f84d11a23ed69f-573e5ddf7adb7e42-00", + "traceparent": "00-419839b40748934b94118c059193ac57-6a78114c296d6041-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7a99e78b28bbdc34334c788be87edcb8", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a52aaf6a-5556-4616-9eb1-5e3e5bc361ce", + "apim-request-id": "9ba9620e-193f-4172-86ce-ca7e16e3d2bf", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 28 Aug 2020 21:32:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:17 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": "37" }, "ResponseBody": { "documents": [ @@ -62,8 +62,6 @@ } ], "Variables": { - "RandomSeed": "591698428", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "591698428" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json index 2fd837c17c76c..f40792a2daccc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/keyPhrases", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "180", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c7948438c870da4f9aacd2c8a083e8c4-e29e7702ff369841-00", + "traceparent": "00-514435daf2eda34ba4653f59b8a05656-b64a9851ec202b40-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d687a16b6a26ea445556f8b3c125785e", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6f84c72c-4443-4374-9e2f-134f94b0fca8", + "apim-request-id": "c54d30f1-0327-491c-9c3b-705539f12d12", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 28 Aug 2020 21:33:00 GMT", + "Date": "Mon, 02 Nov 2020 18:41:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "documents": [ @@ -62,8 +62,6 @@ } ], "Variables": { - "RandomSeed": "1154109326", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1154109326" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json index d3fa014348eda..9caaa67559c79 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-759213107e7ccc4ea28bf83197d3bab6-1373d32b40516d4a-00", + "traceparent": "00-b66c59cf8d85f94692fb3bdb05e206bb-9633e4180ab3924c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "73b99494ac5a2b6a48730fa6d4bda24b", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fb5b4d90-9e5e-4bec-9738-af0f044bdc61", + "apim-request-id": "62cd4c41-a87d-4dff-97da-6b6aa0b96e33", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:07 GMT", + "Date": "Mon, 02 Nov 2020 18:41:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "109" + "x-envoy-upstream-service-time": "203" }, "ResponseBody": { "documents": [ @@ -93,8 +93,6 @@ } ], "Variables": { - "RandomSeed": "1057805335", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1057805335" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json index 7df20e0c8d475..83d0b99667dcd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d0c5d2991447da49b460476783351686-ab5a13ca065d8947-00", + "traceparent": "00-2d2a09d646b7b84ca718af3cc71c7ef8-540271debd686a48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d2ffe8a9cd41c6a7f7eddf3ba0def75e", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0d37e838-5776-46db-93bc-0cd985372c0f", + "apim-request-id": "902c0b1a-ccce-4f05-b629-01dd15b5a92d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:09 GMT", + "Date": "Mon, 02 Nov 2020 18:41:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "104" + "x-envoy-upstream-service-time": "184" }, "ResponseBody": { "documents": [ @@ -93,8 +93,6 @@ } ], "Variables": { - "RandomSeed": "581345388", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "581345388" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json index 343568371086e..7501862a5248e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-860637464014b443874fbd047a1030d9-9c00083f2fda484c-00", + "traceparent": "00-dd479d6f1eb95940ac99ab0a6f961980-cb7c17feb4b9424b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "67616e684f8b043d1e0c71e939770f42", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "add94e99-5792-43c1-b550-2f9f33de2d07", + "apim-request-id": "17152bbb-4c8f-43c9-a52e-3cbbba252db1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:08 GMT", + "Date": "Mon, 02 Nov 2020 18:41:18 GMT", "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": "227" }, "ResponseBody": { "statistics": { @@ -107,8 +107,6 @@ } ], "Variables": { - "RandomSeed": "706252555", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "706252555" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json index 83045e7e23296..c1ee6164e7a09 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1ebf927a8631494190e5fe3c9398a126-ddb2386d4c723c42-00", + "traceparent": "00-e307662f1c627f43b0ae7dab445d0565-7d60157034e5ae4e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3d6191fdfe339ad3e9a9a23dfab389e2", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "259e31e9-5b1b-4260-9efb-469649dc8865", + "apim-request-id": "dc376065-0b25-4e2a-ba4b-e6aa5d50c785", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:09 GMT", + "Date": "Mon, 02 Nov 2020 18:41:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "111" + "x-envoy-upstream-service-time": "124" }, "ResponseBody": { "statistics": { @@ -107,8 +107,6 @@ } ], "Variables": { - "RandomSeed": "915085791", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "915085791" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json index 385855fc5d3d4..e26423449f9a1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d48f22f8bd66354ba1dacf92b4ce74b7-b0774bf4278afa41-00", + "traceparent": "00-0fbf5de569b7754b89bfad82579a7374-cdac9ec7842f5b4d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c2e6195c0f4c89c31e4ed8101a9fceeb", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cf71b6b4-57cc-4e5b-8c0a-9b1ffcdad2f8", + "apim-request-id": "1ee8176f-4cfa-4c17-aadd-4047a386b877", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:08 GMT", + "Date": "Mon, 02 Nov 2020 18:41:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "130" + "x-envoy-upstream-service-time": "201" }, "ResponseBody": { "documents": [ @@ -109,8 +109,6 @@ } ], "Variables": { - "RandomSeed": "1116565065", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1116565065" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json index 0ad94c97e4089..6e1c1196b307d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6085c683b33da245aa58c7c34db23f1c-8f1c397491ed1e42-00", + "traceparent": "00-a3f203ab3a492e47aa603ddf060592aa-1de4892bdd1f224f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "74826ca03adf5e0230955bc11a73f253", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a1745a7c-da9b-45e8-8fe3-611a3fa3c67c", + "apim-request-id": "65c58e21-c0c3-4d14-9c4f-60a209973463", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:09 GMT", + "Date": "Mon, 02 Nov 2020 18:41:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "149" + "x-envoy-upstream-service-time": "150" }, "ResponseBody": { "documents": [ @@ -109,8 +109,6 @@ } ], "Variables": { - "RandomSeed": "1159498521", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1159498521" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json index 7c4c68ff4a17b..7836ac33d5976 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-23ad114bb01d8840a38ae0d9974ab49c-f2a5b1f31bbe0b4d-00", + "traceparent": "00-c47d1b0bf0017546b0608f09cbca5059-9974974b17b72146-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e1ab51bf64c496574b45aba2614e8e70", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fe9b5715-eb2f-4c93-ba97-27a731dae95b", + "apim-request-id": "2258c3a8-9838-467c-a7a6-54b501180b50", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:08 GMT", + "Date": "Mon, 02 Nov 2020 18:41:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "162" + "x-envoy-upstream-service-time": "114" }, "ResponseBody": { "documents": [ @@ -110,8 +110,6 @@ } ], "Variables": { - "RandomSeed": "756961484", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "756961484" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json index 293f52d8b775f..127f0bee39abe 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3a3f971ee1602d49ab652f87fb567f03-932fc8c8dca8234d-00", + "traceparent": "00-6c36e95926af8d49915581cb2d60294a-4dc302b8ba6aa74f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d8b08f95484a0406f97f2f7420372c35", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "06c5136f-ba16-446d-a05a-fd571f27fa6a", + "apim-request-id": "56ce0fe3-77d9-4ba9-86bf-cbfe259d0d6f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:09 GMT", + "Date": "Mon, 02 Nov 2020 18:41:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "107" + "x-envoy-upstream-service-time": "123" }, "ResponseBody": { "documents": [ @@ -110,8 +110,6 @@ } ], "Variables": { - "RandomSeed": "2014309095", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "2014309095" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json index 760c7bede5b40..ecf043872e543 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "297", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f8f7ef63acb7e44cb938ee899fa4c6d6-ce510a601a279244-00", + "traceparent": "00-95c113a17cf2904ebd34946caed18a5e-53644aab01ea4a40-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a8ae17c802a6c3ea068b7f13c73b934a", "x-ms-return-client-request-id": "true" @@ -55,13 +55,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "824f86b3-85f2-4b7e-b270-85c3945e239a", + "apim-request-id": "081c83a4-89ad-4a84-9489-1b9e188344d1", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 31 Aug 2020 18:39:08 GMT", + "Date": "Mon, 02 Nov 2020 18:41:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "error": { @@ -76,8 +76,6 @@ } ], "Variables": { - "RandomSeed": "1535542289", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1535542289" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json index 20d4a9e895341..53b6a9d6218e5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "297", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e6b26c8c0a9875439c466bf75862444e-aad452cf9ca1e44f-00", + "traceparent": "00-113e0b8331ef714794e9085994e3608f-d64a3f120da08142-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "28b544e5b9a5cf3535ddef0fb0fd1d43", "x-ms-return-client-request-id": "true" @@ -55,9 +55,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "51fa7db4-dc15-41d5-8d6e-c2e1493cb6ce", + "apim-request-id": "79c3a897-c18d-4cce-b53e-6f95d2cd2e01", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 31 Aug 2020 18:39:09 GMT", + "Date": "Mon, 02 Nov 2020 18:41:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -76,8 +76,6 @@ } ], "Variables": { - "RandomSeed": "467834574", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "467834574" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json index 41b8143a2e1bb..bacc3d397b229 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-34ff5d2e1e813149b12872e5f8297ac4-5b2f02ec780f954d-00", + "traceparent": "00-8c74d292294c954da906439f5d124a69-de0c2b2cd880214e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0394cc79836b8e2a0617730333d293ff", "x-ms-return-client-request-id": "true" @@ -30,9 +30,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "c2d2c183-0e9b-47ff-8ea5-f62c9a89cc6d", + "apim-request-id": "ca1e533b-44ad-4fa6-bd59-25299b3c1005", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 31 Aug 2020 18:39:08 GMT", + "Date": "Mon, 02 Nov 2020 18:41:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -51,8 +51,6 @@ } ], "Variables": { - "RandomSeed": "449438732", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "449438732" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json index a990df9e7eb9c..143f8a43aeda0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-588c76a49ee2424ca9c9090cb3f80bf8-a0ee5971719ceb43-00", + "traceparent": "00-bc456d714256f5499b961294eab2de0c-54a237cb6762144d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d2a606a042fa292271e9e0fd82e50d07", "x-ms-return-client-request-id": "true" @@ -30,9 +30,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "3428bb4d-8d8b-4a57-9cbf-49f8795ad1b3", + "apim-request-id": "7151f058-0fe7-49f0-8746-a9b7a3f34ef6", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 31 Aug 2020 18:39:09 GMT", + "Date": "Mon, 02 Nov 2020 18:41:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -51,8 +51,6 @@ } ], "Variables": { - "RandomSeed": "269930919", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "269930919" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json index eb2d158d269ce..26c2778b76b7f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7315464b46f48b46ae373d476023f29b-7667bff7748b4e4d-00", + "traceparent": "00-ad08700c53b06f42a3def5a35a2026f7-145101aca2948a4f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "143a14bc880cd41cfe9c98287e990fb6", "x-ms-return-client-request-id": "true" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c92340f2-fc18-4420-bab0-75f446ebd394", + "apim-request-id": "11759dba-8a7c-4c7e-a759-23a306fee0d8", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 31 Aug 2020 18:39:08 GMT", + "Date": "Mon, 02 Nov 2020 18:41:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -58,8 +58,6 @@ } ], "Variables": { - "RandomSeed": "1966020734", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1966020734" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json index 575e1ac3e8157..886dddc2bf86e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e657056ea2e8984db0768871487685f8-0f41d1fd82bbb64f-00", + "traceparent": "00-aa7a36af79abba4f980c3324966ef37d-209587339cc3294e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7afea088ca0a22de1ccfe4f56367e3ca", "x-ms-return-client-request-id": "true" @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cf385a8b-20de-4bdf-b394-5ea6457cbc1a", + "apim-request-id": "b7b9c2f0-aedb-4f95-a828-b123832279d4", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 31 Aug 2020 18:39:10 GMT", + "Date": "Mon, 02 Nov 2020 18:41:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1" + "x-envoy-upstream-service-time": "2" }, "ResponseBody": { "documents": [], @@ -58,8 +58,6 @@ } ], "Variables": { - "RandomSeed": "794759441", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "794759441" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json index 33595a56b5d5b..e8b3361bd8977 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a4bdd469697174499683f132ebb35d82-2808b0baadf4794c-00", + "traceparent": "00-e1d1f4a171c61c4280adfd2e71812f82-7245789d4a992443-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3c7b09ea57a0a9f84c938c05ff06e377", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3fb832d5-f04a-4b70-92a4-055db2d5a0b2", + "apim-request-id": "e6ac1f81-21b3-446a-b575-6a3de000a479", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:08 GMT", + "Date": "Mon, 02 Nov 2020 18:41:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "153" + "x-envoy-upstream-service-time": "156" }, "ResponseBody": { "statistics": { @@ -123,8 +123,6 @@ } ], "Variables": { - "RandomSeed": "541291504", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "541291504" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json index 813dcc43a1f2f..f805daee07706 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-69da7c2dbe95d74ca5f4e7fd400959f4-99838424ad88794c-00", + "traceparent": "00-f032808ac3ab7b45b93f83baf78bfabb-37a8ba90921ee541-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c386dc48f454868243af3522ce69cb86", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d6fe62a4-739d-402f-ad83-86858286125c", + "apim-request-id": "bf80ea0e-0cc9-42c4-94fd-2413d8ee382a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:10 GMT", + "Date": "Mon, 02 Nov 2020 18:41:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "150" + "x-envoy-upstream-service-time": "175" }, "ResponseBody": { "statistics": { @@ -123,8 +123,6 @@ } ], "Variables": { - "RandomSeed": "438437791", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "438437791" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json index 4cb8ef008e2da..eaa5889218cb9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e0260b596aa0de4a80d530dd0a419705-8d371de4afbaf748-00", + "traceparent": "00-aea3f2b5ac2a4f4ab68f74e92baf717a-831fae4283224447-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "483a789eb74f49281b818c10882907cc", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e21d220e-eb0b-4f11-80b3-fb46fa68c9fb", + "apim-request-id": "30b6b02f-c73e-4771-a400-d30389dc6b61", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 18:39:08 GMT", + "Date": "Mon, 02 Nov 2020 18:41:19 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": "86" }, "ResponseBody": { "documents": [ @@ -75,8 +75,6 @@ } ], "Variables": { - "RandomSeed": "958901847", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "958901847" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json index 8d15f641d262c..0d8d4f029ec17 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cde5e903e52c8b4697df42d93ea28b27-bfd7cb0fcb762441-00", + "traceparent": "00-dd21c4935cd79945af787528f416ad8b-010c96400bbb6041-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "700659f3fdefe683be90e2b1951eb421", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ed49a8b6-b911-4b71-8831-d8b1b7764ac5", + "apim-request-id": "bb7ee981-47f7-4aa3-8367-f6a515747430", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 18:39:10 GMT", + "Date": "Mon, 02 Nov 2020 18:41:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "102" + "x-envoy-upstream-service-time": "86" }, "ResponseBody": { "documents": [ @@ -75,8 +75,6 @@ } ], "Variables": { - "RandomSeed": "988548785", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "988548785" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json index be73b207c4165..19ab191a6a190 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-61dfb0b6c25b154fa25e210a7d0da4db-c4177b80fd6b7147-00", + "traceparent": "00-8532bc30dfe3744a92501aa28645b16c-0194f154a9631042-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fb4827053b6a1252c3b25be970bef0ff", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9955cfc5-632a-440c-9b63-c687cb63057e", + "apim-request-id": "fac80020-fdf3-487e-873f-ddd75559c7df", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 18:39:09 GMT", + "Date": "Mon, 02 Nov 2020 18:41:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "70" + "x-envoy-upstream-service-time": "68" }, "ResponseBody": { "documents": [ @@ -75,8 +75,6 @@ } ], "Variables": { - "RandomSeed": "1194835107", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1194835107" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json index 65250f06efae1..f8a4c33601f4c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b5b4582da5d5b544a90ae6af36dbb7c7-a2075daf8932ad41-00", + "traceparent": "00-48059f55546e2e4aa33c817fb1c8a11f-36d16e42f96ff94c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b55082b33b1fe734efdcbb82c7c8a31b", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f5cf86c3-3547-47c0-be05-7de914a67974", + "apim-request-id": "9b56426d-6ef8-4066-afa1-e69ce00ed580", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 18:39:10 GMT", + "Date": "Mon, 02 Nov 2020 18:41:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "70" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": { "documents": [ @@ -75,8 +75,6 @@ } ], "Variables": { - "RandomSeed": "852244609", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "852244609" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json index 8b6e780866192..0d5169dd6f890 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-95882e720add414f9dce02369fcd51d7-4173482318ffd248-00", + "traceparent": "00-f3fa1af6880b8b4794cec5bc37d8e263-01ae7822e53f944b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c580665e455e125e80a821d61e9c3c18", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "67aa01f2-2a15-4af7-aed0-d4a38e08ee19", + "apim-request-id": "1c45dd5a-10b3-40e8-85af-350d3b854c10", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 18:39:09 GMT", + "Date": "Mon, 02 Nov 2020 18:41:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "90" + "x-envoy-upstream-service-time": "79" }, "ResponseBody": { "documents": [ @@ -77,8 +77,6 @@ } ], "Variables": { - "RandomSeed": "1531566714", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1531566714" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json index 25244970b5165..a104c41e2edec 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-79732510a67d8f49820931114fb9facb-9b131d040a9ec44a-00", + "traceparent": "00-74f4e1b30d863a488fb947a02d247b0e-5ba9d831c9896449-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3b4b745166e69035ddd947884a09aa87", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0cdab415-926f-48de-9c09-18a83d2545e1", + "apim-request-id": "6c49475a-6767-4517-948f-8b1bcc35fa9f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 18:39:10 GMT", + "Date": "Mon, 02 Nov 2020 18:41:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "82" + "x-envoy-upstream-service-time": "93" }, "ResponseBody": { "documents": [ @@ -77,8 +77,6 @@ } ], "Variables": { - "RandomSeed": "1094081853", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1094081853" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json index 2fd23f42f713f..e93c161d0543d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4388f412c83d7746acc629f2da31d29c-d6c3324070cbb048-00", + "traceparent": "00-30266f883ef3d1468103174dd1176fd4-5204475fca21ba45-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d727f8b3ab5caeec2a15d6a3b1743ade", "x-ms-return-client-request-id": "true" @@ -35,20 +35,36 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0522352d-7a9a-4617-977c-754e99e5952e", + "apim-request-id": "7bee46f0-6a33-44f6-b3bb-604ad9cc8349", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:10 GMT", + "Date": "Mon, 02 Nov 2020 18:41:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "1328" }, "ResponseBody": { "documents": [ { "id": "0", "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, { "bingId": "0d47c987-0042-5576-15e8-97af601614fa", "name": "Bill Gates", @@ -80,22 +96,6 @@ "id": "Paul Allen", "url": "https://en.wikipedia.org/wiki/Paul_Allen", "dataSource": "Wikipedia" - }, - { - "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", - "name": "Microsoft", - "matches": [ - { - "text": "Microsoft", - "offset": 0, - "length": 9, - "confidenceScore": 0.49 - } - ], - "language": "en", - "id": "Microsoft", - "url": "https://en.wikipedia.org/wiki/Microsoft", - "dataSource": "Wikipedia" } ], "warnings": [] @@ -145,8 +145,6 @@ } ], "Variables": { - "RandomSeed": "1090158568", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1090158568" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json index c9dedb79131fe..dd926c9c00c96 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-443c7b071913b74786616e01067a9726-46cc16ebe3356449-00", + "traceparent": "00-3a4d815e7669914189a82f8443715372-f6d327791c7bee48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "476534efbdc7cda5ab406b046713b5b6", "x-ms-return-client-request-id": "true" @@ -35,20 +35,36 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bfb3a0df-9c6a-46be-8763-67d2ad4730b1", + "apim-request-id": "6ce3d481-58ff-4fae-892a-966c26c2f8b8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:11 GMT", + "Date": "Mon, 02 Nov 2020 18:41:22 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": [ { "id": "0", "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, { "bingId": "0d47c987-0042-5576-15e8-97af601614fa", "name": "Bill Gates", @@ -80,22 +96,6 @@ "id": "Paul Allen", "url": "https://en.wikipedia.org/wiki/Paul_Allen", "dataSource": "Wikipedia" - }, - { - "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", - "name": "Microsoft", - "matches": [ - { - "text": "Microsoft", - "offset": 0, - "length": 9, - "confidenceScore": 0.49 - } - ], - "language": "en", - "id": "Microsoft", - "url": "https://en.wikipedia.org/wiki/Microsoft", - "dataSource": "Wikipedia" } ], "warnings": [] @@ -145,8 +145,6 @@ } ], "Variables": { - "RandomSeed": "118147903", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "118147903" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json index 46c2d51095c3e..8fecf5c6f3fce 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8b7ce7525460524b8722c3df5aa22532-a88be51f87170a45-00", + "traceparent": "00-767bd3dafa36ec48ae37ae327ca276ec-2127cfd4de019042-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "297e980ed9e8189820ebd45ff129bc5c", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "35cd65a2-a262-4893-9302-ba90a864a6f5", + "apim-request-id": "5b146014-f447-4b01-8768-c89870ad8dd2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:10 GMT", + "Date": "Mon, 02 Nov 2020 18:41:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "statistics": { @@ -59,6 +59,22 @@ "transactionsCount": 1 }, "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, { "bingId": "0d47c987-0042-5576-15e8-97af601614fa", "name": "Bill Gates", @@ -90,22 +106,6 @@ "id": "Paul Allen", "url": "https://en.wikipedia.org/wiki/Paul_Allen", "dataSource": "Wikipedia" - }, - { - "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", - "name": "Microsoft", - "matches": [ - { - "text": "Microsoft", - "offset": 0, - "length": 9, - "confidenceScore": 0.49 - } - ], - "language": "en", - "id": "Microsoft", - "url": "https://en.wikipedia.org/wiki/Microsoft", - "dataSource": "Wikipedia" } ], "warnings": [] @@ -159,8 +159,6 @@ } ], "Variables": { - "RandomSeed": "966684010", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "966684010" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json index d7ebd84b2978a..45e10926c600a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c9961b3387477d40bfa9337c826ddaae-512ccb24acd9b34b-00", + "traceparent": "00-ffa7ea494d3d9d44b3124055547ccf03-b646eb6153c16a49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "efbfe45b25f6d2a2775e1edd2fe4e7aa", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4026eccb-c92d-4066-9098-a7103b6248e9", + "apim-request-id": "baa86f3f-d53f-485a-b9e2-b037a34eeecd", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:11 GMT", + "Date": "Mon, 02 Nov 2020 18:41:23 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": "25" }, "ResponseBody": { "statistics": { @@ -59,6 +59,22 @@ "transactionsCount": 1 }, "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, { "bingId": "0d47c987-0042-5576-15e8-97af601614fa", "name": "Bill Gates", @@ -90,22 +106,6 @@ "id": "Paul Allen", "url": "https://en.wikipedia.org/wiki/Paul_Allen", "dataSource": "Wikipedia" - }, - { - "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", - "name": "Microsoft", - "matches": [ - { - "text": "Microsoft", - "offset": 0, - "length": 9, - "confidenceScore": 0.49 - } - ], - "language": "en", - "id": "Microsoft", - "url": "https://en.wikipedia.org/wiki/Microsoft", - "dataSource": "Wikipedia" } ], "warnings": [] @@ -159,8 +159,6 @@ } ], "Variables": { - "RandomSeed": "1003575897", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1003575897" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json index 609cdc2599839..f43e6371c500d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bf499c4c507da04da6df366a5bb0865b-6116ce47565c4c48-00", + "traceparent": "00-4d73c1fc0447d2409a4e1725e7236716-d12eda5ba3e3bb41-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "70aff255bc0a587f23734ec6facb2924", "x-ms-return-client-request-id": "true" @@ -35,20 +35,36 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d45007ae-3780-4cfd-834f-71499488da9b", + "apim-request-id": "1aefafdc-49d8-4b26-8d85-1c5ba788222c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:10 GMT", + "Date": "Mon, 02 Nov 2020 18:41:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "documents": [ { "id": "1", "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, { "bingId": "0d47c987-0042-5576-15e8-97af601614fa", "name": "Bill Gates", @@ -80,22 +96,6 @@ "id": "Paul Allen", "url": "https://en.wikipedia.org/wiki/Paul_Allen", "dataSource": "Wikipedia" - }, - { - "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", - "name": "Microsoft", - "matches": [ - { - "text": "Microsoft", - "offset": 0, - "length": 9, - "confidenceScore": 0.49 - } - ], - "language": "en", - "id": "Microsoft", - "url": "https://en.wikipedia.org/wiki/Microsoft", - "dataSource": "Wikipedia" } ], "warnings": [] @@ -145,8 +145,6 @@ } ], "Variables": { - "RandomSeed": "1863021454", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1863021454" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json index c6e30ec926ca3..ee442bf3442e0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c862ec3e7c0f49469aa1a1f4359e6cc9-447f3c7bc08c0940-00", + "traceparent": "00-77730a7cfdd8f44ab6a66636f89c1241-6ba522839a70fa47-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b6c8d0c26960e1039b6b5addff48c5fe", "x-ms-return-client-request-id": "true" @@ -35,20 +35,36 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a4cc4a01-0c54-4d36-8a00-cb6bb85213f4", + "apim-request-id": "dee987b0-ebdb-4596-be40-bd72ba18418b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:11 GMT", + "Date": "Mon, 02 Nov 2020 18:41:23 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": "22" }, "ResponseBody": { "documents": [ { "id": "1", "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, { "bingId": "0d47c987-0042-5576-15e8-97af601614fa", "name": "Bill Gates", @@ -80,22 +96,6 @@ "id": "Paul Allen", "url": "https://en.wikipedia.org/wiki/Paul_Allen", "dataSource": "Wikipedia" - }, - { - "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", - "name": "Microsoft", - "matches": [ - { - "text": "Microsoft", - "offset": 0, - "length": 9, - "confidenceScore": 0.49 - } - ], - "language": "en", - "id": "Microsoft", - "url": "https://en.wikipedia.org/wiki/Microsoft", - "dataSource": "Wikipedia" } ], "warnings": [] @@ -145,8 +145,6 @@ } ], "Variables": { - "RandomSeed": "1694310088", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1694310088" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json index ef92aedaf40c0..891450188c340 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "229", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7b30b89ab330444481945aeb20cbe4c6-c4ed2d3fef906246-00", + "traceparent": "00-f30c930212fa3f42bf77cee587216926-ddb404d69e6dad4d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1199dc8afc6a0ac5f0743171c35d6934", "x-ms-return-client-request-id": "true" @@ -40,20 +40,36 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b5ee937d-d0ab-4dfd-9b3e-7889b2dc87a5", + "apim-request-id": "bb85d487-30c3-4c1c-88d5-43374cb955b7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:10 GMT", + "Date": "Mon, 02 Nov 2020 18:41:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "documents": [ { "id": "0", "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, { "bingId": "0d47c987-0042-5576-15e8-97af601614fa", "name": "Bill Gates", @@ -85,22 +101,6 @@ "id": "Paul Allen", "url": "https://en.wikipedia.org/wiki/Paul_Allen", "dataSource": "Wikipedia" - }, - { - "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", - "name": "Microsoft", - "matches": [ - { - "text": "Microsoft", - "offset": 0, - "length": 9, - "confidenceScore": 0.49 - } - ], - "language": "en", - "id": "Microsoft", - "url": "https://en.wikipedia.org/wiki/Microsoft", - "dataSource": "Wikipedia" } ], "warnings": [] @@ -162,8 +162,6 @@ } ], "Variables": { - "RandomSeed": "2120326363", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "2120326363" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json index b0610882511c3..a2f5a214731b5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "229", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-de9a4ecec840ab4bae1e4a80dced5aaa-3c8c70c5630b9f46-00", + "traceparent": "00-5227b902ef981543bfff137c433a9348-7792f72799e3404f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4f030e46456aaab2ab975c8325cfab86", "x-ms-return-client-request-id": "true" @@ -40,20 +40,36 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f341efaa-850a-4f40-b1ca-381bfe1e9d16", + "apim-request-id": "46c0e4eb-72ed-43fb-a36e-fba9be5c3e84", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:11 GMT", + "Date": "Mon, 02 Nov 2020 18:41:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "documents": [ { "id": "0", "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, { "bingId": "0d47c987-0042-5576-15e8-97af601614fa", "name": "Bill Gates", @@ -85,22 +101,6 @@ "id": "Paul Allen", "url": "https://en.wikipedia.org/wiki/Paul_Allen", "dataSource": "Wikipedia" - }, - { - "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", - "name": "Microsoft", - "matches": [ - { - "text": "Microsoft", - "offset": 0, - "length": 9, - "confidenceScore": 0.49 - } - ], - "language": "en", - "id": "Microsoft", - "url": "https://en.wikipedia.org/wiki/Microsoft", - "dataSource": "Wikipedia" } ], "warnings": [] @@ -162,8 +162,6 @@ } ], "Variables": { - "RandomSeed": "1773584232", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1773584232" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json index 78bfba351c7e5..3dd82b5eaa22c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "561", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c20d802aca7e5f45911b68ac04575be9-b9b72d3d7ab4b64e-00", + "traceparent": "00-10cc2d0655bf30468f97cacc5413917c-d482f0eace696a44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "192c3c1f91647770ee90b0e32a189a79", "x-ms-return-client-request-id": "true" @@ -55,9 +55,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "1f552bd7-3131-411d-8b1c-9d4134b8276d", + "apim-request-id": "62761efe-5041-45ef-b53e-11a161aa9ec4", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 31 Aug 2020 18:39:10 GMT", + "Date": "Mon, 02 Nov 2020 18:41:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -76,8 +76,6 @@ } ], "Variables": { - "RandomSeed": "907456664", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "907456664" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json index a4d8fdd63c2ac..fb71babf6100f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "561", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fe2090976f782341910f6caa05e5d55a-576fec41955c1a43-00", + "traceparent": "00-3c87b2ee09044e429c883e5f217cf90e-1a3cbefac5a05b4d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "aa01d6b77b2b2d76ec0e72d5ad5d4024", "x-ms-return-client-request-id": "true" @@ -55,9 +55,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "b435938e-48d8-4ab8-93dc-75e5ba03d417", + "apim-request-id": "df508a98-b6a6-41ca-9a8b-f129fc5bc6c0", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 31 Aug 2020 18:39:11 GMT", + "Date": "Mon, 02 Nov 2020 18:41:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -76,8 +76,6 @@ } ], "Variables": { - "RandomSeed": "602192603", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "602192603" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json index 8b2300b2e92c0..c5b04cee158c0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c9053a103195d941ac0af1287db4e297-8078491362821647-00", + "traceparent": "00-02f7493753e6e249ae3160cca47af1c6-a129b8e505dc0445-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "39e775856c33e5040de74ed9f57d5d06", "x-ms-return-client-request-id": "true" @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "e374b11d-0f82-43b1-92f9-e671a5cbd9ad", + "apim-request-id": "2e118360-b920-489b-b66a-996f3a0ca7a7", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 31 Aug 2020 18:39:10 GMT", + "Date": "Mon, 02 Nov 2020 18:41:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "error": { @@ -51,8 +51,6 @@ } ], "Variables": { - "RandomSeed": "143174300", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "143174300" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json index 0db57e5b871d0..fa07b68d702e4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0fea811fa49eb54891ebb580099ceabf-a9208601f7b4ec41-00", + "traceparent": "00-cc811f28dd090746907bee710918df82-4e60669bd5d1174c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9f2af246abde141d1e5ee3f98d0120cc", "x-ms-return-client-request-id": "true" @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "b6f5883a-db51-4ee8-aca5-f4ba17cac79c", + "apim-request-id": "c9db182d-2c3e-4513-8c1b-db879d9d9976", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 31 Aug 2020 18:39:11 GMT", + "Date": "Mon, 02 Nov 2020 18:41:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "error": { @@ -51,8 +51,6 @@ } ], "Variables": { - "RandomSeed": "688120200", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "688120200" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json index 9734323ad42c4..4806b12a8a712 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ad63eb5316666349a43e32c8e10ae038-39d47ef0437a874d-00", + "traceparent": "00-7b67f554a201124ca8cb52eece689427-56cc261392ed524d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "73d297ac9bb0c1f746fd7bde1da9241c", "x-ms-return-client-request-id": "true" @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4b43b825-bce0-4ae8-8a0b-d93f821215d5", + "apim-request-id": "a27edea7-4751-462b-a556-6b3ec18da409", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 31 Aug 2020 18:39:10 GMT", + "Date": "Mon, 02 Nov 2020 18:41:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "documents": [], @@ -58,8 +58,6 @@ } ], "Variables": { - "RandomSeed": "857365247", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "857365247" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json index 33144b118e2e9..8cdb1150203a9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f4f43c97a53c8d48b9ca0c47d6382d5a-1e78db179725a240-00", + "traceparent": "00-a16f0a107251be4b82650a4f741e0dfd-a73aae88b0474c42-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "eb53c4f0f4de762a1a8dd9e931cc3cf8", "x-ms-return-client-request-id": "true" @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9ad43802-d609-40bf-ad4e-c32bbe7f3f8a", + "apim-request-id": "cb3f3a36-1705-41c7-acdd-901a1580bb4e", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 31 Aug 2020 18:39:11 GMT", + "Date": "Mon, 02 Nov 2020 18:41:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1" + "x-envoy-upstream-service-time": "2" }, "ResponseBody": { "documents": [], @@ -58,8 +58,6 @@ } ], "Variables": { - "RandomSeed": "1341433425", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1341433425" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json index 5c88aef53a03b..4c1b12c71a735 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-25e961875f8a6a4b972060b294b9dcb2-fde7b3a432711843-00", + "traceparent": "00-f49954b8bea2cf4aa1561ee077b7b540-bb03f5514b547a42-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "07178a1f00e9eae492911a1486f7f75f", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2e8ee3d7-f5f6-4326-9bc9-d3acbeacdc4a", + "apim-request-id": "11747931-e241-4a4b-9c8d-4e12fa3507d6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:11 GMT", + "Date": "Mon, 02 Nov 2020 18:41:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "statistics": { @@ -59,6 +59,22 @@ "transactionsCount": 1 }, "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, { "bingId": "0d47c987-0042-5576-15e8-97af601614fa", "name": "Bill Gates", @@ -90,22 +106,6 @@ "id": "Paul Allen", "url": "https://en.wikipedia.org/wiki/Paul_Allen", "dataSource": "Wikipedia" - }, - { - "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", - "name": "Microsoft", - "matches": [ - { - "text": "Microsoft", - "offset": 0, - "length": 9, - "confidenceScore": 0.49 - } - ], - "language": "en", - "id": "Microsoft", - "url": "https://en.wikipedia.org/wiki/Microsoft", - "dataSource": "Wikipedia" } ], "warnings": [] @@ -159,8 +159,6 @@ } ], "Variables": { - "RandomSeed": "775198464", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "775198464" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json index c3ef7b8935299..4f8a49e34d8b0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-eea8b79f01686741a8036a9c40a95113-4731289c09b8e64a-00", + "traceparent": "00-87f10cf777b9764793318c4d01195e89-4f548f17de375e4b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c81f2c7c8424b466b144609b6251448a", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8d4720fd-ef4a-4c14-a340-d23770ea79d1", + "apim-request-id": "4aa1901f-a43e-4044-a725-06083dc5801f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 31 Aug 2020 18:39:11 GMT", + "Date": "Mon, 02 Nov 2020 18:41:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "statistics": { @@ -59,6 +59,22 @@ "transactionsCount": 1 }, "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, { "bingId": "0d47c987-0042-5576-15e8-97af601614fa", "name": "Bill Gates", @@ -90,22 +106,6 @@ "id": "Paul Allen", "url": "https://en.wikipedia.org/wiki/Paul_Allen", "dataSource": "Wikipedia" - }, - { - "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", - "name": "Microsoft", - "matches": [ - { - "text": "Microsoft", - "offset": 0, - "length": 9, - "confidenceScore": 0.49 - } - ], - "language": "en", - "id": "Microsoft", - "url": "https://en.wikipedia.org/wiki/Microsoft", - "dataSource": "Wikipedia" } ], "warnings": [] @@ -159,8 +159,6 @@ } ], "Variables": { - "RandomSeed": "1369620328", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1369620328" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json index 51f03c4e05dab..ccf6bfc90a332 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f418ee8a16880a4f963d0011c35ff16d-4dc9a5aa859da841-00", + "traceparent": "00-11e4d0ef599d0d47b45bed5e8c31fb49-a04a37da63fc9f46-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5dbd0e4d74f1991eb1c26555a87606e8", "x-ms-return-client-request-id": "true" @@ -30,20 +30,36 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "84318bf7-978f-4169-8aac-8421a05e7ff0", + "apim-request-id": "00b2df47-ee54-4d39-88f4-99ca93bbcbe5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 18:39:11 GMT", + "Date": "Mon, 02 Nov 2020 18:41:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "documents": [ { "id": "0", "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, { "bingId": "0d47c987-0042-5576-15e8-97af601614fa", "name": "Bill Gates", @@ -75,22 +91,6 @@ "id": "Paul Allen", "url": "https://en.wikipedia.org/wiki/Paul_Allen", "dataSource": "Wikipedia" - }, - { - "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", - "name": "Microsoft", - "matches": [ - { - "text": "Microsoft", - "offset": 0, - "length": 9, - "confidenceScore": 0.49 - } - ], - "language": "en", - "id": "Microsoft", - "url": "https://en.wikipedia.org/wiki/Microsoft", - "dataSource": "Wikipedia" } ], "warnings": [] @@ -102,8 +102,6 @@ } ], "Variables": { - "RandomSeed": "862299711", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "862299711" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json index 456d31ce16599..467a5ea96b7f0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a0abf6eb1d1841458ef15a7eacbff749-1e1ac3d20a07dd42-00", + "traceparent": "00-7d338c204580de48ad3eacbbeabf8435-ad56c3a8cceda641-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "552924120f9751fcf8de062c168ba5ca", "x-ms-return-client-request-id": "true" @@ -30,20 +30,36 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6d468e71-574c-4137-b1f8-56ac0a6e0982", + "apim-request-id": "75753cad-d7fa-4e88-9c48-77ed4d2f864e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 18:39:11 GMT", + "Date": "Mon, 02 Nov 2020 18:41:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "documents": [ { "id": "0", "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.49 + } + ], + "language": "en", + "id": "Microsoft", + "url": "https://en.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, { "bingId": "0d47c987-0042-5576-15e8-97af601614fa", "name": "Bill Gates", @@ -75,22 +91,6 @@ "id": "Paul Allen", "url": "https://en.wikipedia.org/wiki/Paul_Allen", "dataSource": "Wikipedia" - }, - { - "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", - "name": "Microsoft", - "matches": [ - { - "text": "Microsoft", - "offset": 0, - "length": 9, - "confidenceScore": 0.49 - } - ], - "language": "en", - "id": "Microsoft", - "url": "https://en.wikipedia.org/wiki/Microsoft", - "dataSource": "Wikipedia" } ], "warnings": [] @@ -102,8 +102,6 @@ } ], "Variables": { - "RandomSeed": "451982382", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "451982382" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json index 7cb7a2a56da1c..09432c5a94a18 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-39c2dd477e540b47a45d83dc3b5d1cb8-897996739a78be40-00", + "traceparent": "00-9115baf78bc43e45a27ea68a89a0299c-97be6c87ae6c2a47-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "934878dc21c8a0a984e7d2d9ad60c773", "x-ms-return-client-request-id": "true" @@ -30,20 +30,36 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "28b5fa86-3ec2-4334-9d0d-b0e4f3829654", + "apim-request-id": "110a9269-d6f9-4d45-ade4-a83d85c154f5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 18:39:11 GMT", + "Date": "Mon, 02 Nov 2020 18:41:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "506" }, "ResponseBody": { "documents": [ { "id": "0", "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.38 + } + ], + "language": "es", + "id": "Microsoft", + "url": "https://es.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, { "bingId": "0d47c987-0042-5576-15e8-97af601614fa", "name": "Bill Gates", @@ -75,22 +91,6 @@ "id": "Paul Allen", "url": "https://es.wikipedia.org/wiki/Paul_Allen", "dataSource": "Wikipedia" - }, - { - "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", - "name": "Microsoft", - "matches": [ - { - "text": "Microsoft", - "offset": 0, - "length": 9, - "confidenceScore": 0.38 - } - ], - "language": "es", - "id": "Microsoft", - "url": "https://es.wikipedia.org/wiki/Microsoft", - "dataSource": "Wikipedia" } ], "warnings": [] @@ -102,8 +102,6 @@ } ], "Variables": { - "RandomSeed": "1916186259", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1916186259" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json index 6a5a7456c5def..be61648f14117 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6f03a932ae9c08428270b28f34340b16-f511da0f9d23c449-00", + "traceparent": "00-9e7c920b4757b24bbd0ed88b06511b53-02111a22e8460e4e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "25dfcc445911727a9003f8f77dc4c2e5", "x-ms-return-client-request-id": "true" @@ -30,20 +30,36 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c344301b-4153-45bd-b37e-fc858714e66f", + "apim-request-id": "e20f8e0b-03bd-4bb0-bb41-5a87d2e2c730", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 18:39:11 GMT", + "Date": "Mon, 02 Nov 2020 18:41:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "documents": [ { "id": "0", "entities": [ + { + "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", + "name": "Microsoft", + "matches": [ + { + "text": "Microsoft", + "offset": 0, + "length": 9, + "confidenceScore": 0.38 + } + ], + "language": "es", + "id": "Microsoft", + "url": "https://es.wikipedia.org/wiki/Microsoft", + "dataSource": "Wikipedia" + }, { "bingId": "0d47c987-0042-5576-15e8-97af601614fa", "name": "Bill Gates", @@ -75,22 +91,6 @@ "id": "Paul Allen", "url": "https://es.wikipedia.org/wiki/Paul_Allen", "dataSource": "Wikipedia" - }, - { - "bingId": "a093e9b9-90f5-a3d5-c4b8-5855e1b01f85", - "name": "Microsoft", - "matches": [ - { - "text": "Microsoft", - "offset": 0, - "length": 9, - "confidenceScore": 0.38 - } - ], - "language": "es", - "id": "Microsoft", - "url": "https://es.wikipedia.org/wiki/Microsoft", - "dataSource": "Wikipedia" } ], "warnings": [] @@ -102,8 +102,6 @@ } ], "Variables": { - "RandomSeed": "1422875153", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1422875153" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json index ec465c95ac817..d985563d0f26f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-adc4d182eae1fe489cd39593b88ffbeb-fa795d352e969f47-00", + "traceparent": "00-1927c13b378d5b4eb360421e8a46a137-9ee9ac4cbf2b0d45-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200901.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c173c94341dba618c4f393086e026774", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "59b792a1-605d-4114-b364-36a6cac45c4d", + "apim-request-id": "6db447fd-cfa8-45fd-9e72-952e46a2948c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 02 Sep 2020 13:56:57 GMT", + "Date": "Mon, 02 Nov 2020 18:41:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "119" + "x-envoy-upstream-service-time": "1643" }, "ResponseBody": { "documents": [ @@ -102,8 +102,6 @@ } ], "Variables": { - "RandomSeed": "820182005", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "820182005" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json index 5d5100e94e60d..8d74b9e2985e0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-541e310d19d73c4fba064af118c9975f-3be957f46bd1e441-00", + "traceparent": "00-ef1e8075ad131c408a15de73c2081a29-c042125f7cd7fe4b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200901.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2cf317139685f87e3e57184c7620cca1", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e14e6939-fd42-4535-97cc-4656d444cea5", + "apim-request-id": "46c8e05f-1038-468d-9550-11f390e9717f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 02 Sep 2020 13:56:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "117" + "x-envoy-upstream-service-time": "134" }, "ResponseBody": { "documents": [ @@ -102,8 +102,6 @@ } ], "Variables": { - "RandomSeed": "573069134", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "573069134" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json index 8364e0afffd71..a2918c54d6333 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9870f217395e3b4789208acf3d82da73-2912e1e71abadd40-00", + "traceparent": "00-3e692d7b971dd94d8f753528899108e0-9223eaf55779684b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200901.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "eecc011d319477b6a3836264a1185b02", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6f57c9ed-eed7-4461-92a4-4cd79d3dd886", + "apim-request-id": "e8412fb1-721d-4e47-9dda-3fb3b80b677e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 02 Sep 2020 13:56:57 GMT", + "Date": "Mon, 02 Nov 2020 18:41:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "119" + "x-envoy-upstream-service-time": "130" }, "ResponseBody": { "statistics": { @@ -116,8 +116,6 @@ } ], "Variables": { - "RandomSeed": "1097726284", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1097726284" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json index 1581dfe64121b..d1dc8422cacd5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1618855e5a26b84aaa8cca13cd21196e-7a5c6e7c329c8a46-00", + "traceparent": "00-dff5d4490e35b9418f85809cb1f9f2ef-599c91618e09e341-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200901.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8ceec0e33c8ae486f712d7bec0815450", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dc4ed54c-57a2-4b26-9bc2-045989f60234", + "apim-request-id": "56fb9d5d-f9f4-46d0-8021-e0eba652f2a1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 02 Sep 2020 13:56:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "122" + "x-envoy-upstream-service-time": "146" }, "ResponseBody": { "statistics": { @@ -116,8 +116,6 @@ } ], "Variables": { - "RandomSeed": "822339012", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "822339012" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json index ccb27c01b2202..fa7a0d75de6df 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e2da076e49ff444aa40451440bc50d8e-28b6cc8498794b49-00", + "traceparent": "00-f72964043a9d794f96bf13bfced5b322-346bbed01ae5894f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200901.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f53bbc38a2b6814e4c65b541758c5e0a", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a6e395cb-0ae2-45f7-9a00-df1b3987bc0b", + "apim-request-id": "20652710-e571-4070-8027-320aebbb1c31", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 02 Sep 2020 13:56:57 GMT", + "Date": "Mon, 02 Nov 2020 18:41:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "117" + "x-envoy-upstream-service-time": "130" }, "ResponseBody": { "documents": [ @@ -102,8 +102,6 @@ } ], "Variables": { - "RandomSeed": "169579662", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "169579662" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json index 0ee1c19b1853f..70bf095f20a08 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b4271ff58300ab45b3f030c3874ed32a-7b05e4d64050dd41-00", + "traceparent": "00-23577183c2d2934bbd21ad46b68de22b-8aad6f106d716241-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200901.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "79f5f1883ef14a0947e802df013a4e11", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "feafa17d-a25a-4f19-a940-66080787479f", + "apim-request-id": "8cd989bf-1aa0-41c2-86f7-f51bd3152546", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 02 Sep 2020 13:57:00 GMT", + "Date": "Mon, 02 Nov 2020 18:41:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "114" + "x-envoy-upstream-service-time": "129" }, "ResponseBody": { "documents": [ @@ -102,8 +102,6 @@ } ], "Variables": { - "RandomSeed": "1167133842", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1167133842" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json index 91c0ae9017ae4..502f1d4ebe282 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "331", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9537551555e5e24d806dc744d2c6af86-e8cc50b2c39df04b-00", + "traceparent": "00-7328663d9031434b8d68632bfb991c9d-edaa21aa2e9b2348-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200901.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e382b2e96bf3675f4d7d7960b8b32916", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c9a17d80-f7fb-4ea7-b5b1-ca691854fb87", + "apim-request-id": "e7054563-3ebe-40e9-ab41-f44419394a38", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 02 Sep 2020 13:56:57 GMT", + "Date": "Mon, 02 Nov 2020 18:41:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "110" + "x-envoy-upstream-service-time": "142" }, "ResponseBody": { "documents": [ @@ -119,8 +119,6 @@ } ], "Variables": { - "RandomSeed": "239145501", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "239145501" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json index f661decb7755e..a94d1eb60eef0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "331", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8e01688edcbefc49bf7cf9349e02cf04-2d56e9fab3eac248-00", + "traceparent": "00-b16959aeb07530489ab244b738aceb0d-8f9e14886796c348-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200901.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e218864f9605e01c86941869a0be6841", "x-ms-return-client-request-id": "true" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dd6a7f8f-d0aa-4eb3-93ab-03fa4dc9e14f", + "apim-request-id": "cb8b78f7-7fc7-4a53-bdba-f6973402860b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 02 Sep 2020 13:57:00 GMT", + "Date": "Mon, 02 Nov 2020 18:41:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "123" + "x-envoy-upstream-service-time": "138" }, "ResponseBody": { "documents": [ @@ -119,8 +119,6 @@ } ], "Variables": { - "RandomSeed": "1607409987", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1607409987" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json index a0c68b073caab..60583ce0bcaeb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-77a42fa1eecaf9418f91c9ce4a3c46de-c1919d2b2228ea48-00", + "traceparent": "00-7e20877cd98a5643b3fc7556f943e651-2a7da5243b882241-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200901.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9d7c7445e676a32cbc4854ae746d53b1", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cdd1d83d-75ef-4392-a6c1-e89492fb5a51", + "apim-request-id": "436a809e-76c2-4f3c-a7d6-dbe5c6463cba", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 02 Sep 2020 13:56:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "112" + "x-envoy-upstream-service-time": "132" }, "ResponseBody": { "statistics": { @@ -116,8 +116,6 @@ } ], "Variables": { - "RandomSeed": "448790314", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "448790314" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json index 671baa27b8969..bda2cf570796f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ffdb9aab24fa6a43b96f84cc1abfe8ca-cff5da144bf49d4c-00", + "traceparent": "00-0fb83624c437744692d139dbbaf116a6-4be2d9c7cb716f43-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200901.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6372c6fc37bbef8068bba6a5d3c4483a", "x-ms-return-client-request-id": "true" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9801fd03-7d6d-4253-8607-e7cdfaa3c431", + "apim-request-id": "66dc4968-7a47-4918-9f16-fceb697f02af", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 02 Sep 2020 13:57:00 GMT", + "Date": "Mon, 02 Nov 2020 18:41:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "125" + "x-envoy-upstream-service-time": "140" }, "ResponseBody": { "statistics": { @@ -116,8 +116,6 @@ } ], "Variables": { - "RandomSeed": "747198553", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "747198553" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json index 5d4b7dbc326ec..e2fb1751bc121 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8bb75dbfe2b57a49a0d25e7ccca5510b-e2024cd6abf84246-00", + "traceparent": "00-f7eb0b5455cbac4b8b3e7da3fcf23e3f-1685023f78ee844d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200901.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "40f3d388777c07f3a5efa0af174b7c81", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "00b06f2f-3bd4-49da-a851-d4aa2b82398b", + "apim-request-id": "a1231bbd-3d06-4d62-a64e-1948c4973251", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 02 Sep 2020 13:56:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "102" + "x-envoy-upstream-service-time": "98" }, "ResponseBody": { "documents": [ @@ -69,8 +69,6 @@ } ], "Variables": { - "RandomSeed": "1989383672", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1989383672" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json index ab664b1441598..a6c1c0fee3434 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dc9a93dbbe6fc84189aa65e4831a091d-e14b08c834a59943-00", + "traceparent": "00-72cc040a63b73e42a5b50b19b65223f0-fe2c045c245f9d4a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200901.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b40e3ff9f3697ab649fbbfa57575c10c", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ea150190-5744-4f54-ae5f-daf1a4e36c93", + "apim-request-id": "b6913341-8130-4a49-8536-bc97252991ff", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 02 Sep 2020 13:57:00 GMT", + "Date": "Mon, 02 Nov 2020 18:41:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "105" + "x-envoy-upstream-service-time": "104" }, "ResponseBody": { "documents": [ @@ -69,8 +69,6 @@ } ], "Variables": { - "RandomSeed": "1876268396", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1876268396" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json index 3ec3ee78a6ebf..d0def36153c0d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "107", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9d30de129face845bb06f29d5d8dd81a-f59cc3eac2cf2f47-00", + "traceparent": "00-9f7e8f5ad6bc034c89ab8b0f03178931-c21698748a3b9d4b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200901.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5757e3544f245670b8a4c82d4b10bc4c", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7272ad2e-b969-4b01-8056-a0f91199ae4c", + "apim-request-id": "acaf6e29-23fe-4dff-99a6-64a1c811ba63", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 02 Sep 2020 13:56:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "104" + "x-envoy-upstream-service-time": "78" }, "ResponseBody": { "documents": [ @@ -62,8 +62,6 @@ } ], "Variables": { - "RandomSeed": "114454170", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "114454170" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json index a09ed11a82be7..e1ab3b39858f1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "107", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-62434d07c653554587e5ccd85ea2fc59-29df2b02ae9a1c4c-00", + "traceparent": "00-7e742341d07ea943ac67c50aa040aed9-1852f3b6ece6ab4e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200901.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4a37fade57ea6b5a5ff8ab22891b6b20", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8ada8951-8f27-48ed-a7c9-9acbbcb043fd", + "apim-request-id": "3ce9d6a7-99c9-4c12-8779-a5144d4fb0ea", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 02 Sep 2020 13:57:00 GMT", + "Date": "Mon, 02 Nov 2020 18:41:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "91" + "x-envoy-upstream-service-time": "90" }, "ResponseBody": { "documents": [ @@ -62,8 +62,6 @@ } ], "Variables": { - "RandomSeed": "820241717", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "820241717" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json index 00a90f8c5ca84..282738188499e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-37cbc09db2447f44b7dba3642357b663-e2f92bf5d2b17a43-00", + "traceparent": "00-d07cb43ffe4c5947a601332f04c98eab-9f76b51c78addb43-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200901.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2a5fd4f3bf3db4629b14e3f9050dd01c", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "42fc8d9d-0145-4a7d-929c-cd285d3454dd", + "apim-request-id": "5c78877f-53d9-4c7c-8026-34794e0df51f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 02 Sep 2020 13:56:59 GMT", + "Date": "Mon, 02 Nov 2020 18:41:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "98" + "x-envoy-upstream-service-time": "102" }, "ResponseBody": { "documents": [ @@ -69,8 +69,6 @@ } ], "Variables": { - "RandomSeed": "2103634278", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "2103634278" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json index 366796191ec80..8555162d5a100 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cc058aac3f216e4aa9a7e16e7e305b3b-e03ae9a987006b45-00", + "traceparent": "00-6711f2db6ff43747bdd67d116efd4bcd-f03c1ec40ea4464d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200901.1", - "(.NET Core 4.6.29130.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "df1d0a85dc552d663ac944ac69a80a0d", "x-ms-return-client-request-id": "true" @@ -30,10 +30,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2fc119e8-cea5-46d1-889d-cb0f54793652", + "apim-request-id": "614753c6-d763-4dce-a0a9-39b0d57a4e70", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 02 Sep 2020 13:57:00 GMT", + "Date": "Mon, 02 Nov 2020 18:41:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -69,8 +69,6 @@ } ], "Variables": { - "RandomSeed": "1408135123", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1408135123" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json index a98a9ae694af7..6475da4a67f68 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?model-version=2020-02-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?model-version=2020-02-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-53c84e76b3a4b64488d8b504bc16266e-3d90b35e1215ed4d-00", + "traceparent": "00-13d38b0a11f8794485af00e62789c9ae-ae5e4ecc081b0c43-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2bbb7414e3ce80e03f8df0adf3eb7d0c", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f2a26384-cd0f-4402-95b5-adb5a8091fb0", + "apim-request-id": "d467f948-50c1-4b38-b622-c2bb83ef96bc", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 18:39:12 GMT", + "Date": "Mon, 02 Nov 2020 18:41:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "78" + "x-envoy-upstream-service-time": "66" }, "ResponseBody": { "documents": [ @@ -76,8 +76,6 @@ } ], "Variables": { - "RandomSeed": "1654409937", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1654409937" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json index 80a08e157fb30..b2d71a9790ecf 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?model-version=2020-02-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?model-version=2020-02-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ea5a2cd2df12134faea0b4ccc1bcd387-2632cd160150e54d-00", + "traceparent": "00-0a8b5f01d15a534d927893ce7878aac9-9641a9cb83567148-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6470d4cf3910c27ceead9bc2cf6c8aa0", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e4104acb-e5f1-4512-952f-c490802f0e7a", + "apim-request-id": "59dd8596-e66c-49e3-993f-fef00e561a6a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 18:39:12 GMT", + "Date": "Mon, 02 Nov 2020 18:41:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "74" + "x-envoy-upstream-service-time": "64" }, "ResponseBody": { "documents": [ @@ -76,8 +76,6 @@ } ], "Variables": { - "RandomSeed": "62086103", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "62086103" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json index 4d8fb8199f0f0..74a2d42711059 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a050dfa4e0fb4749be8f75be579c25ef-fb5210383b40f64a-00", + "traceparent": "00-cf93d562de5ec243af578bb4ef1e183d-070cf520c12da241-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "af25edec94c2cbbfd63455e84047f9b5", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1ac9d369-7311-40cb-9da9-e4d9b006d34f", + "apim-request-id": "0c440faa-16c8-4f59-a2e8-0160bdf2f185", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 20:22:43 GMT", + "Date": "Mon, 02 Nov 2020 18:41:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "77" + "x-envoy-upstream-service-time": "82" }, "ResponseBody": { "documents": [ @@ -61,8 +61,6 @@ } ], "Variables": { - "RandomSeed": "514682034", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "514682034" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json index fc03319956b44..b90e5537a2ef0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1810d879bb2e81479d0a83fc1aef305d-f584973a90b8a74f-00", + "traceparent": "00-55800cfecb95a541931e32e2458f7ab9-09fb4aad1ecd5d41-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "66b8ef6aed4353af1a0a6380bef4513f", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9a296e39-55fc-4dda-9f68-48fb7fc8e1c5", + "apim-request-id": "9b58c2e7-36a6-473d-9e39-f41496c48d7a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 20:22:43 GMT", + "Date": "Mon, 02 Nov 2020 18:41:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "68" + "x-envoy-upstream-service-time": "91" }, "ResponseBody": { "documents": [ @@ -61,8 +61,6 @@ } ], "Variables": { - "RandomSeed": "1998010767", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1998010767" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json index 75400973fd148..400cbe9551330 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "70", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d84f23a3f185e541b8bf15b46afb1fcd-4fe20735d17d684b-00", + "traceparent": "00-243717d79420e44c8c98b448f83d8d26-816fb7eddb8d414a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9c096f0bd3a36f626316eda5be1e28c8", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d8e44cea-bc65-4cb2-a477-bcdc6d720784", + "apim-request-id": "1047128e-3277-4ae4-acb6-95b1b8d27cc4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 20:22:43 GMT", + "Date": "Mon, 02 Nov 2020 18:41:27 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": "60" }, "ResponseBody": { "documents": [ @@ -61,8 +61,6 @@ } ], "Variables": { - "RandomSeed": "665053590", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "665053590" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json index 54c17c26f1a30..64191031898c9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "70", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-79aefc9f8af8db42be921f536f5df9f9-b0f5c5880dbb0548-00", + "traceparent": "00-6c82931fa6dad24b86eb0d80b4548110-5bb6852bc21b8d49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a71f02631f3c7a05f4cb179d2fb85aac", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8bff9681-ccd1-419a-ad6d-2ad23514008f", + "apim-request-id": "defa8d9e-885b-4e02-9893-f0f2cf80653e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 20:22:43 GMT", + "Date": "Mon, 02 Nov 2020 18:41:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "54" + "x-envoy-upstream-service-time": "64" }, "ResponseBody": { "documents": [ @@ -61,8 +61,6 @@ } ], "Variables": { - "RandomSeed": "1077947182", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1077947182" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json index 1498dc9850df4..b98b0bf7af32c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-37d358de7afced458b9b2a11996e1f25-2e1cf05ae88ae14d-00", + "traceparent": "00-ab75b6304b5aee47b349b2bb4a42a84a-6e1dec676e2b8c4b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a12918df519b0dc53f87435017a62e99", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c0d165b8-63c1-4ce1-b442-569328d46473", + "apim-request-id": "a0440941-9c4a-4011-9a60-52a47fbf29db", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 20:22:43 GMT", + "Date": "Mon, 02 Nov 2020 18:41:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "79" + "x-envoy-upstream-service-time": "83" }, "ResponseBody": { "documents": [ @@ -61,8 +61,6 @@ } ], "Variables": { - "RandomSeed": "1277894095", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1277894095" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json index 556036675272b..2c91dc1ac165e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-82dc2063dc7acf4bb261e13b1a2e40cf-d13649b8d2a7e346-00", + "traceparent": "00-cc05d4b645ddbb4a8c8b59d4c9759b16-9679f04f570f5147-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200831.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "05b9b9c88ccd2f82a72e96b9014b88fb", "x-ms-return-client-request-id": "true" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bcf785ce-7d9e-42a1-b74c-80de4329126a", + "apim-request-id": "e0a1c205-6ebf-4e19-a4c1-63cc6e01dd63", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 31 Aug 2020 20:22:43 GMT", + "Date": "Mon, 02 Nov 2020 18:41:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "72" + "x-envoy-upstream-service-time": "69" }, "ResponseBody": { "documents": [ @@ -61,8 +61,6 @@ } ], "Variables": { - "RandomSeed": "1551033461", - "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "RandomSeed": "1551033461" } } \ No newline at end of file From 52abfa0db5f8dc127d89e24851d8881db8ddee5f Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Mon, 2 Nov 2020 11:03:32 -0800 Subject: [PATCH 20/58] update tests endpoint to dev and record tests --- .../AnalyzeSentimentBatchConvenienceFullTest.json | 10 +++++----- .../AnalyzeSentimentBatchConvenienceFullTestAsync.json | 8 ++++---- .../AnalyzeSentimentBatchConvenienceTest.json | 10 +++++----- .../AnalyzeSentimentBatchConvenienceTestAsync.json | 10 +++++----- ...eSentimentBatchConvenienceWithCancellationTest.json | 10 +++++----- ...imentBatchConvenienceWithCancellationTestAsync.json | 8 ++++---- ...atchConvenienceWithLanguageAndCancellationTest.json | 10 +++++----- ...onvenienceWithLanguageAndCancellationTestAsync.json | 10 +++++----- ...tBatchConvenienceWithLanguageAndStatisticsTest.json | 10 +++++----- ...hConvenienceWithLanguageAndStatisticsTestAsync.json | 10 +++++----- ...alyzeSentimentBatchConvenienceWithLanguageTest.json | 10 +++++----- ...SentimentBatchConvenienceWithLanguageTestAsync.json | 10 +++++----- ...SentimentBatchConvenienceWithOpinionMiningTest.json | 10 +++++----- ...mentBatchConvenienceWithOpinionMiningTestAsync.json | 10 +++++----- ...chConvenienceWithStatisticsAndCancellationTest.json | 10 +++++----- ...venienceWithStatisticsAndCancellationTestAsync.json | 10 +++++----- ...yzeSentimentBatchConvenienceWithStatisticsTest.json | 10 +++++----- ...ntimentBatchConvenienceWithStatisticsTestAsync.json | 10 +++++----- .../AnalyzeSentimentBatchTest.json | 10 +++++----- .../AnalyzeSentimentBatchTestAsync.json | 10 +++++----- .../AnalyzeSentimentBatchWithErrorTest.json | 10 +++++----- .../AnalyzeSentimentBatchWithErrorTestAsync.json | 10 +++++----- .../AnalyzeSentimentBatchWithNullIdTest.json | 10 +++++----- .../AnalyzeSentimentBatchWithNullIdTestAsync.json | 8 ++++---- .../AnalyzeSentimentBatchWithNullTextTest.json | 8 ++++---- .../AnalyzeSentimentBatchWithNullTextTestAsync.json | 10 +++++----- .../AnalyzeSentimentBatchWithOpinionMiningTest.json | 10 +++++----- ...nalyzeSentimentBatchWithOpinionMiningTestAsync.json | 10 +++++----- .../AnalyzeSentimentBatchWithStatisticsTest.json | 10 +++++----- .../AnalyzeSentimentBatchWithStatisticsTestAsync.json | 10 +++++----- .../AnalyzeSentimentTests/AnalyzeSentimentTest.json | 10 +++++----- .../AnalyzeSentimentTestAsync.json | 10 +++++----- .../AnalyzeSentimentWithCancellationTest.json | 10 +++++----- .../AnalyzeSentimentWithCancellationTestAsync.json | 10 +++++----- ...nalyzeSentimentWithLanguageAndCancellationTest.json | 10 +++++----- ...eSentimentWithLanguageAndCancellationTestAsync.json | 10 +++++----- .../AnalyzeSentimentWithLanguageTest.json | 10 +++++----- .../AnalyzeSentimentWithLanguageTestAsync.json | 10 +++++----- .../AnalyzeSentimentWithOpinionMining.json | 10 +++++----- .../AnalyzeSentimentWithOpinionMiningAsync.json | 10 +++++----- .../AnalyzeSentimentWithOpinionMiningEmpty.json | 10 +++++----- .../AnalyzeSentimentWithOpinionMiningEmptyAsync.json | 10 +++++----- .../AnalyzeSentimentWithOpinionMiningNegated.json | 10 +++++----- .../AnalyzeSentimentWithOpinionMiningNegatedAsync.json | 10 +++++----- .../DetectLanguageBatchConvenienceTest.json | 10 +++++----- .../DetectLanguageBatchConvenienceTestAsync.json | 10 +++++----- ...tectLanguageBatchConvenienceWithStatisticsTest.json | 10 +++++----- ...anguageBatchConvenienceWithStatisticsTestAsync.json | 10 +++++----- .../DetectLanguageTests/DetectLanguageBatchTest.json | 10 +++++----- .../DetectLanguageBatchTestAsync.json | 8 ++++---- .../DetectLanguageBatchWithErrorTest.json | 10 +++++----- .../DetectLanguageBatchWithErrorTestAsync.json | 10 +++++----- .../DetectLanguageBatchWithNullIdTest.json | 10 +++++----- .../DetectLanguageBatchWithNullIdTestAsync.json | 10 +++++----- .../DetectLanguageBatchWithNullTextTest.json | 8 ++++---- .../DetectLanguageBatchWithNullTextTestAsync.json | 8 ++++---- .../DetectLanguageBatchWithStatisticsTest.json | 8 ++++---- .../DetectLanguageBatchWithStatisticsTestAsync.json | 10 +++++----- .../DetectLanguageTests/DetectLanguageTest.json | 10 +++++----- .../DetectLanguageTests/DetectLanguageTestAsync.json | 10 +++++----- .../DetectLanguageWithCountryHintTest.json | 10 +++++----- .../DetectLanguageWithCountryHintTestAsync.json | 10 +++++----- .../DetectLanguageWithErrorCountryHintTest.json | 8 ++++---- .../DetectLanguageWithErrorCountryHintTestAsync.json | 10 +++++----- .../DetectLanguageWithNoneCountryHintTest.json | 10 +++++----- .../DetectLanguageWithNoneCountryHintTestAsync.json | 10 +++++----- .../DetectLanguageWithNoneDefaultCountryHintTest.json | 10 +++++----- ...ectLanguageWithNoneDefaultCountryHintTestAsync.json | 10 +++++----- .../ExtractKeyPhrasesBatchConvenienceTest.json | 10 +++++----- .../ExtractKeyPhrasesBatchConvenienceTestAsync.json | 10 +++++----- ...ctKeyPhrasesBatchConvenienceWithStatisticsTest.json | 10 +++++----- ...PhrasesBatchConvenienceWithStatisticsTestAsync.json | 10 +++++----- .../ExtractKeyPhrasesBatchTest.json | 10 +++++----- .../ExtractKeyPhrasesBatchTestAsync.json | 10 +++++----- .../ExtractKeyPhrasesBatchWithErrorTest.json | 10 +++++----- .../ExtractKeyPhrasesBatchWithErrorTestAsync.json | 10 +++++----- .../ExtractKeyPhrasesBatchWithNullIdTest.json | 8 ++++---- .../ExtractKeyPhrasesBatchWithNullIdTestAsync.json | 8 ++++---- .../ExtractKeyPhrasesBatchWithNullTextTest.json | 10 +++++----- .../ExtractKeyPhrasesBatchWithNullTextTestAsync.json | 8 ++++---- .../ExtractKeyPhrasesBatchWithSatisticsTest.json | 10 +++++----- .../ExtractKeyPhrasesBatchWithSatisticsTestAsync.json | 8 ++++---- .../ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json | 10 +++++----- .../ExtractKeyPhrasesTestAsync.json | 10 +++++----- .../ExtractKeyPhrasesWithLanguageTest.json | 10 +++++----- .../ExtractKeyPhrasesWithLanguageTestAsync.json | 10 +++++----- .../ExtractKeyPhrasesWithWarningTest.json | 10 +++++----- .../ExtractKeyPhrasesWithWarningTestAsync.json | 10 +++++----- .../RecognizeEntitiesBatchConvenienceTest.json | 10 +++++----- .../RecognizeEntitiesBatchConvenienceTestAsync.json | 10 +++++----- ...nizeEntitiesBatchConvenienceWithStatisticsTest.json | 10 +++++----- ...ntitiesBatchConvenienceWithStatisticsTestAsync.json | 10 +++++----- .../RecognizeEntitiesBatchTest.json | 10 +++++----- .../RecognizeEntitiesBatchTestAsync.json | 10 +++++----- .../RecognizeEntitiesBatchWithErrorTest.json | 10 +++++----- .../RecognizeEntitiesBatchWithErrorTestAsync.json | 10 +++++----- ...RecognizeEntitiesBatchWithInvalidDocumentBatch.json | 10 +++++----- ...nizeEntitiesBatchWithInvalidDocumentBatchAsync.json | 8 ++++---- .../RecognizeEntitiesBatchWithNullIdTest.json | 8 ++++---- .../RecognizeEntitiesBatchWithNullIdTestAsync.json | 8 ++++---- .../RecognizeEntitiesBatchWithNullTextTest.json | 8 ++++---- .../RecognizeEntitiesBatchWithNullTextTestAsync.json | 8 ++++---- .../RecognizeEntitiesBatchWithStatisticsTest.json | 10 +++++----- .../RecognizeEntitiesBatchWithStatisticsTestAsync.json | 10 +++++----- .../RecognizeEntitiesTests/RecognizeEntitiesTest.json | 10 +++++----- .../RecognizeEntitiesTestAsync.json | 10 +++++----- .../RecognizeEntitiesWithLanguageTest.json | 8 ++++---- .../RecognizeEntitiesWithLanguageTestAsync.json | 10 +++++----- .../RecognizeEntitiesWithSubCategoryTest.json | 10 +++++----- .../RecognizeEntitiesWithSubCategoryTestAsync.json | 10 +++++----- .../RecognizeLinkedEntitiesBatchConvenienceTest.json | 10 +++++----- ...cognizeLinkedEntitiesBatchConvenienceTestAsync.json | 10 +++++----- ...nkedEntitiesBatchConvenienceWithStatisticsTest.json | 10 +++++----- ...ntitiesBatchConvenienceWithStatisticsTestAsync.json | 10 +++++----- .../RecognizeLinkedEntitiesBatchTest.json | 10 +++++----- .../RecognizeLinkedEntitiesBatchTestAsync.json | 10 +++++----- .../RecognizeLinkedEntitiesBatchWithErrorTest.json | 10 +++++----- ...RecognizeLinkedEntitiesBatchWithErrorTestAsync.json | 10 +++++----- ...izeLinkedEntitiesBatchWithInvalidDocumentBatch.json | 10 +++++----- ...nkedEntitiesBatchWithInvalidDocumentBatchAsync.json | 10 +++++----- .../RecognizeLinkedEntitiesBatchWithNullIdTest.json | 10 +++++----- ...ecognizeLinkedEntitiesBatchWithNullIdTestAsync.json | 8 ++++---- .../RecognizeLinkedEntitiesBatchWithNullTextTest.json | 10 +++++----- ...ognizeLinkedEntitiesBatchWithNullTextTestAsync.json | 8 ++++---- ...RecognizeLinkedEntitiesBatchWithStatisticsTest.json | 10 +++++----- ...nizeLinkedEntitiesBatchWithStatisticsTestAsync.json | 10 +++++----- .../RecognizeLinkedEntitiesTest.json | 10 +++++----- .../RecognizeLinkedEntitiesTestAsync.json | 10 +++++----- .../RecognizeLinkedEntitiesWithLanguageTest.json | 10 +++++----- .../RecognizeLinkedEntitiesWithLanguageTestAsync.json | 10 +++++----- .../RecognizePiiEntitiesBatchConvenienceTest.json | 10 +++++----- .../RecognizePiiEntitiesBatchConvenienceTestAsync.json | 10 +++++----- ...ePiiEntitiesBatchConvenienceWithStatisticsTest.json | 10 +++++----- ...ntitiesBatchConvenienceWithStatisticsTestAsync.json | 10 +++++----- .../RecognizePiiEntitiesBatchTest.json | 10 +++++----- .../RecognizePiiEntitiesBatchTestAsync.json | 10 +++++----- .../RecognizePiiEntitiesBatchWithErrorTest.json | 10 +++++----- .../RecognizePiiEntitiesBatchWithErrorTestAsync.json | 10 +++++----- .../RecognizePiiEntitiesBatchWithStatisticsTest.json | 10 +++++----- ...cognizePiiEntitiesBatchWithStatisticsTestAsync.json | 10 +++++----- .../RecognizePiiEntitiesTest.json | 10 +++++----- .../RecognizePiiEntitiesTestAsync.json | 10 +++++----- .../RecognizePiiEntitiesWithDomainTest.json | 10 +++++----- .../RecognizePiiEntitiesWithDomainTestAsync.json | 10 +++++----- .../RecognizePiiEntitiesWithLanguageTest.json | 10 +++++----- .../RecognizePiiEntitiesWithLanguageTestAsync.json | 10 +++++----- .../EntitiesCategories.json | 10 +++++----- .../EntitiesCategoriesAsync.json | 10 +++++----- .../TextAnalyticsClientLiveTests/TextInKoreanNFC.json | 10 +++++----- .../TextInKoreanNFCAsync.json | 10 +++++----- .../TextWithDiacriticsNFC.json | 10 +++++----- .../TextWithDiacriticsNFCAsync.json | 10 +++++----- .../TextAnalyticsClientLiveTests/TextWithEmoji.json | 10 +++++----- .../TextWithEmojiAsync.json | 10 +++++----- 154 files changed, 749 insertions(+), 749 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json index be9dd603b967e..30ec29ce04daa 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-db2e63c220857e428fec41c4831ad194-57ceeb2e377f1347-00", + "traceparent": "00-62de6262b2135444abf97e54dc015dac-dcc5daf579779746-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "936abdcd-9124-4677-b77e-0e0cb9bb5a35", + "apim-request-id": "16da841a-161a-47be-be2f-52ffe70d0d1d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:09 GMT", + "Date": "Mon, 02 Nov 2020 19:02:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "86" + "x-envoy-upstream-service-time": "92" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json index e3dcd2ef5998b..d1a56cccd44cb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-109ea83c0eefcb4b8272d6b6c39ef631-e9bc2ca66ca6ef4d-00", + "traceparent": "00-83f43c7c1c77684f8eb4bef77aa3e012-eeea4c85fa9ba849-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,10 +35,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fae84248-c4ab-4f82-b46a-c6cdfaf781e6", + "apim-request-id": "0350f240-896e-485b-bf6c-96a5d4b89a55", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:11 GMT", + "Date": "Mon, 02 Nov 2020 19:02:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json index 7cef3e2a5cf84..e6f4f9c9deded 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4680e93c83ef2b4d9c6deb17d5145423-ddaaef6b9b4bb74e-00", + "traceparent": "00-3e4ddce44fd76c429980605c2482fce9-7357f757defefb49-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cff809d7-b782-4b83-b29e-46dc0fb0cfd6", + "apim-request-id": "7aeb37d2-ef87-4580-8b85-3d3d6a98bcf8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:09 GMT", + "Date": "Mon, 02 Nov 2020 19:02:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "80" + "x-envoy-upstream-service-time": "89" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json index 69edd112ecb5e..e3df759b8a7dd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-170514c26634c944808f1a3d43f50b3c-92a8351780570c4e-00", + "traceparent": "00-bb93476ee62eae4d87b58e1842507af6-982b6d611cfd9645-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "422b34e8-2a7a-4c13-87fc-7a1fafee106d", + "apim-request-id": "8438d418-ab75-455b-9c8f-abbe44a610b0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:12 GMT", + "Date": "Mon, 02 Nov 2020 19:02:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "85" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json index e5a9e428b95f6..9404bc6db555b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b91611d6f2ddc6498fe235cc854148fc-5147697a7c8e174d-00", + "traceparent": "00-6e86b2d07b50a3438502490ce957674f-04268806324cc248-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a19ce3f2-898b-40bf-b605-76c16891ed4d", + "apim-request-id": "e97f2a13-0160-49ce-a091-a32651c93936", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:09 GMT", + "Date": "Mon, 02 Nov 2020 19:02:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "88" + "x-envoy-upstream-service-time": "83" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json index 7c99bb8f68bf0..5954a48f9867c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-776a09fbe7132f46940fbdbf2fc2c9cd-7596b803b9636a44-00", + "traceparent": "00-6090f0f786d0334493fe32aa1279d142-fb5a04c252372441-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,10 +35,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "330b31b7-3359-4ab2-8ec3-bf7d3b81befa", + "apim-request-id": "aa76612c-54b5-4309-80ca-320e7bdbdaac", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:12 GMT", + "Date": "Mon, 02 Nov 2020 19:02:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json index eb2cda56c1dea..4f54a417cfacd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b4113501bc06084f88d9533719896d12-16fddc6e64e7744b-00", + "traceparent": "00-aa0a53dfe2afac46961f7e394c7d7496-3d033ef9f618db45-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "99907a2b-5691-4687-be69-8de407b5a51d", + "apim-request-id": "c494000c-a66b-48f2-8ad5-b83e9f97344b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:10 GMT", + "Date": "Mon, 02 Nov 2020 19:02:25 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": "86" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json index ce56a347b3c35..e382719edfa1b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b19afa437c3c0f41957031abf981f409-254acb524c87834f-00", + "traceparent": "00-a27f51ea056daf498e8ea66f4135ee48-b8e33040f0287e43-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4a1a3583-950d-4b96-ae9a-978f8cb478d8", + "apim-request-id": "47439fe6-8596-4386-96c2-248c6ec442a2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:12 GMT", + "Date": "Mon, 02 Nov 2020 19:02:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "85" + "x-envoy-upstream-service-time": "83" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json index 8c13eb648be78..442baba39e1df 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3595d40a0c8aef449929fc32c86a5d9d-3410caa8026abb46-00", + "traceparent": "00-74aaedf9e96e8d42b208103ab734e7be-94a7adc8ab020b46-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "10ac04bc-2dda-42b9-9f84-3c731985c173", + "apim-request-id": "76659f3b-e906-4c38-9ade-a9b094c95a32", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:10 GMT", + "Date": "Mon, 02 Nov 2020 19:02:25 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": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json index 71d67a30226e9..a6c8267c78b70 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f15ea436225b184db804ce7d12bbe3ea-2e2f8d32027cb046-00", + "traceparent": "00-231ca39f80a13940aff017f3f20a45b7-be3ad55a3ce0974a-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f4e82926-2e83-446a-a5a7-de8b075ce95b", + "apim-request-id": "a7d7ae9e-8e30-48a8-918e-1cf7e573b534", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:12 GMT", + "Date": "Mon, 02 Nov 2020 19:02:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "82" + "x-envoy-upstream-service-time": "89" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json index c47dd674a6333..f913861d24e9e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-32aa562aa85830429f97d79f83d3963a-b5eacee2f001ad4b-00", + "traceparent": "00-e4ac46a7f85c73408ce3800b21008faa-0215589e4417944d-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0c4be638-c749-48b3-86fd-dfe58bb2e1d2", + "apim-request-id": "4e8fcc34-a65a-411e-8c8b-9299bbe100e0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:10 GMT", + "Date": "Mon, 02 Nov 2020 19:02:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "88" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json index 7bc08540d6686..5d6ad4e5136a9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bb0aa58d7ed3f94fb8fb03ec81de8565-746a2bfafb22a44d-00", + "traceparent": "00-57ac9bbce00bfb4f828d1ea83b14cd9d-eafa09df09c2e04b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fe08647b-03fa-457f-ae1f-ff61b2a7c644", + "apim-request-id": "a6dc131e-a80b-4438-8b1d-952f7cd6aad6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:12 GMT", + "Date": "Mon, 02 Nov 2020 19:02:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-envoy-upstream-service-time": "85" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json index ef2bf57172b63..a9ad39f830014 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8bb2707b77217d41b387c942cd1b8e8d-cf172274a4f00c43-00", + "traceparent": "00-59b977d6c0b4f642b33d9c41c17c61ee-c5fbbdc65fd2824f-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "99ea53c7-8853-4ea8-a860-1e29e85f870e", + "apim-request-id": "b61e3634-7b31-4a43-a2aa-6ba9aeba204b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:10 GMT", + "Date": "Mon, 02 Nov 2020 19:02:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "79" + "x-envoy-upstream-service-time": "81" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json index 012286b2574fd..2cbead8b0feb0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-65424c4feaac6f41910845f3cdd40b05-dd223ffa5300ae43-00", + "traceparent": "00-6df16cfa9bea374ab7e40d1d4b3cedee-3ded9e8f98740e4f-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8d5e7c5f-5301-471e-8cc3-54d77757b95d", + "apim-request-id": "1ce667fd-aa46-418a-9958-571d60fba251", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:12 GMT", + "Date": "Mon, 02 Nov 2020 19:02:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "116" + "x-envoy-upstream-service-time": "83" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json index 14a94271de858..a67ff074af56c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4cf3e327998e024cbde327e149f2c326-3d4fc72aa656c54f-00", + "traceparent": "00-4910d5bce6ae0e4b9cf031fb63956248-0667f026ee7be34d-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1693515d-b214-4728-b989-0615dc108ac4", + "apim-request-id": "e98f08de-b74c-41d4-bad7-a7fd008ba424", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:10 GMT", + "Date": "Mon, 02 Nov 2020 19:02:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "91" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json index fb0d373813aac..5ded01d30f05e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e89fd9cd159ecc4f9fa65366840b1fcf-4b770a684ef09f48-00", + "traceparent": "00-675c67b0d247d149aa8195e45fb4833b-e98dcaa24d26bb40-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cb170aff-f830-43b9-900b-bf5a1356fbf0", + "apim-request-id": "7f12d713-78db-4cff-8f2a-2049d6b7a6af", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:12 GMT", + "Date": "Mon, 02 Nov 2020 19:02:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "86" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json index 572ae46c13300..f954d97d55d8e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0af819f5f21a0e4b89290f6d7817885d-4a90ce008976e14a-00", + "traceparent": "00-5b02b814af333341bf70566e5e6e47e7-bfa4f4f80ea56141-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "39572acc-93e8-4af5-8941-da8d2df1b1e7", + "apim-request-id": "407d72af-baa7-4d46-8823-8ea6f59beacb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:10 GMT", + "Date": "Mon, 02 Nov 2020 19:02:26 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": "88" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json index 6bc7728a3d23a..3c20d8aedc5cf 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a58257fea0bf3044a8f33a5d5d8a7180-7abedb14a0ba9b42-00", + "traceparent": "00-16f63f5a2108c745bcf427403753170a-8bf11c06c4c28140-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d98b64a0-1379-4eed-ad30-985c0c3eb483", + "apim-request-id": "c83a8972-a0c3-44c0-95c3-54a60f1433d1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:12 GMT", + "Date": "Mon, 02 Nov 2020 19:02:28 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": "89" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json index 123c40e2ee101..758e2ee8fdb13 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1ed479a6bf029f47b38ea4ee03f57c04-52d895e577d6aa4f-00", + "traceparent": "00-0866c19c531c27428b1bc93801936359-17a59f33d542634b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "54eb8b66-f1db-41a2-8e67-c27ea6d12c81", + "apim-request-id": "a9b60274-0f50-4205-b06d-581623fe4842", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:10 GMT", + "Date": "Mon, 02 Nov 2020 19:02:26 GMT", "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": "106" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json index 54cde0e8ca739..b41232b4db1a3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-93f3d9c876214d4f811f9aa846ce0771-983a77e692798340-00", + "traceparent": "00-4e6089bed17fcf47a470d53d20cd2d27-dae40297c9369d49-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e9e0255c-9264-4cd3-b56c-44c6180fcb3a", + "apim-request-id": "693fddad-d508-46b6-bc9a-f7f7742a58b3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:12 GMT", + "Date": "Mon, 02 Nov 2020 19:02:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "93" + "x-envoy-upstream-service-time": "97" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json index 23f2c10e7bb96..46026702ec438 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "207", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-22aad64aa03eef42b4402002cc605226-36648c74d373e94f-00", + "traceparent": "00-dbfc18ba75782044985cf5bf882b9908-45ed26bbf341da42-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "09f71c03-e5d1-46ff-9c00-1a08958417d2", + "apim-request-id": "3880bf28-66d6-465d-b67d-bd29c3b8fe69", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:10 GMT", + "Date": "Mon, 02 Nov 2020 19:02:26 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": "83" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json index 373e27aa00547..9ef0397808a13 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "207", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-29e26f3d0f2e164bb281a423710ef7bf-b2ea8b0561c7a248-00", + "traceparent": "00-88bfe332479cd248ae922cb244bf59e0-3f501c021bf0684d-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "849ef9ec-8e02-44ba-9f46-732d41366a15", + "apim-request-id": "7d57b59f-624b-4e35-b64b-6913e1c5f6e2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:12 GMT", + "Date": "Mon, 02 Nov 2020 19:02:28 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": "87" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json index 6532e2549cd59..ace56e83ff7c0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b18928e7fbd70046856308e2bda1b2ed-016ed4dc364b5e40-00", + "traceparent": "00-0cb77aa128898f45bb4f84732ea87f51-3e2538a1e68f5340-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "c7c1cd8d-c9a0-4f49-acb1-3d23d2631767", + "apim-request-id": "6800cc7d-b87f-4836-a532-253be948a72f", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 18:41:10 GMT", + "Date": "Mon, 02 Nov 2020 19:02:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json index 34777c0b395dd..36a570bb19738 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dc1eb46f64c53f449064dcd8457da45a-7eead007d09ed54d-00", + "traceparent": "00-07b327e9e00eb740960604077c3427e2-666358091d99ac44-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "3702c925-f0df-4225-a177-5f6406c85116", + "apim-request-id": "3be0b352-780d-4df7-9c04-ac698d72f72c", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 18:41:12 GMT", + "Date": "Mon, 02 Nov 2020 19:02:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json index 7c5bcb779d1b4..5c27db0f726b2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2a44e1f00dd45446b7c3ba650a22ea7b-275372b753af024d-00", + "traceparent": "00-a72ed0dbf2639740bc9659ac2ef53bc8-cc1ec9681f6ed54b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ea989483-18ae-4633-9179-a3667877ab82", + "apim-request-id": "6de92b62-f917-4e42-8d52-95e97906413b", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 18:41:10 GMT", + "Date": "Mon, 02 Nov 2020 19:02:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json index 326ab8af05883..a4cd1e22af65f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d400b11fb3209c47adfd54c4a9c51c22-91a6bf8eb9a0c741-00", + "traceparent": "00-6c6c7a6ab9f39343b16a352a45b329c4-61fbcdd9f843a743-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4b689172-7819-4dc3-9dba-026930a89673", + "apim-request-id": "a0ee0a52-af95-442f-9f0b-e8543f20de57", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 18:41:13 GMT", + "Date": "Mon, 02 Nov 2020 19:02:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "1" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json index e850566e1866e..74fe514abf43d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1e4f40d6fc4f30438cdb6ac11dcd76a1-5e9d517035261947-00", + "traceparent": "00-41e6cd625340a248a43cbaaf11002177-e0a03cb7d344df4d-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "676fc30f-38d1-46c9-ae17-fee69adde9b8", + "apim-request-id": "c6b8c9b7-4bbc-4ea6-9305-169aad575812", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:10 GMT", + "Date": "Mon, 02 Nov 2020 19:02:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "80" + "x-envoy-upstream-service-time": "88" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json index 57af9ab63c846..1928d197d4df3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a0884ce8a1e89a42901b7fa1dc84bdda-33527e5adcc2e04e-00", + "traceparent": "00-25c1f28b85be0942aafff34555b0ad23-009330cbf6bf624e-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "31647638-3c63-42fe-91be-0940f87098f9", + "apim-request-id": "671b0b4a-c50d-47af-b58a-5a9ab0a2d94c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:13 GMT", + "Date": "Mon, 02 Nov 2020 19:02:28 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": "83" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json index d3d629dae49ee..70e10fbebf1f0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6f035b5a2bbee64cac3f406e14eb1487-4b5f591ba990f94c-00", + "traceparent": "00-9addc7f606a16f49ae07c68d59479259-e7f47edc49a16942-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cb8f6225-352d-4b06-b19d-894e9462d062", + "apim-request-id": "3021b4db-b2a6-45ed-b4b4-2e4d5c6661ab", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:11 GMT", + "Date": "Mon, 02 Nov 2020 19:02:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "100" + "x-envoy-upstream-service-time": "103" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json index 57f94abe25429..3bcb87bbac6db 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0a0ec64bd2200246869cc0d93edc5a4a-73a1a234376ac941-00", + "traceparent": "00-1a744aa1743c014fa60b21d5dddf5a82-ba11a274c46b3c43-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "48f90acb-7bae-45b5-9552-1bfec553b07f", + "apim-request-id": "d4531ae3-11b0-49da-a1f8-5a7dc8272459", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:13 GMT", + "Date": "Mon, 02 Nov 2020 19:02:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "100" + "x-envoy-upstream-service-time": "109" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json index 91e7bd20cfbfe..47f688d7aab5c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-69b2a6aca8a63e44812ea414ab02d900-7b277a02842b6e4c-00", + "traceparent": "00-6777c3a8904a404084a6b685e30bb3f0-516233978a2bf14a-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a3af7a6a-931b-497a-8c1d-8c0ace6f850b", + "apim-request-id": "dfa93902-f060-4d7f-ab73-79728b8597eb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:11 GMT", + "Date": "Mon, 02 Nov 2020 19:02:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "85" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json index 676b0209b5522..5cc67875a1640 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dcad1aa375b26841b0c459e0624103c4-102934c26ba59a43-00", + "traceparent": "00-108b07d80ce4d443a5a9a17328abdf22-176d21047d332b4c-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "69bb78ed-1135-408a-b055-c63230a23542", + "apim-request-id": "9dae5953-9b2f-4109-a88f-f46cda1c2937", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:13 GMT", + "Date": "Mon, 02 Nov 2020 19:02:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "80" + "x-envoy-upstream-service-time": "106" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json index 00acdc8bf2024..ffbaa7426dd64 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e9d1df9651df174894226bd680b512a6-4dd9d9c01c8cdd47-00", + "traceparent": "00-baa0b7993a2b6e4ca5ed75a3bf200277-fab44efbf8ab664e-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "62361d42-fd5e-4f52-a764-d717067d314a", + "apim-request-id": "946c0a8a-f624-4a32-938f-75b92db8910a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:11 GMT", + "Date": "Mon, 02 Nov 2020 19:02:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "94" + "x-envoy-upstream-service-time": "77" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json index a5b14bdbc4f39..ea3ebea884b90 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-516fd0e6dcc3514ab2f379fb6991e8e0-7f121b14493bfc46-00", + "traceparent": "00-44653d205225124e83343ac7f10ab67f-84a06d5c3517284a-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "61cf0b75-48f7-4ad0-a3d5-4ed7fb932888", + "apim-request-id": "bcb9b293-30fe-4865-8c11-31bba1b971f8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:13 GMT", + "Date": "Mon, 02 Nov 2020 19:02:28 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": "82" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json index 75acfba39fbc6..138b4cc39b8a4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-302208dc5beef540b644d023ddf09839-d0cd0e6ee71d3e42-00", + "traceparent": "00-f1592149eb83964ba505f4fce7ab29de-1d5cd93ab15ab04b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "52517d31-571e-4e06-86de-f6bf339a79e9", + "apim-request-id": "d0847dc9-18e3-45aa-9f0b-c10aa819c6a8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:11 GMT", + "Date": "Mon, 02 Nov 2020 19:02:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "97" + "x-envoy-upstream-service-time": "93" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json index 7f0c07cf0ff84..418b1c916b51b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d28b93b180678c42a7336e3d2024bdc9-e9f8bab0ae731c45-00", + "traceparent": "00-f94b4ff25cd59940b21145a3c1a65087-cb30362087773045-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1f418ae1-945a-4237-8c3a-7c362880d290", + "apim-request-id": "641e306c-bfad-4675-a9cd-e723209602e1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:13 GMT", + "Date": "Mon, 02 Nov 2020 19:02:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "98" + "x-envoy-upstream-service-time": "94" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json index 898b86917ef48..d40ada054cfd4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6b76207eb0a6724f9fc21070791f38ee-217c431371f02a41-00", + "traceparent": "00-19358be35880444293fda520e01757eb-1c450af3d444984e-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c89e59cc-bd6f-4fef-93d6-b8c1aac4605e", + "apim-request-id": "28a0d143-eaab-4d08-932e-97abc2ad837b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:11 GMT", + "Date": "Mon, 02 Nov 2020 19:02:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "96" + "x-envoy-upstream-service-time": "87" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json index ea83e32c31369..90cb49564b63c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cc314a6a6521ff4c9e0c24a2b964ed00-066afdf2f3eafd47-00", + "traceparent": "00-4f9f8a06d612824e8d4729db7f52548b-2d5faf8f759a5f47-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8c77053d-95bf-4412-8b77-9bd707cc9b21", + "apim-request-id": "1d3ab207-fccb-49f1-9b93-46030e038388", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:13 GMT", + "Date": "Mon, 02 Nov 2020 19:02:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "121" + "x-envoy-upstream-service-time": "87" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json index 07959fa60522f..c1cd125596123 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "127", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f90a9a1100259f47b16c2fb5b1237294-5c9dc77b821eea4f-00", + "traceparent": "00-d3f080ca87796e4d8c208d1578a94a94-b3c6add92835b143-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c027fc25-1a30-48e7-9de0-157274b1fcc9", + "apim-request-id": "7ad27593-5317-4758-984e-ab5db900b585", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:11 GMT", + "Date": "Mon, 02 Nov 2020 19:02:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "90" + "x-envoy-upstream-service-time": "96" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json index cd61d70fa5494..b5b9a58c39613 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "127", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c3f49b941e211a459abe52b8ef251134-e630683cf0bc3b44-00", + "traceparent": "00-6e67b51b1e4af2459a5dd8e512efb659-154e81ff3e619c48-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1839d9c4-1c55-4dfe-bbba-10a687bed781", + "apim-request-id": "c29f8a4b-500a-4469-b58f-a1f25943df96", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:13 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "86" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json index a6aca00d1e141..7a52d9afaf90e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dafe587e6adf2b43b5390e4dd42136fb-c20dd568cac57c43-00", + "traceparent": "00-caa638476e296144b915a5c444a529e7-7d3d5fb8ea0ef14e-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b8f0f8d6-0622-4d9a-96db-ebf2b6b7442e", + "apim-request-id": "4ea9b03e-6fc1-4e3c-a5c2-a98a7d7cf207", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:11 GMT", + "Date": "Mon, 02 Nov 2020 19:02:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-envoy-upstream-service-time": "83" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json index efda5590f7211..bedd49d9b08ce 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-114a9638a91d6b459c1abeaa1f52f1c5-9ff3d2f8f7b20341-00", + "traceparent": "00-3721d8177d2b7f4191415dc7ad0eda15-02a71ca41a69b14c-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "69329ce0-d240-4bbe-9887-00b966212d91", + "apim-request-id": "2527bb82-0635-4dce-88b2-874dd89dd403", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:13 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "93" + "x-envoy-upstream-service-time": "80" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json index f4721b0048d4b..3156a2eb3e997 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "80", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-10bc4bf465ec594da0d7be6b82208ffe-18baed686d10ed4e-00", + "traceparent": "00-4ff2fa518cfa754c89078e3f1bd77239-a7b5992b1c360c4c-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9e6c28ad-85c6-49ec-b011-12e2d090c3c4", + "apim-request-id": "ed09b4c7-bc41-42e6-bf8c-6418f57e5d4e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:11 GMT", + "Date": "Mon, 02 Nov 2020 19:02:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "88" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json index a2f316ea6fa62..85a98a34aa815 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "80", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e2f5fb76700abd43a772efd9cb5a9e24-93214ae2aeda1e4c-00", + "traceparent": "00-9dfdcdd96e7de94496b968ee7c80f2f9-b0adf4c1ecb75545-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d843caf9-e78b-4e01-9fd9-239b60aeccb4", + "apim-request-id": "d0bb1b23-f66c-40b7-95ee-3c925d8b2fe3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:14 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-envoy-upstream-service-time": "83" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json index 3d66bcea89df6..2d757d6075c86 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8aa12dbde3879541b35997792c8bef0f-b98ceaf5b1b6c540-00", + "traceparent": "00-b6e2e4d6cca4194aae7267a17518810c-8562da08cba69f4b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "beae6660-a1d6-4954-aab6-6ccc24072649", + "apim-request-id": "0b415dbe-b5ee-47e4-a132-e43a67e86a61", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Mon, 02 Nov 2020 18:41:14 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "824" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json index fddaefaa96c56..b8acd0bd9c9b0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-326d9c4bc1e8214ca37d4c7294585258-78d90203124f2244-00", + "traceparent": "00-93ab2c3a4fa17a4d9597030d3e149336-da394f061738db41-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "be6c00c6-0e5d-4a49-a28b-2eb28c6db707", + "apim-request-id": "de731d28-4c0c-4c38-b5d7-09d67f387144", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Mon, 02 Nov 2020 18:41:15 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json index 96c388ac715db..0baf8237a9e00 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ade3db6a83a55a4a9d4d0a3e2d02e2f3-7d94dd3a2accb445-00", + "traceparent": "00-7f24618b6c0d464b96ee329db85f09c8-afb01bd9bd3a9942-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "426c9877-40db-4422-a86c-09aae8344613", + "apim-request-id": "de5bd9df-912b-4ca0-8d09-c4326c4436dd", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Mon, 02 Nov 2020 18:41:14 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json index 9dbcce52117e5..6d373bfdb470e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ee22e0bddd7d1d48af3682240911ae3a-1b447d978c5b4144-00", + "traceparent": "00-b50e506a20eff341a5c81f7f1ffba02c-722457b5a0aa6143-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "35bddd65-8a81-43d5-b729-7e0f799f3e9b", + "apim-request-id": "e3eba3be-9808-47ce-80f1-a6c4b90cb35a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Mon, 02 Nov 2020 18:41:15 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json index d730e2427309e..01a31566684cb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cb2225945939ef499cb215deecee5b0e-0fd84b2e3177a643-00", + "traceparent": "00-f6e9837b0ad30d4da7482ea5ca6799b3-6745edc5d4686847-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -45,14 +45,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dcc45577-7c59-4b9b-bd8b-10c3d9a9037f", + "apim-request-id": "69efd14b-ee4c-4085-a308-1cab9ea42128", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Mon, 02 Nov 2020 18:41:14 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 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": "6" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json index 49f493b25d04d..98838d3f1e9ce 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8f6a01d8d1c857408c0b3b810249c9be-3bf0074c2f318147-00", + "traceparent": "00-f5ac0147fc05e542a64edd5f2bae24f7-65e12416e717c44f-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -45,10 +45,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c7f6f071-340b-40a0-be1f-80f1856305d1", + "apim-request-id": "0365bbd5-9b56-4ea7-8543-f3f2da62f12e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Mon, 02 Nov 2020 18:41:15 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json index a406136c068f2..263bb2ae02544 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "156", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ffec4eeea789c0499a5dac4bf9c4d2c1-d313baf540b79042-00", + "traceparent": "00-f0a91908c17b954c93d6577c946804d2-74e3fbd3acf08641-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "37263772-0180-4c40-a80b-996d3358b675", + "apim-request-id": "5d77ee48-9b8e-4742-8be4-89e4fc726482", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:15 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "308" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json index 622173071b2ef..f14bd51b6f641 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "156", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6d8659b8127714458c58130cde76c9f0-cf751ac903680f46-00", + "traceparent": "00-3ffa905307195e4182a92846246732da-313ff75eb4b39c49-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8c4db4b8-0012-4923-a5af-a54635fb8c62", + "apim-request-id": "d3bd22bf-fa99-4c85-8797-ca6d0aa1ba7a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:15 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json index 558ac82b09bc3..e3b96fa96332d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "67", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-434a587b6c3b134bb69390012aeecedb-c70ec9b16abbed4f-00", + "traceparent": "00-25bf2237fd636945a594c96600b3d189-8a82f1d282e45740-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "81cd154f-9d4a-4480-b88e-92204907722a", + "apim-request-id": "96d3b194-cc8e-42a2-bb12-433f16811845", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 18:41:15 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json index 9719e7aea93c0..ce1ae958e9080 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "67", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5bb2fdafe081b343805678ddd5a1d1d5-b9b96711dcee1a49-00", + "traceparent": "00-f7c842cf7e614a40b1a885320f8dbb75-07b37c141cbb294b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "0aa8bcab-6d2e-4306-b75c-820952c10bf6", + "apim-request-id": "bb189336-01ce-479b-99a9-0387da783a63", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 18:41:15 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json index f88d42f23e8f6..ff33cbbd29df5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "57", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-044350f76042ba4e9cead95cd8603c0e-27d535a0d410254d-00", + "traceparent": "00-b0bb6cd43ca8d340a30d802af67de439-857f63ecf9b16547-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e2391ffc-3fd2-40d2-bfca-7cfe5e7429c0", + "apim-request-id": "081bc319-a343-43d2-a73f-0040f701278b", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 18:41:15 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json index 1a6a25f43d309..9a8e0247d9448 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "57", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1eb64f918c6d0c48bddecd3f01203a31-2f5c605d0b550643-00", + "traceparent": "00-a5e5accdaaffb04b91faad87d0aab6c4-eeb9a5a793e1584c-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "57a4ab02-a04e-4598-91f7-ff946b382005", + "apim-request-id": "f39ffdac-9ece-47b4-ad93-8d1b56f6adf0", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 18:41:15 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json index 9743e9542f31d..330fdeceea8cc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9ae890928574db4ab485f756253312b4-6d23f1f3d1d91742-00", + "traceparent": "00-679ab2f760bf4e4d943f2be27cb00454-fdd4ae9991219841-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -45,10 +45,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fde1dd41-6169-4873-b4cc-6560751419a2", + "apim-request-id": "3a4dde20-5521-4807-9264-a46cd0fb2712", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Mon, 02 Nov 2020 18:41:15 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json index 24081f21eebe9..5d87cf537d041 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a4c0467134987f4bafabc26effba52ed-94355610dd6b0749-00", + "traceparent": "00-2980bd7e159caf47b2ae57616b6c435e-b5f4b054ffaf4e47-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -45,14 +45,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "efc1e344-0389-4d8d-99bb-8f30f866ee3b", + "apim-request-id": "31dcec30-2b56-40b1-9a9e-3c8e1c3c34b4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Mon, 02 Nov 2020 18:41:15 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 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": "6" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json index 91f816d65da85..3966a0a71a23c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "82", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8d90238c6efa8d498142e967b60de6b4-ccfead37fa82ab4c-00", + "traceparent": "00-ac71a282628fdb4a824bca09a38a719d-363d9ee4c3d4fe4c-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5e756e7f-91cf-4174-81cf-4538d72a3015", + "apim-request-id": "4073f142-afbd-420d-a960-882d05748eed", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:15 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json index b3cb60799ed4d..6e816786bab71 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "82", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-266a0f09bb5f184696752bed0657922e-eac0d959d9b96f42-00", + "traceparent": "00-118f2ebd294830468c1911f9c89f1256-f92c56b4f0a4074d-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fe0f8d26-ae09-4075-a6fc-c34b37e85f55", + "apim-request-id": "01b7f012-dbbc-47d7-8faf-fc0a212c2714", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:15 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json index 69b2e1daff449..9f8628087f8c1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "95", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5d575ef7ccd326468cf36719b2a87106-4a15af4346d65e4f-00", + "traceparent": "00-d44c20309e4f1443944bc019b87f9afa-d3bd090adbb3b448-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "59463400-c087-423c-b0c1-f986ff95dfda", + "apim-request-id": "dd05baf9-fb35-4900-b289-f3e032cada3f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:15 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 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": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json index 5dcae9799f8d1..48cd1766fdda3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "95", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-85f38a07db863e49a1eb710a5791109a-41343e27425fa245-00", + "traceparent": "00-9e0de86d69532c42ad7e6b4f843551d0-068137498781c540-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9b44b709-54c1-499a-b539-d5f864e48366", + "apim-request-id": "e23fbeff-4659-4923-a992-b73363deab6f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:15 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json index e0e818c5366cb..887b06e59c140 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "101", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-889c9b4a8b86f34aa1ac167a3b993d16-cc816fc5cd977d48-00", + "traceparent": "00-a20b9b8052d83a48872f6a25d2f98fdd-29c96062b035674c-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eef79725-f058-4d5e-b2b0-353d2285c818", + "apim-request-id": "66093d1f-dc95-42ba-81fe-75726c67f01b", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 18:41:15 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json index ae57086ac9cbb..ab79c2c95bb3b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "101", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6b9929ec0b9d774c9264f2428449fa0a-62cc45666c3cb649-00", + "traceparent": "00-704d3782a2b74b418507c7b959928955-9bbf416388026742-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "126e11ff-b5f1-4f2b-ae66-aaf8e6bee879", + "apim-request-id": "6f9a0d03-64ea-4109-bb54-b7971f72cd8f", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 18:41:15 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 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": "1" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json index 2a39a2688d546..8beb1437ae9c1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-75199db9a85be74b989bc98a3da63fb0-5be7980b5bec3d45-00", + "traceparent": "00-b609d71bdbec4d4b96b40c376cc79ec8-d795438c0ef8624b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e53678fb-b7a0-4d66-8a8e-064df6c80ed2", + "apim-request-id": "e0f8f166-8f71-4ead-b212-fadbfc2321b3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:15 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json index f96f978c762ae..d7a5e2b4fc03e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e07492fdbf7b2341ad942ac419687ba4-b84aa89a3dcd7c43-00", + "traceparent": "00-5cba2a64ce81ca4f88b9a3f4bbad751e-3c796b375ee4c74a-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8531bd58-9e78-462a-8cb5-d54093498c1d", + "apim-request-id": "5bd61590-e1d5-491b-90d3-c7d051a30641", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:15 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json index 576f0a57ec3f4..cdaefa2c93262 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-352d9bdc58f14a41875d5ca58c058e7e-ea33c5c215a18e49-00", + "traceparent": "00-d82548c0616d7644b7fd1bbf688deb10-60b3120f55e2f94c-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7feab89a-bc57-464d-92ce-814017b7823b", + "apim-request-id": "61dce5b5-286f-4bb7-93fb-b9dd1887c373", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:15 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 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": "5" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json index c1b47b688350a..74c35e1ace7a6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/languages", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-74d5d45d6a31684f99953c0249d575d9-3633db345080a640-00", + "traceparent": "00-cdbc6792187e3549a1834864c6babe94-8516bb00eed3b142-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5dec555c-e449-4a76-bde3-614b18524e6b", + "apim-request-id": "6792a381-ccb4-4f48-9f77-2446e5d2b45b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:15 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 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": "6" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json index 6362bb655ec4d..e94659f3e2067 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-04d731565ffb674eb21232f9d031995e-1cc65b133c973443-00", + "traceparent": "00-15cf9a4befa49847903f88c19fcbf00c-890336c0753b0349-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fbcda523-1704-4186-bd71-4b5e806661fe", + "apim-request-id": "0ec384f5-7ec8-4b16-a034-3ffb986ff9a4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:17 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1124" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json index 1a5578c35794d..3dd152334c0a2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4880968659cce3408cde85958191ec47-45dfc4e61713554a-00", + "traceparent": "00-467a2ee499295b469916ecb4d40ef2b9-cae0696bfc11d14c-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ed7a9e41-e91d-4ad1-aefd-6f6666a6027e", + "apim-request-id": "5e3164d9-b5cc-4edd-9909-ee3787e8a6b0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:17 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 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": "9" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json index a9d3de056d532..492d66a5dd803 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-175cc7d6b89a4a438e7ae16728837244-a6cbae3effeb7641-00", + "traceparent": "00-57a480d0306c7c45b6ac7a9485647b53-0fab15b59c80e041-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "180f741d-2047-4d41-9367-99e0d111c971", + "apim-request-id": "49215c23-8e96-408a-a0b5-90aea1285517", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:17 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json index 96cfaaf8050eb..eba7ba8c1fd2d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-52d3d3c937e4c74dba3e9168e4c95a28-3acae364be611d4e-00", + "traceparent": "00-a055f0a21dea9b4f9baf08b7727fbf76-26e73bd9a7d66244-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9b52c259-ec29-4742-807a-6682b8a40fa1", + "apim-request-id": "f6085b7d-359c-472c-b32e-8d0ed3fa0576", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:17 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json index e30ffa41f63da..e507bb1893cf6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fd94e837b59dcd4b97ba31b67dc6ad30-d81b1cd6eae06e47-00", + "traceparent": "00-5d42c2cb10928a47a2a00fda48c4ce51-a982898eba4eed4e-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "65a83bf5-b55e-42a3-935d-eb28222fef0e", + "apim-request-id": "13a06062-387c-4598-bfe7-032ebbea38d2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:17 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json index 62e736bb2f36c..482ebec59d67c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e08aafa9ac948e4d83a2c6beffcee505-1d362a7fdf1ff340-00", + "traceparent": "00-9a22e6a9e8e3804685a1701a41c4aa22-055697c33117a448-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8fc42a59-5e23-4fb9-9e7c-768e70e58cbf", + "apim-request-id": "7357d9f5-3ce1-46e7-9f19-d88e37181042", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:17 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 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": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json index 88175711a0b63..e17f32be260bb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3f6db2edeee8944880e779ce8bf7b106-6c1890faa9b16c46-00", + "traceparent": "00-dad81f9df6d49e49b049a9dbd699f9fc-fe37c51a17ae4948-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1aab243b-05d1-4954-a165-92611c151a15", + "apim-request-id": "1fa620f1-5b9e-4f26-bb8c-ab418e3ad085", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:17 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 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": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json index af2cfca310c77..61850dc1598c0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5ee6a50b8b0ea4419217e6499e421e43-87056b73c1883041-00", + "traceparent": "00-669e2438a3070948a7d4e3a2dff20d40-32921b37f991bd40-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "21bb7eaf-0605-4b90-abab-e9216a8172a7", + "apim-request-id": "1ad562c9-5680-42c1-b918-dd4a5d373976", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:17 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 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": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json index 41d65f81b6a5b..ca67fed847859 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-97c94193be2b3642be11ea3fa31f8a06-38734b83a3f48b46-00", + "traceparent": "00-d712ea26ace87c4f95ad7197434c883d-1b5f5b7bd2d13f48-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "5ab28cbd-9519-4ec9-b1af-efb66d06333c", + "apim-request-id": "feb36ac8-0d6d-4a25-a3ee-285f32fc140b", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 18:41:17 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json index 5ef203a8449c8..c2625ad498db5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-117f4c4904a17c4bb9b69e19df8453a2-279e656324775949-00", + "traceparent": "00-bb8ace294d710b4cb0db6b62dfc51c45-d50f6c993391bb45-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "8629e1b8-0110-4cb5-acf9-9b1c28ea1cca", + "apim-request-id": "266def5c-8b88-4027-bc43-947ee0696a20", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 18:41:17 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json index 0eff78af8ea10..dab6a0701c52e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7372d9d1c38e874f9e372909f3b875d1-cad1d282c8a0d948-00", + "traceparent": "00-72358065d9ca0345a47344dd54bcf393-6b304b5faceb094e-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dd0336ff-1fbd-4987-b885-7ccf5fc2e58e", + "apim-request-id": "09485ec7-e96a-47de-baa2-c8eb13423ea5", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 18:41:17 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "1" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json index 758b405cd29f7..f6628b80ede18 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7e57a2206c81814fbe0811264d8b235f-a9db2c38c655a143-00", + "traceparent": "00-d3f122acbb54344fa5c411da8bdfb149-0e624aa7d0dfe04a-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "18b11713-e092-43a8-b8b1-5ebacdb0b21c", + "apim-request-id": "34279a98-51b7-4b8f-a635-60f77af8048b", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 18:41:17 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json index d0327f4d27263..ab1ce1bb32afc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e0bccac827f7114bb090a085ac6f1858-a09737d35f5ab74b-00", + "traceparent": "00-1ff81904e50fb14cb685c35b0f8b7530-3a00cc8a089c1948-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4b4e5a8a-0ce3-474c-8ac6-268d88da0e11", + "apim-request-id": "90d693a9-da5a-4ce0-986d-57ce48b31bf1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:17 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 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": "8" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json index 6b5aafe2fc650..0abc9920df0c1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4bc71fdceaf3ca4ab7f9227f898606ac-a367cb48c8721e4f-00", + "traceparent": "00-0913c581520cb045a9359df168065ded-60e0ff88f0baee4e-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,10 +35,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3c028bf5-1b43-4e8c-98ef-8af321a20853", + "apim-request-id": "f2a6fe58-fcd0-4e05-b9c2-141207ef10c8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:17 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json index 200b7d7d9fe41..636086513c3ce 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "92", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f1532ec30248554fb9441deaf6f65596-c5eacc7aeaabec49-00", + "traceparent": "00-8e5c8b64994c8643a8bc3bc23ae4f5fa-fa9ddb4fe469ff48-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7b7ed77f-21b5-4ac5-b3cc-6b9bc70fdc24", + "apim-request-id": "397d7de8-1641-4456-af41-54e213fdfabe", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:17 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 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": "9" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json index 80c19de0fefb6..15d20b3fee16f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "92", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-de504aeb4511d94dbd31b0420386e7f6-a5d52dcea7142449-00", + "traceparent": "00-36432828e2b82b4d9fb408636ba12ea2-c9f89cb2df2aab4a-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c8b1d171-502a-40b7-b565-327ffb44a900", + "apim-request-id": "f40c1174-a019-4cee-b559-2c31413a5244", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:17 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 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": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json index 89ac5e1970391..287427cc647eb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "88", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-eef2994b1890aa41a9d41c1d0194e66e-8df89f46fa98c944-00", + "traceparent": "00-c0fc75e7b030cb429fb83a5d4ca5d237-491adc7aae0d054f-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f0aa5f2a-d3c9-41c0-aa0b-3c67d96f4987", + "apim-request-id": "e5e62bce-9141-4c31-aff6-a6cd7fc9cb27", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:17 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 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": "6" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json index 3b619149bc81b..c1bde4c8ecd8c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "88", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-88ab4f8a7c7121459e7d1f59e0524e69-17b80236c1a42f41-00", + "traceparent": "00-ac8db5c5378e664c8d55fcdf64cc0fac-ddb5f052284e1746-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a4c8277a-9a7a-41ab-8df9-17fc0db0246f", + "apim-request-id": "ff91d2c6-8b9c-411b-915d-e10e8a7d4607", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:17 GMT", + "Date": "Mon, 02 Nov 2020 19:02:30 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": "6" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json index fc576354d22fa..35d2a5c51ae53 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "180", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-419839b40748934b94118c059193ac57-6a78114c296d6041-00", + "traceparent": "00-05bde98016e39f4a8555fbccb4c45155-4dd83ceeb74f4840-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9ba9620e-193f-4172-86ce-ca7e16e3d2bf", + "apim-request-id": "01ac5e5d-5542-41bd-abce-c6783c058a3b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:17 GMT", + "Date": "Mon, 02 Nov 2020 19:02:29 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": "8" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json index f40792a2daccc..886139e1cfdc8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "180", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-514435daf2eda34ba4653f59b8a05656-b64a9851ec202b40-00", + "traceparent": "00-d26e9273af55674c8f6bbdba48b6981a-7ec3d0091cd3f649-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c54d30f1-0327-491c-9c3b-705539f12d12", + "apim-request-id": "25887a14-035f-4a85-965c-249f4b981272", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:18 GMT", + "Date": "Mon, 02 Nov 2020 19:02:30 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": "9" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json index 9caaa67559c79..ce4f02c05bdf5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b66c59cf8d85f94692fb3bdb05e206bb-9633e4180ab3924c-00", + "traceparent": "00-bad5a2e2c477c540a57261248ba32196-e9dea9f8d711664c-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "62cd4c41-a87d-4dff-97da-6b6aa0b96e33", + "apim-request-id": "9bd1ddfa-663b-4dcc-9991-fd2898116941", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:18 GMT", + "Date": "Mon, 02 Nov 2020 19:02:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "203" + "x-envoy-upstream-service-time": "138" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json index 83d0b99667dcd..d3f9d9b54a8b0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2d2a09d646b7b84ca718af3cc71c7ef8-540271debd686a48-00", + "traceparent": "00-013963afc25b8348b6b6a335c0a3ac11-f972ab65d6a20542-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "902c0b1a-ccce-4f05-b629-01dd15b5a92d", + "apim-request-id": "89d3d9c8-a265-450c-9abf-256f418119b4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:19 GMT", + "Date": "Mon, 02 Nov 2020 19:02:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "184" + "x-envoy-upstream-service-time": "105" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json index 7501862a5248e..427af666cbd95 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dd479d6f1eb95940ac99ab0a6f961980-cb7c17feb4b9424b-00", + "traceparent": "00-7d61aafc579a354ba49df72a2700c185-5ab96678408dfe49-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "17152bbb-4c8f-43c9-a52e-3cbbba252db1", + "apim-request-id": "b9b6da13-5ee9-497c-a967-4bd514ab6f6c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:18 GMT", + "Date": "Mon, 02 Nov 2020 19:02:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "227" + "x-envoy-upstream-service-time": "139" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json index c1ee6164e7a09..8e2125fc9b1d1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e307662f1c627f43b0ae7dab445d0565-7d60157034e5ae4e-00", + "traceparent": "00-a123bbbebb4fa042bd108a73882a9a2c-f05d24ddd84a2b46-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dc376065-0b25-4e2a-ba4b-e6aa5d50c785", + "apim-request-id": "896184ce-de62-4d4f-8766-a550e4bf1537", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:19 GMT", + "Date": "Mon, 02 Nov 2020 19:02:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "124" + "x-envoy-upstream-service-time": "115" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json index e26423449f9a1..f84245f2d6589 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0fbf5de569b7754b89bfad82579a7374-cdac9ec7842f5b4d-00", + "traceparent": "00-1e651eefa45c1345b5fa82087966baaa-66b86169d930e141-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1ee8176f-4cfa-4c17-aadd-4047a386b877", + "apim-request-id": "9ea9166d-2072-463f-964d-d30c3ba8747d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:18 GMT", + "Date": "Mon, 02 Nov 2020 19:02:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "201" + "x-envoy-upstream-service-time": "152" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json index 6e1c1196b307d..aebd0c4897b4c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a3f203ab3a492e47aa603ddf060592aa-1de4892bdd1f224f-00", + "traceparent": "00-188d40659e493140a5f8501c0e32e290-75e7d10330015743-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "65c58e21-c0c3-4d14-9c4f-60a209973463", + "apim-request-id": "9dc984d2-6a7e-4ba2-8b26-50881c2ac76d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:19 GMT", + "Date": "Mon, 02 Nov 2020 19:02:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "150" + "x-envoy-upstream-service-time": "151" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json index 7836ac33d5976..43a03b9d57693 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c47d1b0bf0017546b0608f09cbca5059-9974974b17b72146-00", + "traceparent": "00-d8700b78bfa543469f94ccee1ed29d1e-016de0893438d94d-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2258c3a8-9838-467c-a7a6-54b501180b50", + "apim-request-id": "f1286513-23ce-4d9c-a1da-2544b5c86af9", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:18 GMT", + "Date": "Mon, 02 Nov 2020 19:02:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "114" + "x-envoy-upstream-service-time": "141" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json index 127f0bee39abe..6e5c6063ba2cd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6c36e95926af8d49915581cb2d60294a-4dc302b8ba6aa74f-00", + "traceparent": "00-b3e381fec2455a448631fa7a1a937461-0ecc3adc838a3048-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "56ce0fe3-77d9-4ba9-86bf-cbfe259d0d6f", + "apim-request-id": "68210346-35f8-4650-8366-5fb29a413787", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:20 GMT", + "Date": "Mon, 02 Nov 2020 19:02:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "123" + "x-envoy-upstream-service-time": "104" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json index ecf043872e543..6192b95686eeb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "297", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-95c113a17cf2904ebd34946caed18a5e-53644aab01ea4a40-00", + "traceparent": "00-57975f6f0d037843bb8557c829868a70-e351eccdb6439641-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -55,13 +55,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "081c83a4-89ad-4a84-9489-1b9e188344d1", + "apim-request-id": "97b69401-94ad-4ecc-9fe1-2b52e764a80c", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 18:41:18 GMT", + "Date": "Mon, 02 Nov 2020 19:02:30 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": "4" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json index 53b6a9d6218e5..83886126eee76 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "297", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-113e0b8331ef714794e9085994e3608f-d64a3f120da08142-00", + "traceparent": "00-48857221bb8417478e437c5cc5f735ce-ef29df7086999041-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -55,9 +55,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "79c3a897-c18d-4cce-b53e-6f95d2cd2e01", + "apim-request-id": "cc5ba474-fc28-4a6a-b4bc-59c9cfff0ae5", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 18:41:20 GMT", + "Date": "Mon, 02 Nov 2020 19:02:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json index bacc3d397b229..ee6c366edc1fd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8c74d292294c954da906439f5d124a69-de0c2b2cd880214e-00", + "traceparent": "00-c2bcd5914d93164cb7d4dd2567976751-d76fc34f9f9d284e-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "ca1e533b-44ad-4fa6-bd59-25299b3c1005", + "apim-request-id": "52154c2c-89a9-4569-ae66-3950659724e4", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 18:41:18 GMT", + "Date": "Mon, 02 Nov 2020 19:02:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json index 143f8a43aeda0..9dc41f0ee7e9c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bc456d714256f5499b961294eab2de0c-54a237cb6762144d-00", + "traceparent": "00-7b44166a2f7fe642862069c2f2890721-86a227f50e01374a-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "7151f058-0fe7-49f0-8746-a9b7a3f34ef6", + "apim-request-id": "c9c3e36d-31de-48f3-b99c-617c5a25a404", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 18:41:20 GMT", + "Date": "Mon, 02 Nov 2020 19:02:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json index 26c2778b76b7f..3b6a1f3f52005 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ad08700c53b06f42a3def5a35a2026f7-145101aca2948a4f-00", + "traceparent": "00-0a848a1ba71ca2429497b68c18c21d85-a1008281a539a741-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "11759dba-8a7c-4c7e-a759-23a306fee0d8", + "apim-request-id": "1896d08a-b85a-4642-9766-1ecf2a256b3f", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 18:41:18 GMT", + "Date": "Mon, 02 Nov 2020 19:02:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json index 886dddc2bf86e..ed4aeec2c0f61 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-aa7a36af79abba4f980c3324966ef37d-209587339cc3294e-00", + "traceparent": "00-e5182c2992b2654fb48941120436c6e3-55c601bb70844641-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b7b9c2f0-aedb-4f95-a828-b123832279d4", + "apim-request-id": "a457093e-8245-4ee7-af95-5692927f6a34", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 18:41:20 GMT", + "Date": "Mon, 02 Nov 2020 19:02:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json index e8b3361bd8977..bf02a9ecf0550 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e1d1f4a171c61c4280adfd2e71812f82-7245789d4a992443-00", + "traceparent": "00-74bb4536682aa0438dd102797439e58f-abb4f9de1bb0644d-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e6ac1f81-21b3-446a-b575-6a3de000a479", + "apim-request-id": "c7e17997-4e2c-4d9a-a003-b99f90a0267c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:19 GMT", + "Date": "Mon, 02 Nov 2020 19:02:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "156" + "x-envoy-upstream-service-time": "184" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json index f805daee07706..652677ea73c2e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f032808ac3ab7b45b93f83baf78bfabb-37a8ba90921ee541-00", + "traceparent": "00-8e561062c68f0a4289d11b05f53f6e89-fbce64de739b7348-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bf80ea0e-0cc9-42c4-94fd-2413d8ee382a", + "apim-request-id": "df828fe7-42f9-4680-8126-a08b24bfad3e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:20 GMT", + "Date": "Mon, 02 Nov 2020 19:02:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "175" + "x-envoy-upstream-service-time": "151" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json index eaa5889218cb9..5bc85eae00960 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-aea3f2b5ac2a4f4ab68f74e92baf717a-831fae4283224447-00", + "traceparent": "00-d2e5e46e7c274a4a908de699a8923ac9-5686d932a434fc4f-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "30b6b02f-c73e-4771-a400-d30389dc6b61", + "apim-request-id": "d3d8b911-2967-45cc-9c6e-eb5555db6769", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:19 GMT", + "Date": "Mon, 02 Nov 2020 19:02:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "86" + "x-envoy-upstream-service-time": "117" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json index 0d8d4f029ec17..de35e7986556a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dd21c4935cd79945af787528f416ad8b-010c96400bbb6041-00", + "traceparent": "00-70bf7597d2e42d49aaddcbd68861a33b-e6f738737e22114a-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bb7ee981-47f7-4aa3-8367-f6a515747430", + "apim-request-id": "174cf618-429c-401c-9b71-eb25311a4be9", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:20 GMT", + "Date": "Mon, 02 Nov 2020 19:02:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "86" + "x-envoy-upstream-service-time": "96" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json index 19ab191a6a190..3450728a3cd22 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8532bc30dfe3744a92501aa28645b16c-0194f154a9631042-00", + "traceparent": "00-985218199f86be4e8f212e77715a6fa5-7d2a47df5e36aa47-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,10 +30,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fac80020-fdf3-487e-873f-ddd75559c7df", + "apim-request-id": "fb77d164-ecec-4e87-a619-6745e7acfeca", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:19 GMT", + "Date": "Mon, 02 Nov 2020 19:02:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json index f8a4c33601f4c..0d34b95f24981 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-48059f55546e2e4aa33c817fb1c8a11f-36d16e42f96ff94c-00", + "traceparent": "00-a0bb162cbc80904491f37ebde7ed327b-9c45ada2b168134d-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9b56426d-6ef8-4066-afa1-e69ce00ed580", + "apim-request-id": "ac35eb08-412d-4926-af16-a551f926638a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:20 GMT", + "Date": "Mon, 02 Nov 2020 19:02:32 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": "66" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json index 0d5169dd6f890..3a69b9f3be706 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f3fa1af6880b8b4794cec5bc37d8e263-01ae7822e53f944b-00", + "traceparent": "00-eb799c1008ea8248910f7e738f409769-c003f7e327c8d144-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1c45dd5a-10b3-40e8-85af-350d3b854c10", + "apim-request-id": "426c4352-24dd-4864-a905-33ac849c04e3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:19 GMT", + "Date": "Mon, 02 Nov 2020 19:02:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "79" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json index a104c41e2edec..e0291a1e98dec 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-74f4e1b30d863a488fb947a02d247b0e-5ba9d831c9896449-00", + "traceparent": "00-0299fa01f201444da3fd4f272aad2567-3662ff9237767346-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6c49475a-6767-4517-948f-8b1bcc35fa9f", + "apim-request-id": "234b7de7-df92-4da9-9f64-45bb2dc3779f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:20 GMT", + "Date": "Mon, 02 Nov 2020 19:02:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "93" + "x-envoy-upstream-service-time": "100" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json index e93c161d0543d..552836c557170 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-30266f883ef3d1468103174dd1176fd4-5204475fca21ba45-00", + "traceparent": "00-5527baf868a671409bcd6cb0076e941b-05f5664e04429b41-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7bee46f0-6a33-44f6-b3bb-604ad9cc8349", + "apim-request-id": "04de5ebd-5987-472a-a7a3-f037b070aaa7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:22 GMT", + "Date": "Mon, 02 Nov 2020 19:02:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1328" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json index dd926c9c00c96..5293c309e1b7e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3a4d815e7669914189a82f8443715372-f6d327791c7bee48-00", + "traceparent": "00-a0571300253716419806eac3f14a1926-3b0e15cc54ac1b4d-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6ce3d481-58ff-4fae-892a-966c26c2f8b8", + "apim-request-id": "6e3aeaf1-ddbb-46fa-8bd2-ed076da03c77", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:22 GMT", + "Date": "Mon, 02 Nov 2020 19:02:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json index 8fecf5c6f3fce..39210d16c8dfd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-767bd3dafa36ec48ae37ae327ca276ec-2127cfd4de019042-00", + "traceparent": "00-2190c3d922ca7d4b8859278a064cb0f3-d98b8827acfbd943-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5b146014-f447-4b01-8768-c89870ad8dd2", + "apim-request-id": "911c150d-30cb-4d74-b7d1-5578891117a5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:22 GMT", + "Date": "Mon, 02 Nov 2020 19:02:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json index 45e10926c600a..d8122926ee61e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ffa7ea494d3d9d44b3124055547ccf03-b646eb6153c16a49-00", + "traceparent": "00-b84f9fa9f447e442baf6c29cf3f6f8b8-d45427636595574f-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "baa86f3f-d53f-485a-b9e2-b037a34eeecd", + "apim-request-id": "ebce4089-5d80-42b0-9595-7a944f75b6d6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:23 GMT", + "Date": "Mon, 02 Nov 2020 19:02:32 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": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json index f43e6371c500d..aaa2c0cd4c7d4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4d73c1fc0447d2409a4e1725e7236716-d12eda5ba3e3bb41-00", + "traceparent": "00-b9c33b54252be84eabcd377a9672527d-e72e47bf5ace9845-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1aefafdc-49d8-4b26-8d85-1c5ba788222c", + "apim-request-id": "67ca1b99-563c-4b12-a736-6d78979ce161", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:22 GMT", + "Date": "Mon, 02 Nov 2020 19:02:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json index ee442bf3442e0..dc8adf4cd43df 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-77730a7cfdd8f44ab6a66636f89c1241-6ba522839a70fa47-00", + "traceparent": "00-d0ee221eb2c8a34d84e4d1a3c2d9d1cd-8f538567a1c01249-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dee987b0-ebdb-4596-be40-bd72ba18418b", + "apim-request-id": "00c48872-9ce7-4984-b347-d952e90f1be7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:23 GMT", + "Date": "Mon, 02 Nov 2020 19:02:32 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": "36" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json index 891450188c340..ced98774a65af 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "229", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f30c930212fa3f42bf77cee587216926-ddb404d69e6dad4d-00", + "traceparent": "00-78d3948f1a3d424199c7447403e2dc8e-8b4a113cababe541-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bb85d487-30c3-4c1c-88d5-43374cb955b7", + "apim-request-id": "28d5e1e2-59e6-49dc-b6cd-3d92b1fbeaed", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:22 GMT", + "Date": "Mon, 02 Nov 2020 19:02:32 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": "21" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json index a2f5a214731b5..70302a90f6988 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "229", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5227b902ef981543bfff137c433a9348-7792f72799e3404f-00", + "traceparent": "00-9fd0164881be8d44867206e64c30e6c7-0799db99eaddbd4e-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "46c0e4eb-72ed-43fb-a36e-fba9be5c3e84", + "apim-request-id": "850c7a2a-a01a-453d-8892-0055c70ca429", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:23 GMT", + "Date": "Mon, 02 Nov 2020 19:02:32 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": "29" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json index 3dd82b5eaa22c..cee85cd319840 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "561", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-10cc2d0655bf30468f97cacc5413917c-d482f0eace696a44-00", + "traceparent": "00-1a6d1e54490b214fbbf3a5a018ca672d-83e91b35d1e54f46-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -55,13 +55,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "62761efe-5041-45ef-b53e-11a161aa9ec4", + "apim-request-id": "db6a20d0-690a-48eb-8b62-a41f7beb5f1d", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 18:41:22 GMT", + "Date": "Mon, 02 Nov 2020 19:02:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json index fb71babf6100f..423e23309d257 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "561", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3c87b2ee09044e429c883e5f217cf90e-1a3cbefac5a05b4d-00", + "traceparent": "00-b58adad7372bbb4289ab08360ff096f4-700a6dea0f910046-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -55,13 +55,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "df508a98-b6a6-41ca-9a8b-f129fc5bc6c0", + "apim-request-id": "8a5740ec-573c-4131-97bd-7144985879ca", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 18:41:23 GMT", + "Date": "Mon, 02 Nov 2020 19:02:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json index c5b04cee158c0..7456ce31cdb12 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-02f7493753e6e249ae3160cca47af1c6-a129b8e505dc0445-00", + "traceparent": "00-e70e0e15db7fb441a416f903aad746aa-892f1e42a37ec549-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "2e118360-b920-489b-b66a-996f3a0ca7a7", + "apim-request-id": "80961c26-116f-474f-bd1d-ac924f88129b", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 18:41:22 GMT", + "Date": "Mon, 02 Nov 2020 19:02:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json index fa07b68d702e4..140e57abd3633 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cc811f28dd090746907bee710918df82-4e60669bd5d1174c-00", + "traceparent": "00-8c4c21579baa7341997b79f398c6605c-893fc949a703cb45-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "c9db182d-2c3e-4513-8c1b-db879d9d9976", + "apim-request-id": "380017b3-c807-4d54-8329-44cd5503a3d6", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 18:41:23 GMT", + "Date": "Mon, 02 Nov 2020 19:02:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json index 4806b12a8a712..6cd6cc2da1e47 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7b67f554a201124ca8cb52eece689427-56cc261392ed524d-00", + "traceparent": "00-3ca75b9533fd874181ecc6f4011de510-0ba5d060c522964b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a27edea7-4751-462b-a556-6b3ec18da409", + "apim-request-id": "20d7d56f-1cf3-4254-b6e1-cda170e40bf7", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 18:41:22 GMT", + "Date": "Mon, 02 Nov 2020 19:02:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-envoy-upstream-service-time": "1" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json index 8cdb1150203a9..039f4d7eaa30b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a16f0a107251be4b82650a4f741e0dfd-a73aae88b0474c42-00", + "traceparent": "00-7014f2b2383f8743a93428e4e5591b22-334ccd0cd5732f48-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cb3f3a36-1705-41c7-acdd-901a1580bb4e", + "apim-request-id": "c4ebafbb-29b3-4ad3-90e0-f0564f56f655", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 18:41:23 GMT", + "Date": "Mon, 02 Nov 2020 19:02:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json index 4c1b12c71a735..3b2008603102e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f49954b8bea2cf4aa1561ee077b7b540-bb03f5514b547a42-00", + "traceparent": "00-a07404c37bf2464fba8c47e11ead381c-cdb1ecd56bd96a4f-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "11747931-e241-4a4b-9c8d-4e12fa3507d6", + "apim-request-id": "a309863a-26d0-4aae-9adf-cfe5ac6ee321", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:22 GMT", + "Date": "Mon, 02 Nov 2020 19:02:32 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": "21" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json index 4f8a49e34d8b0..fca1e6bdc04f3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-87f10cf777b9764793318c4d01195e89-4f548f17de375e4b-00", + "traceparent": "00-7d155146161bb3498b69d02dc4d7543c-8d7f01674c13e048-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4aa1901f-a43e-4044-a725-06083dc5801f", + "apim-request-id": "0223c199-5570-4fc8-8226-81982e692515", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:23 GMT", + "Date": "Mon, 02 Nov 2020 19:02:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json index ccf6bfc90a332..4dbcf3748e651 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-11e4d0ef599d0d47b45bed5e8c31fb49-a04a37da63fc9f46-00", + "traceparent": "00-440924dd55b4b64fbb9bed194d48bfbb-2b9840970a9e1243-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "00b2df47-ee54-4d39-88f4-99ca93bbcbe5", + "apim-request-id": "da4ac952-ba32-4ce4-b105-37323d466b4f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:22 GMT", + "Date": "Mon, 02 Nov 2020 19:02:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json index 467a5ea96b7f0..36da2ee3aac9a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7d338c204580de48ad3eacbbeabf8435-ad56c3a8cceda641-00", + "traceparent": "00-ab396105f899ea419df981354ac8b52d-9603e1fdba72fd43-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "75753cad-d7fa-4e88-9c48-77ed4d2f864e", + "apim-request-id": "dbf952a6-6fcf-4508-aba1-cc1e0c3cbc76", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:23 GMT", + "Date": "Mon, 02 Nov 2020 19:02:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json index 09432c5a94a18..dcebc8bf94bf2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9115baf78bc43e45a27ea68a89a0299c-97be6c87ae6c2a47-00", + "traceparent": "00-f1a71a3e54011140a27a4f97c053b947-a6939861ea649147-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "110a9269-d6f9-4d45-ade4-a83d85c154f5", + "apim-request-id": "75a0eee5-acc9-48a6-86f5-a17eec5b16af", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:22 GMT", + "Date": "Mon, 02 Nov 2020 19:02:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "506" + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json index be61648f14117..e8ac3eca53666 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9e7c920b4757b24bbd0ed88b06511b53-02111a22e8460e4e-00", + "traceparent": "00-9ba8d1825aa1c64895a87b9ad025af4a-ae488d9abc1f894d-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e20f8e0b-03bd-4bb0-bb41-5a87d2e2c730", + "apim-request-id": "872ff59e-f893-4c9f-b8e3-264307bf3514", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:23 GMT", + "Date": "Mon, 02 Nov 2020 19:02:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json index d985563d0f26f..250482bf843d3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1927c13b378d5b4eb360421e8a46a137-9ee9ac4cbf2b0d45-00", + "traceparent": "00-bf8d97b1623d9543bb1b97d8e40fcf9e-3de622643057b344-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6db447fd-cfa8-45fd-9e72-952e46a2948c", + "apim-request-id": "a814c3f7-51d3-429b-b42d-d59671c309be", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:24 GMT", + "Date": "Mon, 02 Nov 2020 19:02:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1643" + "x-envoy-upstream-service-time": "136" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json index 8d74b9e2985e0..9b6eda7c7802c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ef1e8075ad131c408a15de73c2081a29-c042125f7cd7fe4b-00", + "traceparent": "00-c7152ad735c51145971c748b1689d80d-355e4c59420eba43-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "46c8e05f-1038-468d-9550-11f390e9717f", + "apim-request-id": "8caa1966-8a59-4197-8fc5-2be529f99b04", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:25 GMT", + "Date": "Mon, 02 Nov 2020 19:02:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "134" + "x-envoy-upstream-service-time": "182" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json index a2918c54d6333..79d3610ec3527 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3e692d7b971dd94d8f753528899108e0-9223eaf55779684b-00", + "traceparent": "00-9c7c019618dacf42a0bd7ef59df9cf09-e6ccc8772246a740-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e8412fb1-721d-4e47-9dda-3fb3b80b677e", + "apim-request-id": "f49b8bb0-f59d-42ef-85a0-e2e20d120a3c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:24 GMT", + "Date": "Mon, 02 Nov 2020 19:02:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "130" + "x-envoy-upstream-service-time": "163" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json index d1dc8422cacd5..ab3648ba599f4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dff5d4490e35b9418f85809cb1f9f2ef-599c91618e09e341-00", + "traceparent": "00-b64bd8b0648179488953b9a72cec823c-0c555450cbd6ed4c-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "56fb9d5d-f9f4-46d0-8021-e0eba652f2a1", + "apim-request-id": "560be38e-aa54-4171-a230-35e5ab94c89f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:26 GMT", + "Date": "Mon, 02 Nov 2020 19:02:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "146" + "x-envoy-upstream-service-time": "201" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json index fa7a0d75de6df..1a37b93d411d8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f72964043a9d794f96bf13bfced5b322-346bbed01ae5894f-00", + "traceparent": "00-ebbf7902105f594782d3ab850728442b-6e37a58baf0a7843-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "20652710-e571-4070-8027-320aebbb1c31", + "apim-request-id": "68aafdff-349f-4bf8-bfcf-b17cbabda94a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:25 GMT", + "Date": "Mon, 02 Nov 2020 19:02:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "130" + "x-envoy-upstream-service-time": "141" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json index 70bf095f20a08..2d35460b8cb7d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-23577183c2d2934bbd21ad46b68de22b-8aad6f106d716241-00", + "traceparent": "00-1585172accc1eb4a935381fd843af0e9-e45bd659f666764d-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8cd989bf-1aa0-41c2-86f7-f51bd3152546", + "apim-request-id": "5cca17c2-a3f0-40de-8b84-9e6f9cf5485a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:26 GMT", + "Date": "Mon, 02 Nov 2020 19:02:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "129" + "x-envoy-upstream-service-time": "133" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json index 502f1d4ebe282..8a375e9aa9aaa 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "331", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7328663d9031434b8d68632bfb991c9d-edaa21aa2e9b2348-00", + "traceparent": "00-cb837bae37889d48b25509f0fd8dda39-1b395cbfaff64540-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e7054563-3ebe-40e9-ab41-f44419394a38", + "apim-request-id": "3b18b1a1-bb6f-43ec-8ac3-cd7c132c1e18", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:25 GMT", + "Date": "Mon, 02 Nov 2020 19:02:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "142" + "x-envoy-upstream-service-time": "140" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json index a94d1eb60eef0..25ccffc7088d6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "331", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b16959aeb07530489ab244b738aceb0d-8f9e14886796c348-00", + "traceparent": "00-b9ae2d6ad64b1e48bc3644ddbb6c4430-10dc1b15e90de14a-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cb8b78f7-7fc7-4a53-bdba-f6973402860b", + "apim-request-id": "c6ca696f-c9c0-4906-94e7-b125d9165c8e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:26 GMT", + "Date": "Mon, 02 Nov 2020 19:02:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "138" + "x-envoy-upstream-service-time": "129" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json index 60583ce0bcaeb..011dc82f1a05d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7e20877cd98a5643b3fc7556f943e651-2a7da5243b882241-00", + "traceparent": "00-a2676bbf5369d7439775da51ee5df974-d2d828a895d3834f-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "436a809e-76c2-4f3c-a7d6-dbe5c6463cba", + "apim-request-id": "deef5d0e-fd70-46b6-ba6f-bc42eaf75221", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:25 GMT", + "Date": "Mon, 02 Nov 2020 19:02:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "132" + "x-envoy-upstream-service-time": "143" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json index bda2cf570796f..c1ebcd086c29f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0fb83624c437744692d139dbbaf116a6-4be2d9c7cb716f43-00", + "traceparent": "00-a82d6b195216254bb69036bf09c34052-87386c2733178f42-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "66dc4968-7a47-4918-9f16-fceb697f02af", + "apim-request-id": "927f9883-e82d-48eb-b536-950ff36c34ba", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 18:41:26 GMT", + "Date": "Mon, 02 Nov 2020 19:02:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "140" + "x-envoy-upstream-service-time": "136" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json index e2fb1751bc121..179110a30611a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f7eb0b5455cbac4b8b3e7da3fcf23e3f-1685023f78ee844d-00", + "traceparent": "00-5a513efddfa7894aa1c6696e06de338b-52317f3229ff354b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a1231bbd-3d06-4d62-a64e-1948c4973251", + "apim-request-id": "d9db46d8-a789-493d-a05f-36da562fdb84", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:25 GMT", + "Date": "Mon, 02 Nov 2020 19:02:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "98" + "x-envoy-upstream-service-time": "125" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json index a6c1c0fee3434..74280d0f56217 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-72cc040a63b73e42a5b50b19b65223f0-fe2c045c245f9d4a-00", + "traceparent": "00-4c7aff95f7844f439fea321592a29863-516c83bb9a1d8647-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b6913341-8130-4a49-8536-bc97252991ff", + "apim-request-id": "6816b995-cbaf-43b7-88d0-1990f8321048", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:26 GMT", + "Date": "Mon, 02 Nov 2020 19:02:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "104" + "x-envoy-upstream-service-time": "111" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json index d0def36153c0d..dc5de271b1dba 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "107", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9f7e8f5ad6bc034c89ab8b0f03178931-c21698748a3b9d4b-00", + "traceparent": "00-cf0aa5fe29283844a6c1324bc3745081-387e0ed57510f248-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "acaf6e29-23fe-4dff-99a6-64a1c811ba63", + "apim-request-id": "ddfe7e91-5abf-49df-add4-53c131d18103", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:25 GMT", + "Date": "Mon, 02 Nov 2020 19:02:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "78" + "x-envoy-upstream-service-time": "106" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json index e1ab3b39858f1..ad5bc8c10a816 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "107", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7e742341d07ea943ac67c50aa040aed9-1852f3b6ece6ab4e-00", + "traceparent": "00-6d2fe93c53fdb645ab697a8e1c09df70-0cd1e10c680edc49-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3ce9d6a7-99c9-4c12-8779-a5144d4fb0ea", + "apim-request-id": "c15ff8a6-3ffa-4cfa-ae36-8c1215ac8805", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:26 GMT", + "Date": "Mon, 02 Nov 2020 19:02:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "90" + "x-envoy-upstream-service-time": "89" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json index 282738188499e..9b77e0cad591d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d07cb43ffe4c5947a601332f04c98eab-9f76b51c78addb43-00", + "traceparent": "00-86ec74c52c0c244a8f063a5252e8c7ad-5ee29ff08c9adb4e-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5c78877f-53d9-4c7c-8026-34794e0df51f", + "apim-request-id": "5bb89149-0bff-4d0d-937b-6acc079c0d37", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:25 GMT", + "Date": "Mon, 02 Nov 2020 19:02:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "102" + "x-envoy-upstream-service-time": "118" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json index 8555162d5a100..e21654e239897 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6711f2db6ff43747bdd67d116efd4bcd-f03c1ec40ea4464d-00", + "traceparent": "00-ff9c6e7b482102488bdd4f1706ce57f0-9472616496cebc4b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "614753c6-d763-4dce-a0a9-39b0d57a4e70", + "apim-request-id": "5cdaff5e-ab0f-4d4e-96d4-22fdc83a651c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:26 GMT", + "Date": "Mon, 02 Nov 2020 19:02:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "106" + "x-envoy-upstream-service-time": "102" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json index 6475da4a67f68..6a5bcb61bc755 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?model-version=2020-02-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?model-version=2020-02-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-13d38b0a11f8794485af00e62789c9ae-ae5e4ecc081b0c43-00", + "traceparent": "00-6eda0bd9d317654fa2740b6db758ad62-2ec3f3c4f236994d-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d467f948-50c1-4b38-b622-c2bb83ef96bc", + "apim-request-id": "9f96dacf-7b49-4ff7-9c4c-16ff330dab37", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:26 GMT", + "Date": "Mon, 02 Nov 2020 19:02:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "66" + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json index b2d71a9790ecf..c8ac6ce8482a0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?model-version=2020-02-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?model-version=2020-02-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0a8b5f01d15a534d927893ce7878aac9-9641a9cb83567148-00", + "traceparent": "00-e1627307fdcd7c4297330262f49ad0f1-5d29d0e8c397d54c-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "59dd8596-e66c-49e3-993f-fef00e561a6a", + "apim-request-id": "b60ad629-df1c-4390-9d4b-a1fb43489137", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:27 GMT", + "Date": "Mon, 02 Nov 2020 19:02:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "64" + "x-envoy-upstream-service-time": "66" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json index 74a2d42711059..169ba363992ac 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cf93d562de5ec243af578bb4ef1e183d-070cf520c12da241-00", + "traceparent": "00-ab8e598e335ae84fbb9b7e214bad7fdd-b57bcc3c35be2e44-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0c440faa-16c8-4f59-a2e8-0160bdf2f185", + "apim-request-id": "9354bbb6-8428-4343-b75e-bad6e5af7d77", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:27 GMT", + "Date": "Mon, 02 Nov 2020 19:02:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "82" + "x-envoy-upstream-service-time": "73" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json index b90e5537a2ef0..ef9f179dc18ce 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-55800cfecb95a541931e32e2458f7ab9-09fb4aad1ecd5d41-00", + "traceparent": "00-3f7187679caa49448c6eb00fa52288e0-569eb733ae7c854b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9b58c2e7-36a6-473d-9e39-f41496c48d7a", + "apim-request-id": "0de192d7-7e25-4663-bbf4-a7b9392aa1d1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:27 GMT", + "Date": "Mon, 02 Nov 2020 19:02:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "91" + "x-envoy-upstream-service-time": "74" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json index 400cbe9551330..26b296df570ad 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "70", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-243717d79420e44c8c98b448f83d8d26-816fb7eddb8d414a-00", + "traceparent": "00-1aa0c5ae2ee2b74cb27c0304ce3457ef-981d36f073adf74a-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1047128e-3277-4ae4-acb6-95b1b8d27cc4", + "apim-request-id": "306a5007-747c-4d18-92cd-45c907ab49a5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:27 GMT", + "Date": "Mon, 02 Nov 2020 19:02:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "60" + "x-envoy-upstream-service-time": "56" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json index 64191031898c9..bbafad882c2ba 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "70", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6c82931fa6dad24b86eb0d80b4548110-5bb6852bc21b8d49-00", + "traceparent": "00-59ace23a76e954458cd2a0bde21b8760-e108bafbeb6d8b4c-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "defa8d9e-885b-4e02-9893-f0f2cf80653e", + "apim-request-id": "fa336aa3-3cbc-4b3d-b310-f4bf4c687f22", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:27 GMT", + "Date": "Mon, 02 Nov 2020 19:02:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "64" + "x-envoy-upstream-service-time": "54" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json index b98b0bf7af32c..3c7ec3927dde0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ab75b6304b5aee47b349b2bb4a42a84a-6e1dec676e2b8c4b-00", + "traceparent": "00-e648a21c542011408ff64966fc185aca-c7f01e003770524c-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a0440941-9c4a-4011-9a60-52a47fbf29db", + "apim-request-id": "44c948d2-0b93-4b30-bd2a-f746ec0d0213", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:27 GMT", + "Date": "Mon, 02 Nov 2020 19:02:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-envoy-upstream-service-time": "79" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json index 2c91dc1ac165e..f5e2b6c37ee90 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2ppe.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cc05d4b645ddbb4a8c8b59d4c9759b16-9679f04f570f5147-00", + "traceparent": "00-2d3b3ce457f7fb4baff0fdf04aa279ff-897dbcd6d5378548-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e0a1c205-6ebf-4e19-a4c1-63cc6e01dd63", + "apim-request-id": "b03b5cc4-6803-4343-9d1e-de9e3fed99e8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 18:41:27 GMT", + "Date": "Mon, 02 Nov 2020 19:02:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "69" + "x-envoy-upstream-service-time": "79" }, "ResponseBody": { "documents": [ From 3f9d711c71822ce00842d7b273785eeb263a7f73 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Mon, 2 Nov 2020 11:22:17 -0800 Subject: [PATCH 21/58] update env variables --- ...lyzeSentimentBatchConvenienceFullTest.json | 12 +++-- ...entimentBatchConvenienceFullTestAsync.json | 10 ++-- .../AnalyzeSentimentBatchConvenienceTest.json | 12 +++-- ...yzeSentimentBatchConvenienceTestAsync.json | 12 +++-- ...tBatchConvenienceWithCancellationTest.json | 12 +++-- ...hConvenienceWithCancellationTestAsync.json | 12 +++-- ...nienceWithLanguageAndCancellationTest.json | 10 ++-- ...eWithLanguageAndCancellationTestAsync.json | 12 +++-- ...venienceWithLanguageAndStatisticsTest.json | 12 +++-- ...nceWithLanguageAndStatisticsTestAsync.json | 12 +++-- ...imentBatchConvenienceWithLanguageTest.json | 10 ++-- ...BatchConvenienceWithLanguageTestAsync.json | 12 +++-- ...BatchConvenienceWithOpinionMiningTest.json | 12 +++-- ...ConvenienceWithOpinionMiningTestAsync.json | 12 +++-- ...enceWithStatisticsAndCancellationTest.json | 12 +++-- ...ithStatisticsAndCancellationTestAsync.json | 12 +++-- ...entBatchConvenienceWithStatisticsTest.json | 12 +++-- ...tchConvenienceWithStatisticsTestAsync.json | 12 +++-- .../AnalyzeSentimentBatchTest.json | 12 +++-- .../AnalyzeSentimentBatchTestAsync.json | 12 +++-- .../AnalyzeSentimentBatchWithErrorTest.json | 12 +++-- ...alyzeSentimentBatchWithErrorTestAsync.json | 12 +++-- .../AnalyzeSentimentBatchWithNullIdTest.json | 12 +++-- ...lyzeSentimentBatchWithNullIdTestAsync.json | 10 ++-- ...AnalyzeSentimentBatchWithNullTextTest.json | 10 ++-- ...zeSentimentBatchWithNullTextTestAsync.json | 12 +++-- ...zeSentimentBatchWithOpinionMiningTest.json | 10 ++-- ...timentBatchWithOpinionMiningTestAsync.json | 12 +++-- ...alyzeSentimentBatchWithStatisticsTest.json | 12 +++-- ...SentimentBatchWithStatisticsTestAsync.json | 12 +++-- .../AnalyzeSentimentTest.json | 12 +++-- .../AnalyzeSentimentTestAsync.json | 12 +++-- .../AnalyzeSentimentWithCancellationTest.json | 12 +++-- ...yzeSentimentWithCancellationTestAsync.json | 12 +++-- ...timentWithLanguageAndCancellationTest.json | 12 +++-- ...tWithLanguageAndCancellationTestAsync.json | 10 ++-- .../AnalyzeSentimentWithLanguageTest.json | 12 +++-- ...AnalyzeSentimentWithLanguageTestAsync.json | 12 +++-- .../AnalyzeSentimentWithOpinionMining.json | 12 +++-- ...nalyzeSentimentWithOpinionMiningAsync.json | 12 +++-- ...nalyzeSentimentWithOpinionMiningEmpty.json | 12 +++-- ...eSentimentWithOpinionMiningEmptyAsync.json | 12 +++-- ...lyzeSentimentWithOpinionMiningNegated.json | 12 +++-- ...entimentWithOpinionMiningNegatedAsync.json | 12 +++-- .../DetectLanguageBatchConvenienceTest.json | 12 +++-- ...tectLanguageBatchConvenienceTestAsync.json | 12 +++-- ...ageBatchConvenienceWithStatisticsTest.json | 12 +++-- ...tchConvenienceWithStatisticsTestAsync.json | 12 +++-- .../DetectLanguageBatchTest.json | 12 +++-- .../DetectLanguageBatchTestAsync.json | 10 ++-- .../DetectLanguageBatchWithErrorTest.json | 12 +++-- ...DetectLanguageBatchWithErrorTestAsync.json | 12 +++-- .../DetectLanguageBatchWithNullIdTest.json | 12 +++-- ...etectLanguageBatchWithNullIdTestAsync.json | 10 ++-- .../DetectLanguageBatchWithNullTextTest.json | 10 ++-- ...ectLanguageBatchWithNullTextTestAsync.json | 10 ++-- ...DetectLanguageBatchWithStatisticsTest.json | 10 ++-- ...tLanguageBatchWithStatisticsTestAsync.json | 10 ++-- .../DetectLanguageTest.json | 12 +++-- .../DetectLanguageTestAsync.json | 10 ++-- .../DetectLanguageWithCountryHintTest.json | 12 +++-- ...etectLanguageWithCountryHintTestAsync.json | 12 +++-- ...etectLanguageWithErrorCountryHintTest.json | 10 ++-- ...LanguageWithErrorCountryHintTestAsync.json | 12 +++-- ...DetectLanguageWithNoneCountryHintTest.json | 10 ++-- ...tLanguageWithNoneCountryHintTestAsync.json | 10 ++-- ...anguageWithNoneDefaultCountryHintTest.json | 12 +++-- ...geWithNoneDefaultCountryHintTestAsync.json | 10 ++-- ...ExtractKeyPhrasesBatchConvenienceTest.json | 12 +++-- ...ctKeyPhrasesBatchConvenienceTestAsync.json | 12 +++-- ...sesBatchConvenienceWithStatisticsTest.json | 10 ++-- ...tchConvenienceWithStatisticsTestAsync.json | 12 +++-- .../ExtractKeyPhrasesBatchTest.json | 12 +++-- .../ExtractKeyPhrasesBatchTestAsync.json | 12 +++-- .../ExtractKeyPhrasesBatchWithErrorTest.json | 12 +++-- ...ractKeyPhrasesBatchWithErrorTestAsync.json | 12 +++-- .../ExtractKeyPhrasesBatchWithNullIdTest.json | 12 +++-- ...actKeyPhrasesBatchWithNullIdTestAsync.json | 10 ++-- ...xtractKeyPhrasesBatchWithNullTextTest.json | 12 +++-- ...tKeyPhrasesBatchWithNullTextTestAsync.json | 10 ++-- ...tractKeyPhrasesBatchWithSatisticsTest.json | 12 +++-- ...KeyPhrasesBatchWithSatisticsTestAsync.json | 12 +++-- .../ExtractKeyPhrasesTest.json | 10 ++-- .../ExtractKeyPhrasesTestAsync.json | 12 +++-- .../ExtractKeyPhrasesWithLanguageTest.json | 12 +++-- ...xtractKeyPhrasesWithLanguageTestAsync.json | 12 +++-- .../ExtractKeyPhrasesWithWarningTest.json | 12 +++-- ...ExtractKeyPhrasesWithWarningTestAsync.json | 12 +++-- ...RecognizeEntitiesBatchConvenienceTest.json | 12 +++-- ...nizeEntitiesBatchConvenienceTestAsync.json | 12 +++-- ...iesBatchConvenienceWithStatisticsTest.json | 12 +++-- ...tchConvenienceWithStatisticsTestAsync.json | 12 +++-- .../RecognizeEntitiesBatchTest.json | 12 +++-- .../RecognizeEntitiesBatchTestAsync.json | 12 +++-- .../RecognizeEntitiesBatchWithErrorTest.json | 12 +++-- ...ognizeEntitiesBatchWithErrorTestAsync.json | 12 +++-- ...EntitiesBatchWithInvalidDocumentBatch.json | 12 +++-- ...iesBatchWithInvalidDocumentBatchAsync.json | 12 +++-- .../RecognizeEntitiesBatchWithNullIdTest.json | 10 ++-- ...gnizeEntitiesBatchWithNullIdTestAsync.json | 10 ++-- ...ecognizeEntitiesBatchWithNullTextTest.json | 10 ++-- ...izeEntitiesBatchWithNullTextTestAsync.json | 10 ++-- ...ognizeEntitiesBatchWithStatisticsTest.json | 12 +++-- ...eEntitiesBatchWithStatisticsTestAsync.json | 12 +++-- .../RecognizeEntitiesTest.json | 12 +++-- .../RecognizeEntitiesTestAsync.json | 12 +++-- .../RecognizeEntitiesWithLanguageTest.json | 10 ++-- ...ecognizeEntitiesWithLanguageTestAsync.json | 12 +++-- .../RecognizeEntitiesWithSubCategoryTest.json | 12 +++-- ...gnizeEntitiesWithSubCategoryTestAsync.json | 12 +++-- ...izeLinkedEntitiesBatchConvenienceTest.json | 12 +++-- ...nkedEntitiesBatchConvenienceTestAsync.json | 12 +++-- ...iesBatchConvenienceWithStatisticsTest.json | 12 +++-- ...tchConvenienceWithStatisticsTestAsync.json | 12 +++-- .../RecognizeLinkedEntitiesBatchTest.json | 12 +++-- ...RecognizeLinkedEntitiesBatchTestAsync.json | 12 +++-- ...gnizeLinkedEntitiesBatchWithErrorTest.json | 10 ++-- ...LinkedEntitiesBatchWithErrorTestAsync.json | 12 +++-- ...EntitiesBatchWithInvalidDocumentBatch.json | 12 +++-- ...iesBatchWithInvalidDocumentBatchAsync.json | 12 +++-- ...nizeLinkedEntitiesBatchWithNullIdTest.json | 12 +++-- ...inkedEntitiesBatchWithNullIdTestAsync.json | 12 +++-- ...zeLinkedEntitiesBatchWithNullTextTest.json | 12 +++-- ...kedEntitiesBatchWithNullTextTestAsync.json | 10 ++-- ...LinkedEntitiesBatchWithStatisticsTest.json | 12 +++-- ...dEntitiesBatchWithStatisticsTestAsync.json | 12 +++-- .../RecognizeLinkedEntitiesTest.json | 12 +++-- .../RecognizeLinkedEntitiesTestAsync.json | 12 +++-- ...cognizeLinkedEntitiesWithLanguageTest.json | 10 ++-- ...zeLinkedEntitiesWithLanguageTestAsync.json | 10 ++-- ...ognizePiiEntitiesBatchConvenienceTest.json | 12 +++-- ...ePiiEntitiesBatchConvenienceTestAsync.json | 12 +++-- ...iesBatchConvenienceWithStatisticsTest.json | 12 +++-- ...tchConvenienceWithStatisticsTestAsync.json | 12 +++-- .../RecognizePiiEntitiesBatchTest.json | 12 +++-- .../RecognizePiiEntitiesBatchTestAsync.json | 12 +++-- ...ecognizePiiEntitiesBatchWithErrorTest.json | 12 +++-- ...izePiiEntitiesBatchWithErrorTestAsync.json | 12 +++-- ...izePiiEntitiesBatchWithStatisticsTest.json | 12 +++-- ...iEntitiesBatchWithStatisticsTestAsync.json | 12 +++-- .../RecognizePiiEntitiesTest.json | 12 +++-- .../RecognizePiiEntitiesTestAsync.json | 12 +++-- .../RecognizePiiEntitiesWithDomainTest.json | 12 +++-- ...cognizePiiEntitiesWithDomainTestAsync.json | 12 +++-- .../RecognizePiiEntitiesWithLanguageTest.json | 12 +++-- ...gnizePiiEntitiesWithLanguageTestAsync.json | 12 +++-- .../EntitiesCategories.json | 12 +++-- .../EntitiesCategoriesAsync.json | 12 +++-- .../RotateApiKey.json | 47 ++++++++++--------- .../RotateApiKeyAsync.json | 47 ++++++++++--------- .../TextInKoreanNFC.json | 12 +++-- .../TextInKoreanNFCAsync.json | 12 +++-- .../TextWithDiacriticsNFC.json | 12 +++-- .../TextWithDiacriticsNFCAsync.json | 12 +++-- .../TextWithEmoji.json | 12 +++-- .../TextWithEmojiAsync.json | 12 +++-- 156 files changed, 1099 insertions(+), 781 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json index 30ec29ce04daa..29779721ee8ff 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-62de6262b2135444abf97e54dc015dac-dcc5daf579779746-00", + "traceparent": "00-6a137b27173ad94482a8e3fd0303c2eb-b0f838883bfd0643-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "16da841a-161a-47be-be2f-52ffe70d0d1d", + "apim-request-id": "5904ee8d-c2df-498b-98c1-fb91defdcdf2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:25 GMT", + "Date": "Mon, 02 Nov 2020 19:19:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "92" + "x-envoy-upstream-service-time": "97" }, "ResponseBody": { "statistics": { @@ -135,6 +135,8 @@ } ], "Variables": { - "RandomSeed": "508530765" + "RandomSeed": "508530765", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json index d1a56cccd44cb..dadacb6836a91 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-83f43c7c1c77684f8eb4bef77aa3e012-eeea4c85fa9ba849-00", + "traceparent": "00-16eb90430314b94c946ff67c9822b6ad-bf802530174e2b4a-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,10 +35,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0350f240-896e-485b-bf6c-96a5d4b89a55", + "apim-request-id": "7b0056ab-abd3-4c21-af55-0672b4529180", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:27 GMT", + "Date": "Mon, 02 Nov 2020 19:19:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -135,6 +135,8 @@ } ], "Variables": { - "RandomSeed": "172625245" + "RandomSeed": "172625245", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json index e6f4f9c9deded..c82df6f68f356 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3e4ddce44fd76c429980605c2482fce9-7357f757defefb49-00", + "traceparent": "00-5e9d28749616a84d898846a594287f6b-231045df83d94e40-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7aeb37d2-ef87-4580-8b85-3d3d6a98bcf8", + "apim-request-id": "3c62c8dc-aadc-44b7-ba64-7d5c28890a0c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:25 GMT", + "Date": "Mon, 02 Nov 2020 19:19:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "89" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": { "documents": [ @@ -121,6 +121,8 @@ } ], "Variables": { - "RandomSeed": "1081025872" + "RandomSeed": "1081025872", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json index e3df759b8a7dd..67c3a412255c5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bb93476ee62eae4d87b58e1842507af6-982b6d611cfd9645-00", + "traceparent": "00-5f094fa0336e3b45abbd0579a277dbb0-ebf8933c242aea4d-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8438d418-ab75-455b-9c8f-abbe44a610b0", + "apim-request-id": "8b6961c1-4d5d-4941-9f48-0571cb332806", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:27 GMT", + "Date": "Mon, 02 Nov 2020 19:19:15 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": "90" }, "ResponseBody": { "documents": [ @@ -121,6 +121,8 @@ } ], "Variables": { - "RandomSeed": "353364953" + "RandomSeed": "353364953", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json index 9404bc6db555b..89cc8121a07b1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6e86b2d07b50a3438502490ce957674f-04268806324cc248-00", + "traceparent": "00-7a0ada7d81fe7d4789c8ea5f754908de-1c63d087dd76b74e-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e97f2a13-0160-49ce-a091-a32651c93936", + "apim-request-id": "f7178361-c679-48ef-a6e4-56e8cde5e241", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:25 GMT", + "Date": "Mon, 02 Nov 2020 19:19:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-envoy-upstream-service-time": "91" }, "ResponseBody": { "documents": [ @@ -121,6 +121,8 @@ } ], "Variables": { - "RandomSeed": "1844243829" + "RandomSeed": "1844243829", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json index 5954a48f9867c..bd5dcd06724b0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6090f0f786d0334493fe32aa1279d142-fb5a04c252372441-00", + "traceparent": "00-5e91bf163602284b802e0514fb8bf740-ba240bd90ca9fa47-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aa76612c-54b5-4309-80ca-320e7bdbdaac", + "apim-request-id": "86cbd87d-f7db-4eea-a206-2f5c3a5ddb1b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:27 GMT", + "Date": "Mon, 02 Nov 2020 19:19:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "82" + "x-envoy-upstream-service-time": "94" }, "ResponseBody": { "documents": [ @@ -121,6 +121,8 @@ } ], "Variables": { - "RandomSeed": "413540855" + "RandomSeed": "413540855", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json index 4f54a417cfacd..85d2dd96682b1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-aa0a53dfe2afac46961f7e394c7d7496-3d033ef9f618db45-00", + "traceparent": "00-8959e3cbe50b3c43955c120359ded6ac-4e9b7ebdd3f77241-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,10 +35,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c494000c-a66b-48f2-8ad5-b83e9f97344b", + "apim-request-id": "edc77e4b-cc1f-41d9-a4ad-339f61a72b53", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:25 GMT", + "Date": "Mon, 02 Nov 2020 19:19:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -121,6 +121,8 @@ } ], "Variables": { - "RandomSeed": "1867949087" + "RandomSeed": "1867949087", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json index e382719edfa1b..bfab4337191d6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a27f51ea056daf498e8ea66f4135ee48-b8e33040f0287e43-00", + "traceparent": "00-ed67027435254043ad3a28093db0027a-ee3ec139d72df648-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "47439fe6-8596-4386-96c2-248c6ec442a2", + "apim-request-id": "46b86423-81c4-4470-bd7e-fcd81bdb8967", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:27 GMT", + "Date": "Mon, 02 Nov 2020 19:19:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-envoy-upstream-service-time": "80" }, "ResponseBody": { "documents": [ @@ -121,6 +121,8 @@ } ], "Variables": { - "RandomSeed": "1600068101" + "RandomSeed": "1600068101", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json index 442baba39e1df..a3507e07a699b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-74aaedf9e96e8d42b208103ab734e7be-94a7adc8ab020b46-00", + "traceparent": "00-afe74a0bf03f0f43ada240a48ab9665e-b8244797a3fa834c-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "76659f3b-e906-4c38-9ade-a9b094c95a32", + "apim-request-id": "ce623543-d06d-4300-bbbb-5a5713935fd1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:25 GMT", + "Date": "Mon, 02 Nov 2020 19:19:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "85" + "x-envoy-upstream-service-time": "86" }, "ResponseBody": { "statistics": { @@ -135,6 +135,8 @@ } ], "Variables": { - "RandomSeed": "1265629352" + "RandomSeed": "1265629352", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json index a6c8267c78b70..51dec00bd9353 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-231ca39f80a13940aff017f3f20a45b7-be3ad55a3ce0974a-00", + "traceparent": "00-28f678eb016a5148b470e759ba849b97-f29452dac258e644-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a7d7ae9e-8e30-48a8-918e-1cf7e573b534", + "apim-request-id": "82ff2e33-d94f-4834-8df6-14882362d7dc", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:27 GMT", + "Date": "Mon, 02 Nov 2020 19:19:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "89" + "x-envoy-upstream-service-time": "85" }, "ResponseBody": { "statistics": { @@ -135,6 +135,8 @@ } ], "Variables": { - "RandomSeed": "598481068" + "RandomSeed": "598481068", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json index f913861d24e9e..5727c663a001c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e4ac46a7f85c73408ce3800b21008faa-0215589e4417944d-00", + "traceparent": "00-b6d38df7717fb940adb3f8eaf8a1549b-37d87c26000ee347-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,10 +35,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4e8fcc34-a65a-411e-8c8b-9299bbe100e0", + "apim-request-id": "d0a579fa-b776-43be-a154-904cfb9df6d8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:25 GMT", + "Date": "Mon, 02 Nov 2020 19:19:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -121,6 +121,8 @@ } ], "Variables": { - "RandomSeed": "843042242" + "RandomSeed": "843042242", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json index 5d6ad4e5136a9..377594889d38b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-57ac9bbce00bfb4f828d1ea83b14cd9d-eafa09df09c2e04b-00", + "traceparent": "00-f1713c68872dbd4f8581f7d130131309-0898ccdecd7c1742-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a6dc131e-a80b-4438-8b1d-952f7cd6aad6", + "apim-request-id": "969064eb-960e-4742-90d4-835bc7c05877", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:27 GMT", + "Date": "Mon, 02 Nov 2020 19:19:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "85" + "x-envoy-upstream-service-time": "82" }, "ResponseBody": { "documents": [ @@ -121,6 +121,8 @@ } ], "Variables": { - "RandomSeed": "1612151291" + "RandomSeed": "1612151291", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json index a9ad39f830014..f47770eca1442 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json @@ -11,7 +11,7 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-59b977d6c0b4f642b33d9c41c17c61ee-c5fbbdc65fd2824f-00", + "traceparent": "00-267f38f94bb0e340a12c07866da3b757-9e1f918bdd6b1148-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b61e3634-7b31-4a43-a2aa-6ba9aeba204b", + "apim-request-id": "dee52df0-7d2d-4082-906f-823622f909fb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:25 GMT", + "Date": "Mon, 02 Nov 2020 19:19:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-envoy-upstream-service-time": "89" }, "ResponseBody": { "documents": [ @@ -250,6 +250,8 @@ } ], "Variables": { - "RandomSeed": "1558892529" + "RandomSeed": "1558892529", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json index 2cbead8b0feb0..255381a5b3897 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6df16cfa9bea374ab7e40d1d4b3cedee-3ded9e8f98740e4f-00", + "traceparent": "00-1b808790d9f8c143a83a68816993be25-6d159ece2b79b54e-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1ce667fd-aa46-418a-9958-571d60fba251", + "apim-request-id": "938c34a9-2b3c-4956-b4e7-2d896c7e6cbf", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:27 GMT", + "Date": "Mon, 02 Nov 2020 19:19:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": { "documents": [ @@ -250,6 +250,8 @@ } ], "Variables": { - "RandomSeed": "1809635661" + "RandomSeed": "1809635661", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json index a67ff074af56c..fe31c6ee40e44 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4910d5bce6ae0e4b9cf031fb63956248-0667f026ee7be34d-00", + "traceparent": "00-63135571d337eb4aa324c127df87b8cf-c56fd3372960f94e-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e98f08de-b74c-41d4-bad7-a7fd008ba424", + "apim-request-id": "087690d9-e23a-43dc-b4d0-8e80169506f4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:25 GMT", + "Date": "Mon, 02 Nov 2020 19:19:13 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": { "statistics": { @@ -135,6 +135,8 @@ } ], "Variables": { - "RandomSeed": "1646397317" + "RandomSeed": "1646397317", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json index 5ded01d30f05e..680cfa333ecab 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-675c67b0d247d149aa8195e45fb4833b-e98dcaa24d26bb40-00", + "traceparent": "00-49bd1139f2d43248a7625a81ae43e768-0a43264ad9820e44-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7f12d713-78db-4cff-8f2a-2049d6b7a6af", + "apim-request-id": "a4b09a41-615f-4bdb-8a85-0e5232bed7a7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:28 GMT", + "Date": "Mon, 02 Nov 2020 19:19:16 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": "86" }, "ResponseBody": { "statistics": { @@ -135,6 +135,8 @@ } ], "Variables": { - "RandomSeed": "1063573528" + "RandomSeed": "1063573528", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json index f954d97d55d8e..bf6b435147ebb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5b02b814af333341bf70566e5e6e47e7-bfa4f4f80ea56141-00", + "traceparent": "00-5ee1aaa746cec648a4e08e5e6db22dff-56230b709db46444-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "407d72af-baa7-4d46-8823-8ea6f59beacb", + "apim-request-id": "ca86261f-4d4d-4440-94a1-6d63bd87021c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:26 GMT", + "Date": "Mon, 02 Nov 2020 19:19:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "88" + "x-envoy-upstream-service-time": "83" }, "ResponseBody": { "statistics": { @@ -135,6 +135,8 @@ } ], "Variables": { - "RandomSeed": "1108552328" + "RandomSeed": "1108552328", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json index 3c20d8aedc5cf..04b80a2c87867 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-16f63f5a2108c745bcf427403753170a-8bf11c06c4c28140-00", + "traceparent": "00-5c82881945e55a498dad4130266be51e-02c92729fd1f7b4a-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c83a8972-a0c3-44c0-95c3-54a60f1433d1", + "apim-request-id": "a0c4820f-72bd-4aa6-b47d-d1a23eb4fe52", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:28 GMT", + "Date": "Mon, 02 Nov 2020 19:19:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "89" + "x-envoy-upstream-service-time": "88" }, "ResponseBody": { "statistics": { @@ -135,6 +135,8 @@ } ], "Variables": { - "RandomSeed": "1480611001" + "RandomSeed": "1480611001", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json index 758e2ee8fdb13..8a07033569fef 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json @@ -11,7 +11,7 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0866c19c531c27428b1bc93801936359-17a59f33d542634b-00", + "traceparent": "00-e918bc41c56fcc4aa0a2940d8602a6a8-0a971260055ba74f-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a9b60274-0f50-4205-b06d-581623fe4842", + "apim-request-id": "79b4a55f-0143-4a6d-9189-5e8b8a3c6c05", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:26 GMT", + "Date": "Mon, 02 Nov 2020 19:19:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "106" + "x-envoy-upstream-service-time": "90" }, "ResponseBody": { "documents": [ @@ -121,6 +121,8 @@ } ], "Variables": { - "RandomSeed": "876796289" + "RandomSeed": "876796289", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json index b41232b4db1a3..b1fb4a5ec02a2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4e6089bed17fcf47a470d53d20cd2d27-dae40297c9369d49-00", + "traceparent": "00-875d44207b139c40a29384b7f57f4fc9-ba7afe447942d04c-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "693fddad-d508-46b6-bc9a-f7f7742a58b3", + "apim-request-id": "ce4bfee7-a1f2-42d8-a2fd-77b50bc7a66e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:28 GMT", + "Date": "Mon, 02 Nov 2020 19:19:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "97" + "x-envoy-upstream-service-time": "106" }, "ResponseBody": { "documents": [ @@ -121,6 +121,8 @@ } ], "Variables": { - "RandomSeed": "539665015" + "RandomSeed": "539665015", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json index 46026702ec438..94569e6f02642 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json @@ -11,7 +11,7 @@ "Content-Length": "207", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dbfc18ba75782044985cf5bf882b9908-45ed26bbf341da42-00", + "traceparent": "00-ff704f87529c6a4eb95af9a2042005f9-9069e5028366db4d-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3880bf28-66d6-465d-b67d-bd29c3b8fe69", + "apim-request-id": "1bf0332f-171a-4e5c-ba63-4ff043e8e099", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:26 GMT", + "Date": "Mon, 02 Nov 2020 19:19:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-envoy-upstream-service-time": "80" }, "ResponseBody": { "documents": [ @@ -116,6 +116,8 @@ } ], "Variables": { - "RandomSeed": "1934874503" + "RandomSeed": "1934874503", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json index 9ef0397808a13..cab90310dc36b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "207", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-88bfe332479cd248ae922cb244bf59e0-3f501c021bf0684d-00", + "traceparent": "00-6db8b30bc9b20145bb6a67eff46116cb-d553c4f131feb64b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7d57b59f-624b-4e35-b64b-6913e1c5f6e2", + "apim-request-id": "f13d637c-aa70-4778-beaf-11b4a5b896ef", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:28 GMT", + "Date": "Mon, 02 Nov 2020 19:19:16 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": "82" }, "ResponseBody": { "documents": [ @@ -116,6 +116,8 @@ } ], "Variables": { - "RandomSeed": "951483506" + "RandomSeed": "951483506", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json index ace56e83ff7c0..56b0f5d06a466 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json @@ -11,7 +11,7 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0cb77aa128898f45bb4f84732ea87f51-3e2538a1e68f5340-00", + "traceparent": "00-f6c83382e1a2da4abb21e31e3ba647c1-d7cfda9d8529e749-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "6800cc7d-b87f-4836-a532-253be948a72f", + "apim-request-id": "f7e294cf-e0a7-430b-8a3c-998e69815cc2", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:02:26 GMT", + "Date": "Mon, 02 Nov 2020 19:19:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { @@ -51,6 +51,8 @@ } ], "Variables": { - "RandomSeed": "627709314" + "RandomSeed": "627709314", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json index 36a570bb19738..cb0092f774ec2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-07b327e9e00eb740960604077c3427e2-666358091d99ac44-00", + "traceparent": "00-2d1392c263a2c34ab00a28ee11e78bff-1e6e08c5d709ce4d-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "3be0b352-780d-4df7-9c04-ac698d72f72c", + "apim-request-id": "4cf9df69-5ac6-4482-980c-f38d380c4f3c", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:02:28 GMT", + "Date": "Mon, 02 Nov 2020 19:19:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -51,6 +51,8 @@ } ], "Variables": { - "RandomSeed": "1350287540" + "RandomSeed": "1350287540", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json index 5c27db0f726b2..a52072a23030f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json @@ -11,7 +11,7 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a72ed0dbf2639740bc9659ac2ef53bc8-cc1ec9681f6ed54b-00", + "traceparent": "00-becd4269c74b03438d60930cc9393851-f14371019192e44d-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6de92b62-f917-4e42-8d52-95e97906413b", + "apim-request-id": "8fb79b13-8788-4952-8c61-b5d986ffa527", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:02:26 GMT", + "Date": "Mon, 02 Nov 2020 19:19:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -58,6 +58,8 @@ } ], "Variables": { - "RandomSeed": "847855095" + "RandomSeed": "847855095", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json index a4cd1e22af65f..c0de37e270821 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6c6c7a6ab9f39343b16a352a45b329c4-61fbcdd9f843a743-00", + "traceparent": "00-50f07e57da28f24f8e6cee033ade61ef-9b7bff95c88d1148-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a0ee0a52-af95-442f-9f0b-e8543f20de57", + "apim-request-id": "1c4c9990-8e4e-4289-a366-97497248c20a", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:02:28 GMT", + "Date": "Mon, 02 Nov 2020 19:19:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1" + "x-envoy-upstream-service-time": "2" }, "ResponseBody": { "documents": [], @@ -58,6 +58,8 @@ } ], "Variables": { - "RandomSeed": "256924080" + "RandomSeed": "256924080", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json index 74fe514abf43d..55a5bae531dfe 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json @@ -11,7 +11,7 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-41e6cd625340a248a43cbaaf11002177-e0a03cb7d344df4d-00", + "traceparent": "00-cf01c440521d7645b4aaaa605a97cc89-52faf025f3402a48-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,10 +35,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c6b8c9b7-4bbc-4ea6-9305-169aad575812", + "apim-request-id": "c5545df9-5fbc-49a0-b4fb-778f1a93c080", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:26 GMT", + "Date": "Mon, 02 Nov 2020 19:19:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -250,6 +250,8 @@ } ], "Variables": { - "RandomSeed": "1053489488" + "RandomSeed": "1053489488", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json index 1928d197d4df3..fdcec24c6841e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-25c1f28b85be0942aafff34555b0ad23-009330cbf6bf624e-00", + "traceparent": "00-4ee1471ece328543897d902e844b5cab-aec39c2a23125641-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "671b0b4a-c50d-47af-b58a-5a9ab0a2d94c", + "apim-request-id": "c9368c7d-05f7-4745-b262-326e0e868bbf", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:28 GMT", + "Date": "Mon, 02 Nov 2020 19:19:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-envoy-upstream-service-time": "89" }, "ResponseBody": { "documents": [ @@ -250,6 +250,8 @@ } ], "Variables": { - "RandomSeed": "1224561162" + "RandomSeed": "1224561162", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json index 70e10fbebf1f0..8b1242f7371c4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json @@ -11,7 +11,7 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9addc7f606a16f49ae07c68d59479259-e7f47edc49a16942-00", + "traceparent": "00-26e00bf1d9743b4db33704056d854c19-5acb938960572040-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3021b4db-b2a6-45ed-b4b4-2e4d5c6661ab", + "apim-request-id": "81c70bd7-de76-4c58-8b98-68b6a976a945", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:26 GMT", + "Date": "Mon, 02 Nov 2020 19:19:14 GMT", "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": "89" }, "ResponseBody": { "statistics": { @@ -135,6 +135,8 @@ } ], "Variables": { - "RandomSeed": "2080433243" + "RandomSeed": "2080433243", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json index 3bcb87bbac6db..d695a685c70e7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1a744aa1743c014fa60b21d5dddf5a82-ba11a274c46b3c43-00", + "traceparent": "00-45ec29f9499a734e9dc9d8e4feb8791c-cf535364ebac8941-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d4531ae3-11b0-49da-a1f8-5a7dc8272459", + "apim-request-id": "08e98f6b-6caf-45f4-a80c-cef86ea799bf", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:28 GMT", + "Date": "Mon, 02 Nov 2020 19:19:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "109" + "x-envoy-upstream-service-time": "91" }, "ResponseBody": { "statistics": { @@ -135,6 +135,8 @@ } ], "Variables": { - "RandomSeed": "1104601644" + "RandomSeed": "1104601644", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json index 47f688d7aab5c..6f05c59b5ff1e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json @@ -11,7 +11,7 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6777c3a8904a404084a6b685e30bb3f0-516233978a2bf14a-00", + "traceparent": "00-e05fbc786946634cbc8576cbe1829906-27bc02c0df640a46-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dfa93902-f060-4d7f-ab73-79728b8597eb", + "apim-request-id": "895e8d81-ec06-47d0-b47c-6a4673f7a93d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:26 GMT", + "Date": "Mon, 02 Nov 2020 19:19:14 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": "79" }, "ResponseBody": { "documents": [ @@ -71,6 +71,8 @@ } ], "Variables": { - "RandomSeed": "2146668003" + "RandomSeed": "2146668003", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json index 5cc67875a1640..ddd54779d5188 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-108b07d80ce4d443a5a9a17328abdf22-176d21047d332b4c-00", + "traceparent": "00-784a5e38b1213f4fa1e121f4d68113a3-72eab3515c277b48-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9dae5953-9b2f-4109-a88f-f46cda1c2937", + "apim-request-id": "0b5ffac3-1c78-41a2-a05c-58d7e2852eae", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:28 GMT", + "Date": "Mon, 02 Nov 2020 19:19:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "106" + "x-envoy-upstream-service-time": "83" }, "ResponseBody": { "documents": [ @@ -71,6 +71,8 @@ } ], "Variables": { - "RandomSeed": "9060464" + "RandomSeed": "9060464", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json index ffbaa7426dd64..6588286ef0886 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json @@ -11,7 +11,7 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-baa0b7993a2b6e4ca5ed75a3bf200277-fab44efbf8ab664e-00", + "traceparent": "00-833031024c76a442897079adaaf4c384-1fa108f6399c9349-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "946c0a8a-f624-4a32-938f-75b92db8910a", + "apim-request-id": "4b3ea9de-9002-40da-9ea7-4ac0ac2df542", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:26 GMT", + "Date": "Mon, 02 Nov 2020 19:19:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "77" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": { "documents": [ @@ -71,6 +71,8 @@ } ], "Variables": { - "RandomSeed": "673624529" + "RandomSeed": "673624529", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json index ea3ebea884b90..a5e0fa1d5409a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-44653d205225124e83343ac7f10ab67f-84a06d5c3517284a-00", + "traceparent": "00-301d8a17e009b04d882cc1782b3a83da-36e31b4bfc709848-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bcb9b293-30fe-4865-8c11-31bba1b971f8", + "apim-request-id": "3f4c2056-bc5b-42aa-b13b-eff0f8929056", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:28 GMT", + "Date": "Mon, 02 Nov 2020 19:19:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "82" + "x-envoy-upstream-service-time": "85" }, "ResponseBody": { "documents": [ @@ -71,6 +71,8 @@ } ], "Variables": { - "RandomSeed": "486778307" + "RandomSeed": "486778307", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json index 138b4cc39b8a4..dc459f0e89b76 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json @@ -11,7 +11,7 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f1592149eb83964ba505f4fce7ab29de-1d5cd93ab15ab04b-00", + "traceparent": "00-aa31cfe30b2e6a41b9733ed7adedd268-ff188ec426031e48-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d0847dc9-18e3-45aa-9f0b-c10aa819c6a8", + "apim-request-id": "c823d8fa-c515-4fe7-9cc9-c00ea52a4bfb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:26 GMT", + "Date": "Mon, 02 Nov 2020 19:19:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "93" + "x-envoy-upstream-service-time": "100" }, "ResponseBody": { "documents": [ @@ -71,6 +71,8 @@ } ], "Variables": { - "RandomSeed": "735963321" + "RandomSeed": "735963321", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json index 418b1c916b51b..3fcf5a27c9d76 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f94b4ff25cd59940b21145a3c1a65087-cb30362087773045-00", + "traceparent": "00-67f4f126074d3f4fb2e27731a4694c6d-e3b3af0c4c87b347-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,10 +30,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "641e306c-bfad-4675-a9cd-e723209602e1", + "apim-request-id": "8e067542-0812-46da-bd9b-6d2d2bb5b559", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:28 GMT", + "Date": "Mon, 02 Nov 2020 19:19:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -71,6 +71,8 @@ } ], "Variables": { - "RandomSeed": "1305725402" + "RandomSeed": "1305725402", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json index d40ada054cfd4..acc375011f7ad 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json @@ -11,7 +11,7 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-19358be35880444293fda520e01757eb-1c450af3d444984e-00", + "traceparent": "00-d4949e2ac80fa949b710c8599cc5489e-dd2e807c9f34ab49-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "28a0d143-eaab-4d08-932e-97abc2ad837b", + "apim-request-id": "e6011922-f138-4967-b75b-fcd9c51ee3d4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:26 GMT", + "Date": "Mon, 02 Nov 2020 19:19:14 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": "96" }, "ResponseBody": { "documents": [ @@ -71,6 +71,8 @@ } ], "Variables": { - "RandomSeed": "137641087" + "RandomSeed": "137641087", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json index 90cb49564b63c..d8c4317f0a57d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4f9f8a06d612824e8d4729db7f52548b-2d5faf8f759a5f47-00", + "traceparent": "00-d72e6ee89b431a42a1629994628f9b7f-d20082833498c849-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1d3ab207-fccb-49f1-9b93-46030e038388", + "apim-request-id": "09e915e1-a628-46c0-8475-b3cd0822958f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:28 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 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": "98" }, "ResponseBody": { "documents": [ @@ -71,6 +71,8 @@ } ], "Variables": { - "RandomSeed": "537807865" + "RandomSeed": "537807865", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json index c1cd125596123..7f69f2a647e07 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json @@ -11,7 +11,7 @@ "Content-Length": "127", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d3f080ca87796e4d8c208d1578a94a94-b3c6add92835b143-00", + "traceparent": "00-b8b35c1ec201fd46b2361e87e3a2ede5-9cddd11df8e65e45-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7ad27593-5317-4758-984e-ab5db900b585", + "apim-request-id": "74d6bc71-c601-490f-a74c-87275bad9ca7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:27 GMT", + "Date": "Mon, 02 Nov 2020 19:19:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "96" + "x-envoy-upstream-service-time": "85" }, "ResponseBody": { "documents": [ @@ -175,6 +175,8 @@ } ], "Variables": { - "RandomSeed": "4400155" + "RandomSeed": "4400155", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json index b5b9a58c39613..41c96b1aec6b4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json @@ -11,7 +11,7 @@ "Content-Length": "127", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6e67b51b1e4af2459a5dd8e512efb659-154e81ff3e619c48-00", + "traceparent": "00-4f0a67d3b4bbb24db87273a0d9cc7bb0-806940f56201fe4b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c29f8a4b-500a-4469-b58f-a1f25943df96", + "apim-request-id": "b822b85c-5eab-45cb-8578-8b7ef60e575b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 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": "79" }, "ResponseBody": { "documents": [ @@ -175,6 +175,8 @@ } ], "Variables": { - "RandomSeed": "1364359232" + "RandomSeed": "1364359232", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json index 7a52d9afaf90e..a552196560a5f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json @@ -11,7 +11,7 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-caa638476e296144b915a5c444a529e7-7d3d5fb8ea0ef14e-00", + "traceparent": "00-8ef6e1c8e4b4bf4cb71ed3f62b4ad989-9cfd2b1eb57e164f-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4ea9b03e-6fc1-4e3c-a5c2-a98a7d7cf207", + "apim-request-id": "35ab8056-23a5-4a87-a1ca-32c0c5fc3dd3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:27 GMT", + "Date": "Mon, 02 Nov 2020 19:19:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-envoy-upstream-service-time": "78" }, "ResponseBody": { "documents": [ @@ -73,6 +73,8 @@ } ], "Variables": { - "RandomSeed": "1727170942" + "RandomSeed": "1727170942", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json index bedd49d9b08ce..f924f1259e678 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json @@ -11,7 +11,7 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3721d8177d2b7f4191415dc7ad0eda15-02a71ca41a69b14c-00", + "traceparent": "00-62212f898392fa4fa38fe00ae08862c0-25e0c3ef84dcae44-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2527bb82-0635-4dce-88b2-874dd89dd403", + "apim-request-id": "942ef9f3-019c-4929-a3ef-46e423964dbd", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "80" + "x-envoy-upstream-service-time": "82" }, "ResponseBody": { "documents": [ @@ -73,6 +73,8 @@ } ], "Variables": { - "RandomSeed": "167361615" + "RandomSeed": "167361615", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json index 3156a2eb3e997..548e6a8dc2668 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json @@ -11,7 +11,7 @@ "Content-Length": "80", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4ff2fa518cfa754c89078e3f1bd77239-a7b5992b1c360c4c-00", + "traceparent": "00-574a6db44ca5da4e93485da5c3d83815-de77998acd295c47-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ed09b4c7-bc41-42e6-bf8c-6418f57e5d4e", + "apim-request-id": "c23f30d3-b446-4705-921f-d36c38396b2c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:27 GMT", + "Date": "Mon, 02 Nov 2020 19:19:15 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": "81" }, "ResponseBody": { "documents": [ @@ -102,6 +102,8 @@ } ], "Variables": { - "RandomSeed": "825040414" + "RandomSeed": "825040414", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json index 85a98a34aa815..446b6ca8d9fc3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json @@ -11,7 +11,7 @@ "Content-Length": "80", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9dfdcdd96e7de94496b968ee7c80f2f9-b0adf4c1ecb75545-00", + "traceparent": "00-71e9cc4868bf1e49a6c72a12be38ce48-573568fd8de8354f-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d0bb1b23-f66c-40b7-95ee-3c925d8b2fe3", + "apim-request-id": "af41370d-5a3c-4121-ae8c-143646cc3377", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-envoy-upstream-service-time": "78" }, "ResponseBody": { "documents": [ @@ -102,6 +102,8 @@ } ], "Variables": { - "RandomSeed": "1263606711" + "RandomSeed": "1263606711", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json index 2d757d6075c86..7464adb5af78a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json @@ -11,7 +11,7 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b6e2e4d6cca4194aae7267a17518810c-8562da08cba69f4b-00", + "traceparent": "00-ee3347fedcc5e343bd8170f7211c1b8d-a79dc0bf9f6c7740-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0b415dbe-b5ee-47e4-a132-e43a67e86a61", + "apim-request-id": "402f919c-2a9d-4197-98be-e5cec950e347", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 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": "6" }, "ResponseBody": { "documents": [ @@ -85,6 +85,8 @@ } ], "Variables": { - "RandomSeed": "2925177" + "RandomSeed": "2925177", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json index b8acd0bd9c9b0..4d549e9c05424 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-93ab2c3a4fa17a4d9597030d3e149336-da394f061738db41-00", + "traceparent": "00-35458d7d34d39c43be450a0532880079-d44ed236edd2d042-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "de731d28-4c0c-4c38-b5d7-09d67f387144", + "apim-request-id": "56a74ac2-7d25-4f46-8869-61af8a54c2b8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "documents": [ @@ -85,6 +85,8 @@ } ], "Variables": { - "RandomSeed": "1287375904" + "RandomSeed": "1287375904", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json index 0baf8237a9e00..5f7f8c19254d3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json @@ -11,7 +11,7 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7f24618b6c0d464b96ee329db85f09c8-afb01bd9bd3a9942-00", + "traceparent": "00-23a204e35604174aa8d15a9e62f8e53d-7b001d42e7726b42-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "de5bd9df-912b-4ca0-8d09-c4326c4436dd", + "apim-request-id": "c4e57ca9-a4e2-41c5-a8f0-abfae348dab3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "statistics": { @@ -103,6 +103,8 @@ } ], "Variables": { - "RandomSeed": "211607003" + "RandomSeed": "211607003", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json index 6d373bfdb470e..1c78555c878ac 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b50e506a20eff341a5c81f7f1ffba02c-722457b5a0aa6143-00", + "traceparent": "00-8671c2bfcf971b4caedaf27b18cf1e26-97a3b72a6972ea42-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e3eba3be-9808-47ce-80f1-a6c4b90cb35a", + "apim-request-id": "53b0e2b9-48df-4dd3-a3e1-5e80a2b27df2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "statistics": { @@ -103,6 +103,8 @@ } ], "Variables": { - "RandomSeed": "293475495" + "RandomSeed": "293475495", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json index 01a31566684cb..cd2a8b7815c94 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json @@ -11,7 +11,7 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f6e9837b0ad30d4da7482ea5ca6799b3-6745edc5d4686847-00", + "traceparent": "00-e8c9d70258528e469bf59a516f43ad24-dcfd7856e4971f4b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -45,14 +45,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "69efd14b-ee4c-4085-a308-1cab9ea42128", + "apim-request-id": "6b2a80e2-5b48-4be3-ab54-5caf10ecab6e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "documents": [ @@ -99,6 +99,8 @@ } ], "Variables": { - "RandomSeed": "1725013070" + "RandomSeed": "1725013070", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json index 98838d3f1e9ce..1949f1f5cd572 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f5ac0147fc05e542a64edd5f2bae24f7-65e12416e717c44f-00", + "traceparent": "00-36b4fb24907b91469cf386ae4712c7a7-dab7ed16348ec647-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -45,10 +45,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0365bbd5-9b56-4ea7-8543-f3f2da62f12e", + "apim-request-id": "161fc87c-b020-4660-a3f4-c59cd7905e51", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -99,6 +99,8 @@ } ], "Variables": { - "RandomSeed": "1564753879" + "RandomSeed": "1564753879", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json index 263bb2ae02544..511148f42a987 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json @@ -11,7 +11,7 @@ "Content-Length": "156", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f0a91908c17b954c93d6577c946804d2-74e3fbd3acf08641-00", + "traceparent": "00-cb4ca169046b534d874246e15099858b-8656057c6f0ae644-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5d77ee48-9b8e-4742-8be4-89e4fc726482", + "apim-request-id": "f1b666ef-e29a-4829-9363-80463ad07239", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 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": "6" }, "ResponseBody": { "documents": [ @@ -88,6 +88,8 @@ } ], "Variables": { - "RandomSeed": "1998787501" + "RandomSeed": "1998787501", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json index f14bd51b6f641..81f98dcd7248f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "156", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3ffa905307195e4182a92846246732da-313ff75eb4b39c49-00", + "traceparent": "00-8101db3cac66fa43b8e57e3d1811b019-76e8da40dc473646-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d3bd22bf-fa99-4c85-8797-ca6d0aa1ba7a", + "apim-request-id": "2752bdbb-a5a2-44cf-929b-10cf264e7758", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 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": "6" }, "ResponseBody": { "documents": [ @@ -88,6 +88,8 @@ } ], "Variables": { - "RandomSeed": "1902435763" + "RandomSeed": "1902435763", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json index e3b96fa96332d..d53e7057db6a4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json @@ -11,7 +11,7 @@ "Content-Length": "67", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-25bf2237fd636945a594c96600b3d189-8a82f1d282e45740-00", + "traceparent": "00-12e81061a566a3488ca1d65f8bcabec4-19e350139076f446-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "96d3b194-cc8e-42a2-bb12-433f16811845", + "apim-request-id": "004b9b6b-7e89-48a1-8bcd-524d3b9d9520", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { @@ -51,6 +51,8 @@ } ], "Variables": { - "RandomSeed": "1842668100" + "RandomSeed": "1842668100", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json index ce1ae958e9080..253f57a368544 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "67", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f7c842cf7e614a40b1a885320f8dbb75-07b37c141cbb294b-00", + "traceparent": "00-737a7466d1db4042ab8761f83c5d3797-18ef4e158a519e4a-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "bb189336-01ce-479b-99a9-0387da783a63", + "apim-request-id": "5422c14f-f9fa-43d4-aee9-feca5e060e6e", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -51,6 +51,8 @@ } ], "Variables": { - "RandomSeed": "1421275547" + "RandomSeed": "1421275547", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json index ff33cbbd29df5..58be9e726cb08 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json @@ -11,7 +11,7 @@ "Content-Length": "57", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b0bb6cd43ca8d340a30d802af67de439-857f63ecf9b16547-00", + "traceparent": "00-9bf40520ebb5b14ab285f2ff88b2a316-7a71319f531f7d4d-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "081bc319-a343-43d2-a73f-0040f701278b", + "apim-request-id": "40e194c5-0f69-4d64-9699-bffda48f7e34", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -58,6 +58,8 @@ } ], "Variables": { - "RandomSeed": "1472278800" + "RandomSeed": "1472278800", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json index 9a8e0247d9448..45967a517beef 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "57", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a5e5accdaaffb04b91faad87d0aab6c4-eeb9a5a793e1584c-00", + "traceparent": "00-600d429371dafe48a4a8d0e03b0f5171-7f8bd81baa77b14e-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f39ffdac-9ece-47b4-ad93-8d1b56f6adf0", + "apim-request-id": "5a7f6205-6ee6-4099-af36-560505ed124b", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -58,6 +58,8 @@ } ], "Variables": { - "RandomSeed": "1379897499" + "RandomSeed": "1379897499", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json index 330fdeceea8cc..c3c7733c8fc77 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json @@ -11,7 +11,7 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-679ab2f760bf4e4d943f2be27cb00454-fdd4ae9991219841-00", + "traceparent": "00-ed07ff72e70dfd45b9b9709a43620283-3020074137045648-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -45,10 +45,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3a4dde20-5521-4807-9264-a46cd0fb2712", + "apim-request-id": "4cc765fb-6ee3-4aee-b8bc-a1f3129ac600", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -121,6 +121,8 @@ } ], "Variables": { - "RandomSeed": "1441514523" + "RandomSeed": "1441514523", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json index 5d87cf537d041..506a8b7e2beee 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2980bd7e159caf47b2ae57616b6c435e-b5f4b054ffaf4e47-00", + "traceparent": "00-9841edda9a5d6d4ba290f34f50480784-ed876d3023441547-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -45,10 +45,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "31dcec30-2b56-40b1-9a9e-3c8e1c3c34b4", + "apim-request-id": "eeba82ba-833d-4bc2-a694-4c56ae2da861", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -121,6 +121,8 @@ } ], "Variables": { - "RandomSeed": "1925146009" + "RandomSeed": "1925146009", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json index 3966a0a71a23c..26f6c9cae2100 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json @@ -11,7 +11,7 @@ "Content-Length": "82", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ac71a282628fdb4a824bca09a38a719d-363d9ee4c3d4fe4c-00", + "traceparent": "00-a5fcf4035cf21e4e8f028f6ba31a4736-4cc7e1c915fa2948-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4073f142-afbd-420d-a960-882d05748eed", + "apim-request-id": "3c800ee5-b23f-47af-b6c8-70508e10680f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 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": "5" }, "ResponseBody": { "documents": [ @@ -57,6 +57,8 @@ } ], "Variables": { - "RandomSeed": "1945127661" + "RandomSeed": "1945127661", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json index 6e816786bab71..7aa915c24e8b5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "82", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-118f2ebd294830468c1911f9c89f1256-f92c56b4f0a4074d-00", + "traceparent": "00-cb996c146dfa954a9ebabcee67221832-25c0b68ba6b6d24a-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,10 +30,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "01b7f012-dbbc-47d7-8faf-fc0a212c2714", + "apim-request-id": "6bd3427d-64ef-4b07-96de-06af28c9864a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -57,6 +57,8 @@ } ], "Variables": { - "RandomSeed": "2124897013" + "RandomSeed": "2124897013", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json index 9f8628087f8c1..f62e6882698e9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json @@ -11,7 +11,7 @@ "Content-Length": "95", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d44c20309e4f1443944bc019b87f9afa-d3bd090adbb3b448-00", + "traceparent": "00-e586c93ecaa77b41861211406b1a6d17-9254eec4cc09254e-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dd05baf9-fb35-4900-b289-f3e032cada3f", + "apim-request-id": "46b073cf-6c5b-460a-8da8-8b62ef1281dc", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 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": "6" }, "ResponseBody": { "documents": [ @@ -57,6 +57,8 @@ } ], "Variables": { - "RandomSeed": "1745096315" + "RandomSeed": "1745096315", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json index 48cd1766fdda3..0114c7ba5f46c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "95", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9e0de86d69532c42ad7e6b4f843551d0-068137498781c540-00", + "traceparent": "00-bf0a9467b60c8548ac49c42850cf7591-a8e948bc914db247-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e23fbeff-4659-4923-a992-b73363deab6f", + "apim-request-id": "f674f17e-f35b-40c1-8e40-b13f3c93f628", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 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": "5" }, "ResponseBody": { "documents": [ @@ -57,6 +57,8 @@ } ], "Variables": { - "RandomSeed": "2142485753" + "RandomSeed": "2142485753", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json index 887b06e59c140..4b36f4223bc64 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json @@ -11,7 +11,7 @@ "Content-Length": "101", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a20b9b8052d83a48872f6a25d2f98fdd-29c96062b035674c-00", + "traceparent": "00-fb62db1c13d7fe41afb0c123be4da710-5dbd79fc61915d46-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "66093d1f-dc95-42ba-81fe-75726c67f01b", + "apim-request-id": "1af15c23-0a96-4a24-91be-f27afe7f7bae", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -58,6 +58,8 @@ } ], "Variables": { - "RandomSeed": "467349083" + "RandomSeed": "467349083", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json index ab79c2c95bb3b..9ea500ffecd4a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "101", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-704d3782a2b74b418507c7b959928955-9bbf416388026742-00", + "traceparent": "00-9591dae16fbd9f48bf7b6cdc3b13e96c-daa579a3abfbb449-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6f9a0d03-64ea-4109-bb54-b7971f72cd8f", + "apim-request-id": "b6e2d8a1-475e-4563-b86f-db32c24b7fae", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1" + "x-envoy-upstream-service-time": "2" }, "ResponseBody": { "documents": [], @@ -58,6 +58,8 @@ } ], "Variables": { - "RandomSeed": "1987537636" + "RandomSeed": "1987537636", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json index 8beb1437ae9c1..9a6960426234d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json @@ -11,7 +11,7 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b609d71bdbec4d4b96b40c376cc79ec8-d795438c0ef8624b-00", + "traceparent": "00-30fffcf98199d74f93361d7edb85c11e-a82352584f42c645-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,10 +30,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e0f8f166-8f71-4ead-b212-fadbfc2321b3", + "apim-request-id": "367652c3-ef02-42e7-ad4e-6c79688f2422", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -57,6 +57,8 @@ } ], "Variables": { - "RandomSeed": "1940049365" + "RandomSeed": "1940049365", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json index d7a5e2b4fc03e..bb4c329607fdd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5cba2a64ce81ca4f88b9a3f4bbad751e-3c796b375ee4c74a-00", + "traceparent": "00-d97d67053ee6ed4987784db8d6e9487f-ab1f8e75d3a42045-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,10 +30,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5bd61590-e1d5-491b-90d3-c7d051a30641", + "apim-request-id": "d811e21f-3696-4059-bb8e-980e84a83188", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -57,6 +57,8 @@ } ], "Variables": { - "RandomSeed": "1328135102" + "RandomSeed": "1328135102", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json index cdaefa2c93262..b3ad7f2941dd0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json @@ -11,7 +11,7 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d82548c0616d7644b7fd1bbf688deb10-60b3120f55e2f94c-00", + "traceparent": "00-dca406232a37a64cad3d24f226732495-8b09ba8bd0192a4f-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "61dce5b5-286f-4bb7-93fb-b9dd1887c373", + "apim-request-id": "b479582b-2f26-404a-a740-4798b3ae200c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "documents": [ @@ -57,6 +57,8 @@ } ], "Variables": { - "RandomSeed": "397710028" + "RandomSeed": "397710028", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json index 74c35e1ace7a6..d2cb03ba2cd08 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cdbc6792187e3549a1834864c6babe94-8516bb00eed3b142-00", + "traceparent": "00-274fd07add5cf34d97fba700d419e71e-b6d36a8e1b833c4b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,10 +30,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6792a381-ccb4-4f48-9f77-2446e5d2b45b", + "apim-request-id": "84685aff-9217-45d5-a9fd-d6e90faf8808", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -57,6 +57,8 @@ } ], "Variables": { - "RandomSeed": "691922193" + "RandomSeed": "691922193", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json index e94659f3e2067..1d17f6f5ce862 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json @@ -11,7 +11,7 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-15cf9a4befa49847903f88c19fcbf00c-890336c0753b0349-00", + "traceparent": "00-2d52d2c67fdc864dab4eb4f76dd805eb-de2ea74dcdb2ea4b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0ec384f5-7ec8-4b16-a034-3ffb986ff9a4", + "apim-request-id": "9be90bdd-1aaa-49f8-952e-8bdd72120837", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ @@ -71,6 +71,8 @@ } ], "Variables": { - "RandomSeed": "2011102001" + "RandomSeed": "2011102001", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json index 3dd152334c0a2..86855005fdb2e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-467a2ee499295b469916ecb4d40ef2b9-cae0696bfc11d14c-00", + "traceparent": "00-0603a4c030235f48a4ab15e038486f3f-a53165b05c1bd241-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5e3164d9-b5cc-4edd-9909-ee3787e8a6b0", + "apim-request-id": "1c86549d-80a6-4c89-8c53-3d63c0cd6466", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:18 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": "10" }, "ResponseBody": { "documents": [ @@ -71,6 +71,8 @@ } ], "Variables": { - "RandomSeed": "1790351005" + "RandomSeed": "1790351005", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json index 492d66a5dd803..b34f8d6e0b25b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json @@ -11,7 +11,7 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-57a480d0306c7c45b6ac7a9485647b53-0fab15b59c80e041-00", + "traceparent": "00-e357a42a8508c94a8a52cac47faf6f88-48e09385eb76d14c-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,10 +35,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "49215c23-8e96-408a-a0b5-90aea1285517", + "apim-request-id": "9cb63bc7-94b6-4be3-9153-74f2e5947436", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -85,6 +85,8 @@ } ], "Variables": { - "RandomSeed": "1074286074" + "RandomSeed": "1074286074", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json index eba7ba8c1fd2d..fd80785052c7a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a055f0a21dea9b4f9baf08b7727fbf76-26e73bd9a7d66244-00", + "traceparent": "00-d68dbdd6e58d0247aeb173d14999df54-c9454eb9bd4b8c43-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f6085b7d-359c-472c-b32e-8d0ed3fa0576", + "apim-request-id": "cc702015-4555-4a8d-816e-ca65b0bcbf7f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:18 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": "11" }, "ResponseBody": { "statistics": { @@ -85,6 +85,8 @@ } ], "Variables": { - "RandomSeed": "1602869274" + "RandomSeed": "1602869274", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json index e507bb1893cf6..20b6d3d7416cc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json @@ -11,7 +11,7 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5d42c2cb10928a47a2a00fda48c4ce51-a982898eba4eed4e-00", + "traceparent": "00-6e6094cf8f3b5a4380dadeb700b8052b-2328b77a344a7047-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "13a06062-387c-4598-bfe7-032ebbea38d2", + "apim-request-id": "fccb764a-51e3-404a-9c6f-ba3c6a07b435", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:18 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": "9" }, "ResponseBody": { "documents": [ @@ -71,6 +71,8 @@ } ], "Variables": { - "RandomSeed": "979539460" + "RandomSeed": "979539460", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json index 482ebec59d67c..054a49cb2aa37 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9a22e6a9e8e3804685a1701a41c4aa22-055697c33117a448-00", + "traceparent": "00-4db57b5803700246b4257246bc9f2b89-2587b7bc1a2ab74d-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7357d9f5-3ce1-46e7-9f19-d88e37181042", + "apim-request-id": "e49dd69b-4ea9-46db-a4af-2297d147f06e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:18 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": { "documents": [ @@ -71,6 +71,8 @@ } ], "Variables": { - "RandomSeed": "349892618" + "RandomSeed": "349892618", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json index e17f32be260bb..4a2db17cac160 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json @@ -11,7 +11,7 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dad81f9df6d49e49b049a9dbd699f9fc-fe37c51a17ae4948-00", + "traceparent": "00-7335353c7323ad4ca11ef4f2f8746b38-5a81ebd80d18d24f-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1fa620f1-5b9e-4f26-bb8c-ab418e3ad085", + "apim-request-id": "07444c1f-7e1f-4376-a6c8-c917b6c742e9", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:18 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": { "documents": [ @@ -87,6 +87,8 @@ } ], "Variables": { - "RandomSeed": "1310930461" + "RandomSeed": "1310930461", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json index 61850dc1598c0..7ceffa9d3f937 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-669e2438a3070948a7d4e3a2dff20d40-32921b37f991bd40-00", + "traceparent": "00-bee2896fb9d0ed49a80d6d634487a015-c7dbfecf43e87443-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1ad562c9-5680-42c1-b918-dd4a5d373976", + "apim-request-id": "2fea8301-527f-47a6-bd82-874a6f68bfcb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:18 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": { "documents": [ @@ -87,6 +87,8 @@ } ], "Variables": { - "RandomSeed": "2016817382" + "RandomSeed": "2016817382", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json index ca67fed847859..97687bee2e7e8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json @@ -11,7 +11,7 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d712ea26ace87c4f95ad7197434c883d-1b5f5b7bd2d13f48-00", + "traceparent": "00-95cd440fa6b2ea4b826b2e55ffeb4e99-d370740f74240042-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "feb36ac8-0d6d-4a25-a3ee-285f32fc140b", + "apim-request-id": "74a2e41c-6142-406e-ba31-8d15c130befb", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "error": { @@ -51,6 +51,8 @@ } ], "Variables": { - "RandomSeed": "39669393" + "RandomSeed": "39669393", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json index c2625ad498db5..3b78b137ace84 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bb8ace294d710b4cb0db6b62dfc51c45-d50f6c993391bb45-00", + "traceparent": "00-c79a596379a14b41ad95ac50c37668b6-161b32ac4c732044-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "266def5c-8b88-4027-bc43-947ee0696a20", + "apim-request-id": "3df6203b-23af-4168-afdc-fd527e1cc5fd", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -51,6 +51,8 @@ } ], "Variables": { - "RandomSeed": "356416899" + "RandomSeed": "356416899", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json index dab6a0701c52e..bfb1e27076353 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json @@ -11,7 +11,7 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-72358065d9ca0345a47344dd54bcf393-6b304b5faceb094e-00", + "traceparent": "00-a44997274f5c164eaf9152da03a18c7d-b17338106766bc43-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "09485ec7-e96a-47de-baa2-c8eb13423ea5", + "apim-request-id": "62f0c6b1-e03e-40db-8677-3aba0cc24efa", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1" + "x-envoy-upstream-service-time": "2" }, "ResponseBody": { "documents": [], @@ -58,6 +58,8 @@ } ], "Variables": { - "RandomSeed": "593241093" + "RandomSeed": "593241093", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json index f6628b80ede18..40a9a2540c9d1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d3f122acbb54344fa5c411da8bdfb149-0e624aa7d0dfe04a-00", + "traceparent": "00-e54bb578b49bd0448751bba10cea9ac7-6c42fd490e90ad44-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "34279a98-51b7-4b8f-a635-60f77af8048b", + "apim-request-id": "21f17f0c-a22b-4397-a8db-a5c7a37ad532", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -58,6 +58,8 @@ } ], "Variables": { - "RandomSeed": "872837413" + "RandomSeed": "872837413", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json index ab1ce1bb32afc..61e06bf3efe86 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json @@ -11,7 +11,7 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1ff81904e50fb14cb685c35b0f8b7530-3a00cc8a089c1948-00", + "traceparent": "00-94fbb36ef98b8549912f7ee3b679f5b1-2641079766061648-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "90d693a9-da5a-4ce0-986d-57ce48b31bf1", + "apim-request-id": "45393e49-358c-4689-89f1-372486a34bd9", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:18 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": "9" }, "ResponseBody": { "statistics": { @@ -85,6 +85,8 @@ } ], "Variables": { - "RandomSeed": "1134123605" + "RandomSeed": "1134123605", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json index 0abc9920df0c1..879b9934612a7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0913c581520cb045a9359df168065ded-60e0ff88f0baee4e-00", + "traceparent": "00-a339aae356e9504a800a1583ed3954f1-d6d7db60f9eb144a-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f2a6fe58-fcd0-4e05-b9c2-141207ef10c8", + "apim-request-id": "437cc2b2-e419-4f3d-a9de-abf3e0ce5fed", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:18 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": { "statistics": { @@ -85,6 +85,8 @@ } ], "Variables": { - "RandomSeed": "1658669752" + "RandomSeed": "1658669752", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json index 636086513c3ce..88eda45688c71 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json @@ -11,7 +11,7 @@ "Content-Length": "92", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8e5c8b64994c8643a8bc3bc23ae4f5fa-fa9ddb4fe469ff48-00", + "traceparent": "00-bacd2c29d374bb4299fe868b6b276b6a-56776714c7d25947-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,10 +30,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "397d7de8-1641-4456-af41-54e213fdfabe", + "apim-request-id": "2ca6ef90-15eb-42da-8d17-99daf9af9350", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -56,6 +56,8 @@ } ], "Variables": { - "RandomSeed": "4209270" + "RandomSeed": "4209270", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json index 15d20b3fee16f..435ce6ea82034 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "92", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-36432828e2b82b4d9fb408636ba12ea2-c9f89cb2df2aab4a-00", + "traceparent": "00-3735bf589f57994db996e5b765bbb3d8-d375011629dde741-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f40c1174-a019-4cee-b559-2c31413a5244", + "apim-request-id": "03efd4ff-5faf-4cd9-bbbe-e3dc1e71d98d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:18 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": { "documents": [ @@ -56,6 +56,8 @@ } ], "Variables": { - "RandomSeed": "1076673025" + "RandomSeed": "1076673025", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json index 287427cc647eb..14a105c48a39b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json @@ -11,7 +11,7 @@ "Content-Length": "88", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c0fc75e7b030cb429fb83a5d4ca5d237-491adc7aae0d054f-00", + "traceparent": "00-b82441a9375b5d4d9871324275409c54-120421286b78f344-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e5e62bce-9141-4c31-aff6-a6cd7fc9cb27", + "apim-request-id": "c440acff-affd-416b-8f08-a8c810b74fa5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ @@ -56,6 +56,8 @@ } ], "Variables": { - "RandomSeed": "462050848" + "RandomSeed": "462050848", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json index c1bde4c8ecd8c..e62460286a6de 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "88", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ac8db5c5378e664c8d55fcdf64cc0fac-ddb5f052284e1746-00", + "traceparent": "00-424859f0cdabf4429718c9de0e83ae81-c64976c3a96d2548-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ff91d2c6-8b9c-411b-915d-e10e8a7d4607", + "apim-request-id": "4d8442d5-acd2-4df4-846a-9d0163e91777", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:30 GMT", + "Date": "Mon, 02 Nov 2020 19:19:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ @@ -56,6 +56,8 @@ } ], "Variables": { - "RandomSeed": "1676133981" + "RandomSeed": "1676133981", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json index 35d2a5c51ae53..b96e9a070cd51 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json @@ -11,7 +11,7 @@ "Content-Length": "180", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-05bde98016e39f4a8555fbccb4c45155-4dd83ceeb74f4840-00", + "traceparent": "00-e6d748d73d6565409496f6f5c9cf930a-1d9745362a3b424a-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "01ac5e5d-5542-41bd-abce-c6783c058a3b", + "apim-request-id": "7e4ef89e-3094-4f3e-bc40-95b137db2330", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:29 GMT", + "Date": "Mon, 02 Nov 2020 19:19:18 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": "9" }, "ResponseBody": { "documents": [ @@ -62,6 +62,8 @@ } ], "Variables": { - "RandomSeed": "591698428" + "RandomSeed": "591698428", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json index 886139e1cfdc8..0dafbc61f7e35 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "180", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d26e9273af55674c8f6bbdba48b6981a-7ec3d0091cd3f649-00", + "traceparent": "00-afee051da9e00a499e98c9582b784096-c529c01b29b9da4b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "25887a14-035f-4a85-965c-249f4b981272", + "apim-request-id": "379b5c23-b831-4a44-9225-4519f885ca6b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:30 GMT", + "Date": "Mon, 02 Nov 2020 19:19:18 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": "8" }, "ResponseBody": { "documents": [ @@ -62,6 +62,8 @@ } ], "Variables": { - "RandomSeed": "1154109326" + "RandomSeed": "1154109326", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json index ce4f02c05bdf5..f4222e91699eb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json @@ -11,7 +11,7 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bad5a2e2c477c540a57261248ba32196-e9dea9f8d711664c-00", + "traceparent": "00-4091625a68ab434ebd13a3546b54fead-965d3372b589004b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9bd1ddfa-663b-4dcc-9991-fd2898116941", + "apim-request-id": "7e1a4a06-2595-49e7-a01e-a22fd51a6665", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:30 GMT", + "Date": "Mon, 02 Nov 2020 19:19:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "138" + "x-envoy-upstream-service-time": "111" }, "ResponseBody": { "documents": [ @@ -93,6 +93,8 @@ } ], "Variables": { - "RandomSeed": "1057805335" + "RandomSeed": "1057805335", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json index d3f9d9b54a8b0..e320dad1f0996 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-013963afc25b8348b6b6a335c0a3ac11-f972ab65d6a20542-00", + "traceparent": "00-33697f6a719f5446ae731d5cacdf6568-d5d95fe0f6a4e748-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "89d3d9c8-a265-450c-9abf-256f418119b4", + "apim-request-id": "10993d11-0af9-4e15-a803-02be534cdcee", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:31 GMT", + "Date": "Mon, 02 Nov 2020 19:19:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "105" + "x-envoy-upstream-service-time": "97" }, "ResponseBody": { "documents": [ @@ -93,6 +93,8 @@ } ], "Variables": { - "RandomSeed": "581345388" + "RandomSeed": "581345388", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json index 427af666cbd95..03b62a7cd25cd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json @@ -11,7 +11,7 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7d61aafc579a354ba49df72a2700c185-5ab96678408dfe49-00", + "traceparent": "00-3498823c925e644eb6032853f46e7c3d-264c27873842e744-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b9b6da13-5ee9-497c-a967-4bd514ab6f6c", + "apim-request-id": "415119f8-a468-4022-ad64-91cdf4d899aa", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:30 GMT", + "Date": "Mon, 02 Nov 2020 19:19:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "139" + "x-envoy-upstream-service-time": "122" }, "ResponseBody": { "statistics": { @@ -107,6 +107,8 @@ } ], "Variables": { - "RandomSeed": "706252555" + "RandomSeed": "706252555", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json index 8e2125fc9b1d1..1fcd25328ec56 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a123bbbebb4fa042bd108a73882a9a2c-f05d24ddd84a2b46-00", + "traceparent": "00-914eaeb6293f4a4d8e204999f883fbc8-ba53c014cf809d43-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "896184ce-de62-4d4f-8766-a550e4bf1537", + "apim-request-id": "79c5018f-057f-4fac-a700-4ff912be3959", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:31 GMT", + "Date": "Mon, 02 Nov 2020 19:19:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "115" + "x-envoy-upstream-service-time": "109" }, "ResponseBody": { "statistics": { @@ -107,6 +107,8 @@ } ], "Variables": { - "RandomSeed": "915085791" + "RandomSeed": "915085791", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json index f84245f2d6589..a8aeb80f725a9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json @@ -11,7 +11,7 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1e651eefa45c1345b5fa82087966baaa-66b86169d930e141-00", + "traceparent": "00-c87fa34708a9c448b1cc941d633fda17-74a39ad584389e4f-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9ea9166d-2072-463f-964d-d30c3ba8747d", + "apim-request-id": "74da8e56-7c9e-409e-b5c8-bb97cde7a772", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:30 GMT", + "Date": "Mon, 02 Nov 2020 19:19:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "152" + "x-envoy-upstream-service-time": "137" }, "ResponseBody": { "documents": [ @@ -109,6 +109,8 @@ } ], "Variables": { - "RandomSeed": "1116565065" + "RandomSeed": "1116565065", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json index aebd0c4897b4c..c02b6037d358e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-188d40659e493140a5f8501c0e32e290-75e7d10330015743-00", + "traceparent": "00-a192960ea053c04cba6d59bb8f06daab-0d3519f7c15c0347-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9dc984d2-6a7e-4ba2-8b26-50881c2ac76d", + "apim-request-id": "e6754782-ecab-4afb-beb3-e649174ce524", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:31 GMT", + "Date": "Mon, 02 Nov 2020 19:19:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "151" + "x-envoy-upstream-service-time": "129" }, "ResponseBody": { "documents": [ @@ -109,6 +109,8 @@ } ], "Variables": { - "RandomSeed": "1159498521" + "RandomSeed": "1159498521", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json index 43a03b9d57693..a1e3e919fe2f4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json @@ -11,7 +11,7 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d8700b78bfa543469f94ccee1ed29d1e-016de0893438d94d-00", + "traceparent": "00-ab6af235d7377f4cbd01392e3a702806-475d5bb867a9754b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f1286513-23ce-4d9c-a1da-2544b5c86af9", + "apim-request-id": "dddc047e-e9db-4cbe-b38a-579026a10bba", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:30 GMT", + "Date": "Mon, 02 Nov 2020 19:19:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "141" + "x-envoy-upstream-service-time": "100" }, "ResponseBody": { "documents": [ @@ -110,6 +110,8 @@ } ], "Variables": { - "RandomSeed": "756961484" + "RandomSeed": "756961484", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json index 6e5c6063ba2cd..7b3ba69edb094 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b3e381fec2455a448631fa7a1a937461-0ecc3adc838a3048-00", + "traceparent": "00-9c513462c108584195eed39933678422-156090e79c476a4d-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "68210346-35f8-4650-8366-5fb29a413787", + "apim-request-id": "cd48bf94-bb89-47f3-bb22-4369a143d7bb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:31 GMT", + "Date": "Mon, 02 Nov 2020 19:19:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "104" + "x-envoy-upstream-service-time": "103" }, "ResponseBody": { "documents": [ @@ -110,6 +110,8 @@ } ], "Variables": { - "RandomSeed": "2014309095" + "RandomSeed": "2014309095", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json index 6192b95686eeb..6c68d89fc056d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json @@ -11,7 +11,7 @@ "Content-Length": "297", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-57975f6f0d037843bb8557c829868a70-e351eccdb6439641-00", + "traceparent": "00-a487a5dbe9fdd14faf6cf70f8eff0c0e-a19b68741566b048-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -55,13 +55,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "97b69401-94ad-4ecc-9fe1-2b52e764a80c", + "apim-request-id": "eb1d3296-fbf9-485d-a8df-a726ef6501a3", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:02:30 GMT", + "Date": "Mon, 02 Nov 2020 19:19:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "error": { @@ -76,6 +76,8 @@ } ], "Variables": { - "RandomSeed": "1535542289" + "RandomSeed": "1535542289", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json index 83886126eee76..6d7bcd8b9b8e2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json @@ -11,7 +11,7 @@ "Content-Length": "297", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-48857221bb8417478e437c5cc5f735ce-ef29df7086999041-00", + "traceparent": "00-6cb82497f0fbb44ba05ffeaea696a484-21ed098384d3dd4b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -55,13 +55,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "cc5ba474-fc28-4a6a-b4bc-59c9cfff0ae5", + "apim-request-id": "89362a5f-8ea6-4fe6-bd6d-d3168b198c12", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:02:31 GMT", + "Date": "Mon, 02 Nov 2020 19:19:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "error": { @@ -76,6 +76,8 @@ } ], "Variables": { - "RandomSeed": "467834574" + "RandomSeed": "467834574", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json index ee6c366edc1fd..338d3f11e6a7c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json @@ -11,7 +11,7 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c2bcd5914d93164cb7d4dd2567976751-d76fc34f9f9d284e-00", + "traceparent": "00-304bfa5c0808d7468275a322325d6c23-51da618db122ca44-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "52154c2c-89a9-4569-ae66-3950659724e4", + "apim-request-id": "beea8697-d9b4-4e8d-8f12-eced978fbe00", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:02:30 GMT", + "Date": "Mon, 02 Nov 2020 19:19:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -51,6 +51,8 @@ } ], "Variables": { - "RandomSeed": "449438732" + "RandomSeed": "449438732", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json index 9dc41f0ee7e9c..43c3c2e1ee305 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7b44166a2f7fe642862069c2f2890721-86a227f50e01374a-00", + "traceparent": "00-706f952846987a4aab908bfc3358e67b-1514b5874cfb3d47-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "c9c3e36d-31de-48f3-b99c-617c5a25a404", + "apim-request-id": "73dfebfc-16d9-4c78-bc48-fcefb48fbf5a", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:02:31 GMT", + "Date": "Mon, 02 Nov 2020 19:19:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -51,6 +51,8 @@ } ], "Variables": { - "RandomSeed": "269930919" + "RandomSeed": "269930919", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json index 3b6a1f3f52005..d7745ea0cdc01 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json @@ -11,7 +11,7 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0a848a1ba71ca2429497b68c18c21d85-a1008281a539a741-00", + "traceparent": "00-ec44bab12095bd45b53fd4fe2de5b257-2e68975e8506334f-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1896d08a-b85a-4642-9766-1ecf2a256b3f", + "apim-request-id": "e6834f5b-af16-4395-a22a-0766411b7d0b", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:02:30 GMT", + "Date": "Mon, 02 Nov 2020 19:19:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -58,6 +58,8 @@ } ], "Variables": { - "RandomSeed": "1966020734" + "RandomSeed": "1966020734", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json index ed4aeec2c0f61..96a43bea1f8ac 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e5182c2992b2654fb48941120436c6e3-55c601bb70844641-00", + "traceparent": "00-4182db9a391d0a41938fa19611032a23-7fdcdb4844510a45-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a457093e-8245-4ee7-af95-5692927f6a34", + "apim-request-id": "b91969a2-c624-4309-b1ac-a00e0355457c", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:02:31 GMT", + "Date": "Mon, 02 Nov 2020 19:19:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -58,6 +58,8 @@ } ], "Variables": { - "RandomSeed": "794759441" + "RandomSeed": "794759441", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json index bf02a9ecf0550..4b92083a1c790 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json @@ -11,7 +11,7 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-74bb4536682aa0438dd102797439e58f-abb4f9de1bb0644d-00", + "traceparent": "00-1facb0b1c9838348b88e6fe0ab241f57-0a3209869cb6cb46-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c7e17997-4e2c-4d9a-a003-b99f90a0267c", + "apim-request-id": "2d65b0af-0128-4d75-a48f-026819d64b10", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:30 GMT", + "Date": "Mon, 02 Nov 2020 19:19:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "184" + "x-envoy-upstream-service-time": "192" }, "ResponseBody": { "statistics": { @@ -123,6 +123,8 @@ } ], "Variables": { - "RandomSeed": "541291504" + "RandomSeed": "541291504", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json index 652677ea73c2e..e9ee040e48111 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8e561062c68f0a4289d11b05f53f6e89-fbce64de739b7348-00", + "traceparent": "00-7b784557e4cac84583dd078a23ca38a8-5ae9da555f701149-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "df828fe7-42f9-4680-8126-a08b24bfad3e", + "apim-request-id": "25e7aa19-600f-425b-84aa-91665d56cf17", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:31 GMT", + "Date": "Mon, 02 Nov 2020 19:19:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "151" + "x-envoy-upstream-service-time": "158" }, "ResponseBody": { "statistics": { @@ -123,6 +123,8 @@ } ], "Variables": { - "RandomSeed": "438437791" + "RandomSeed": "438437791", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json index 5bc85eae00960..d3a65484f465e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json @@ -11,7 +11,7 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d2e5e46e7c274a4a908de699a8923ac9-5686d932a434fc4f-00", + "traceparent": "00-64be93d6b258e148bc8762ebc010f102-c971ea999faf2e4b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d3d8b911-2967-45cc-9c6e-eb5555db6769", + "apim-request-id": "6f5ec3a5-9300-4313-bdf9-aaf0a9c9bffa", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:31 GMT", + "Date": "Mon, 02 Nov 2020 19:19:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "117" + "x-envoy-upstream-service-time": "89" }, "ResponseBody": { "documents": [ @@ -75,6 +75,8 @@ } ], "Variables": { - "RandomSeed": "958901847" + "RandomSeed": "958901847", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json index de35e7986556a..3d180c7872986 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-70bf7597d2e42d49aaddcbd68861a33b-e6f738737e22114a-00", + "traceparent": "00-17a622713b835944ac910e673d5b8989-0cd15788cb2a794e-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "174cf618-429c-401c-9b71-eb25311a4be9", + "apim-request-id": "86ed91a2-8daf-4087-a724-fb89d4d852fe", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:32 GMT", + "Date": "Mon, 02 Nov 2020 19:19:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "96" + "x-envoy-upstream-service-time": "120" }, "ResponseBody": { "documents": [ @@ -75,6 +75,8 @@ } ], "Variables": { - "RandomSeed": "988548785" + "RandomSeed": "988548785", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json index 3450728a3cd22..ced93bc6da9e5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json @@ -11,7 +11,7 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-985218199f86be4e8f212e77715a6fa5-7d2a47df5e36aa47-00", + "traceparent": "00-20e0f576f734e9469d878de0d5a6a356-60df0037aecb734e-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,10 +30,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fb77d164-ecec-4e87-a619-6745e7acfeca", + "apim-request-id": "404a6200-0cb8-42bc-b4af-af8cbc559ee0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:31 GMT", + "Date": "Mon, 02 Nov 2020 19:19:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -75,6 +75,8 @@ } ], "Variables": { - "RandomSeed": "1194835107" + "RandomSeed": "1194835107", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json index 0d34b95f24981..130c184c385fe 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a0bb162cbc80904491f37ebde7ed327b-9c45ada2b168134d-00", + "traceparent": "00-2c8a6ae544c94543a1a5692b91d500bd-9671a79a72d03147-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ac35eb08-412d-4926-af16-a551f926638a", + "apim-request-id": "8f8e71e9-95f0-42f2-b744-8b7ec9b81770", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:32 GMT", + "Date": "Mon, 02 Nov 2020 19:19:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "66" + "x-envoy-upstream-service-time": "64" }, "ResponseBody": { "documents": [ @@ -75,6 +75,8 @@ } ], "Variables": { - "RandomSeed": "852244609" + "RandomSeed": "852244609", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json index 3a69b9f3be706..6567cf3fb267a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json @@ -11,7 +11,7 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-eb799c1008ea8248910f7e738f409769-c003f7e327c8d144-00", + "traceparent": "00-e621d2676e3cf44397e88f82f1fb3d26-8608fce81ea8aa48-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "426c4352-24dd-4864-a905-33ac849c04e3", + "apim-request-id": "3e239d16-23fd-40c4-a246-3034bcbd4883", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:31 GMT", + "Date": "Mon, 02 Nov 2020 19:19:19 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": "76" }, "ResponseBody": { "documents": [ @@ -77,6 +77,8 @@ } ], "Variables": { - "RandomSeed": "1531566714" + "RandomSeed": "1531566714", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json index e0291a1e98dec..5ddaa77ca33e7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0299fa01f201444da3fd4f272aad2567-3662ff9237767346-00", + "traceparent": "00-b57bd1c28eb58a4bae6c418380b02531-8678826fd453a542-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "234b7de7-df92-4da9-9f64-45bb2dc3779f", + "apim-request-id": "bfbdbb94-8016-45ae-a7b5-1e974c47f6eb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:32 GMT", + "Date": "Mon, 02 Nov 2020 19:19:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "100" + "x-envoy-upstream-service-time": "126" }, "ResponseBody": { "documents": [ @@ -77,6 +77,8 @@ } ], "Variables": { - "RandomSeed": "1094081853" + "RandomSeed": "1094081853", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json index 552836c557170..e9dc9da87ea30 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json @@ -11,7 +11,7 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5527baf868a671409bcd6cb0076e941b-05f5664e04429b41-00", + "traceparent": "00-a78ad50aef3cc148b848d3820bcb9962-7d071fe5b8b83e4b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "04de5ebd-5987-472a-a7a3-f037b070aaa7", + "apim-request-id": "c0126c89-3fb7-4ad3-a714-186328122022", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:32 GMT", + "Date": "Mon, 02 Nov 2020 19:19:20 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": "21" }, "ResponseBody": { "documents": [ @@ -145,6 +145,8 @@ } ], "Variables": { - "RandomSeed": "1090158568" + "RandomSeed": "1090158568", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json index 5293c309e1b7e..0c729afa0fec0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a0571300253716419806eac3f14a1926-3b0e15cc54ac1b4d-00", + "traceparent": "00-b1d9ed615538854a99761d5afd9df235-207a19bb9f918a4b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6e3aeaf1-ddbb-46fa-8bd2-ed076da03c77", + "apim-request-id": "f2a022a9-0e68-4c58-a984-b63c30f4be75", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:32 GMT", + "Date": "Mon, 02 Nov 2020 19:19:21 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": "22" }, "ResponseBody": { "documents": [ @@ -145,6 +145,8 @@ } ], "Variables": { - "RandomSeed": "118147903" + "RandomSeed": "118147903", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json index 39210d16c8dfd..38cbd96f1cfa1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json @@ -11,7 +11,7 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2190c3d922ca7d4b8859278a064cb0f3-d98b8827acfbd943-00", + "traceparent": "00-38880f81a636464db3cf4ae6a6fa53eb-16282b3cd800d742-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "911c150d-30cb-4d74-b7d1-5578891117a5", + "apim-request-id": "bc023805-2ce9-4dbb-8c3e-bc356b989002", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:32 GMT", + "Date": "Mon, 02 Nov 2020 19:19:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "statistics": { @@ -159,6 +159,8 @@ } ], "Variables": { - "RandomSeed": "966684010" + "RandomSeed": "966684010", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json index d8122926ee61e..daa7e78025adf 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b84f9fa9f447e442baf6c29cf3f6f8b8-d45427636595574f-00", + "traceparent": "00-3bbdb794990979479613216cc7b6ce38-9350c57c5e178241-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ebce4089-5d80-42b0-9595-7a944f75b6d6", + "apim-request-id": "3a098e6a-94b0-4809-9971-978cf8162640", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:32 GMT", + "Date": "Mon, 02 Nov 2020 19:19:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "statistics": { @@ -159,6 +159,8 @@ } ], "Variables": { - "RandomSeed": "1003575897" + "RandomSeed": "1003575897", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json index aaa2c0cd4c7d4..c7f5dbca211b3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json @@ -11,7 +11,7 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b9c33b54252be84eabcd377a9672527d-e72e47bf5ace9845-00", + "traceparent": "00-1b9200c983fdbe4bbab0733da3f27066-6bc36de615874742-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "67ca1b99-563c-4b12-a736-6d78979ce161", + "apim-request-id": "14f8dcb7-5731-4d28-8210-5b1688a7bc7e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:32 GMT", + "Date": "Mon, 02 Nov 2020 19:19:20 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": "20" }, "ResponseBody": { "documents": [ @@ -145,6 +145,8 @@ } ], "Variables": { - "RandomSeed": "1863021454" + "RandomSeed": "1863021454", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json index dc8adf4cd43df..bba121b37789d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d0ee221eb2c8a34d84e4d1a3c2d9d1cd-8f538567a1c01249-00", + "traceparent": "00-efec682816ba84419ba9c542671f12bc-ca166d8a802b2e4d-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "00c48872-9ce7-4984-b347-d952e90f1be7", + "apim-request-id": "1ef28a48-de2e-4ba2-83ee-6e2632892433", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:32 GMT", + "Date": "Mon, 02 Nov 2020 19:19:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "documents": [ @@ -145,6 +145,8 @@ } ], "Variables": { - "RandomSeed": "1694310088" + "RandomSeed": "1694310088", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json index ced98774a65af..b2a77ac6aa82e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json @@ -11,7 +11,7 @@ "Content-Length": "229", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-78d3948f1a3d424199c7447403e2dc8e-8b4a113cababe541-00", + "traceparent": "00-ce326fa76fbcca489cd28a192a01a7f3-4858326607870747-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,10 +40,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "28d5e1e2-59e6-49dc-b6cd-3d92b1fbeaed", + "apim-request-id": "8b8572a1-8d2b-4c4a-8433-5bd12677f094", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:32 GMT", + "Date": "Mon, 02 Nov 2020 19:19:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -162,6 +162,8 @@ } ], "Variables": { - "RandomSeed": "2120326363" + "RandomSeed": "2120326363", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json index 70302a90f6988..fc6f5c57d2287 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "229", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9fd0164881be8d44867206e64c30e6c7-0799db99eaddbd4e-00", + "traceparent": "00-8c231a4809342f458f3fdafb9d0cd06a-bbab249c2e21114d-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "850c7a2a-a01a-453d-8892-0055c70ca429", + "apim-request-id": "d21890d8-575f-415d-8bbd-95a2a7841b9d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:32 GMT", + "Date": "Mon, 02 Nov 2020 19:19:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "documents": [ @@ -162,6 +162,8 @@ } ], "Variables": { - "RandomSeed": "1773584232" + "RandomSeed": "1773584232", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json index cee85cd319840..f97f23d342544 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json @@ -11,7 +11,7 @@ "Content-Length": "561", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1a6d1e54490b214fbbf3a5a018ca672d-83e91b35d1e54f46-00", + "traceparent": "00-9aaea3b31da42441a6d61e3d794b4c5e-23bfce0927460740-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -55,13 +55,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "db6a20d0-690a-48eb-8b62-a41f7beb5f1d", + "apim-request-id": "6ba40248-2481-4e89-9cfc-a03b260d5d63", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:02:32 GMT", + "Date": "Mon, 02 Nov 2020 19:19:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { @@ -76,6 +76,8 @@ } ], "Variables": { - "RandomSeed": "907456664" + "RandomSeed": "907456664", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json index 423e23309d257..a6988f76901b3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json @@ -11,7 +11,7 @@ "Content-Length": "561", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b58adad7372bbb4289ab08360ff096f4-700a6dea0f910046-00", + "traceparent": "00-5b5c23d5246f5b43abd63f09a9ced399-b5eb78eae8e6114b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -55,13 +55,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "8a5740ec-573c-4131-97bd-7144985879ca", + "apim-request-id": "63bf28a8-0984-40ac-8e87-314445feb4df", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:02:32 GMT", + "Date": "Mon, 02 Nov 2020 19:19:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "error": { @@ -76,6 +76,8 @@ } ], "Variables": { - "RandomSeed": "602192603" + "RandomSeed": "602192603", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json index 7456ce31cdb12..e8c12e78690ae 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json @@ -11,7 +11,7 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e70e0e15db7fb441a416f903aad746aa-892f1e42a37ec549-00", + "traceparent": "00-264861adaf387149b0f6f72fccd3610e-ddafd71bef6cb245-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "80961c26-116f-474f-bd1d-ac924f88129b", + "apim-request-id": "cf8f71ae-3cf8-4865-9f54-e1caa08d29cb", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:02:32 GMT", + "Date": "Mon, 02 Nov 2020 19:19:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { @@ -51,6 +51,8 @@ } ], "Variables": { - "RandomSeed": "143174300" + "RandomSeed": "143174300", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json index 140e57abd3633..4922fea857d2c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8c4c21579baa7341997b79f398c6605c-893fc949a703cb45-00", + "traceparent": "00-143de273d056cb448f09caab87315b99-a9cda52726947345-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "380017b3-c807-4d54-8329-44cd5503a3d6", + "apim-request-id": "2b7a838f-918a-4379-a937-985f1375f8cd", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:02:32 GMT", + "Date": "Mon, 02 Nov 2020 19:19:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { @@ -51,6 +51,8 @@ } ], "Variables": { - "RandomSeed": "688120200" + "RandomSeed": "688120200", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json index 6cd6cc2da1e47..ef7f8063c4e76 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json @@ -11,7 +11,7 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3ca75b9533fd874181ecc6f4011de510-0ba5d060c522964b-00", + "traceparent": "00-617c37782639ee498c33e5256d96072c-c7bc0f42d8874f44-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "20d7d56f-1cf3-4254-b6e1-cda170e40bf7", + "apim-request-id": "c511124a-302e-4ccd-90a8-c231e64d27d4", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:02:32 GMT", + "Date": "Mon, 02 Nov 2020 19:19:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1" + "x-envoy-upstream-service-time": "2" }, "ResponseBody": { "documents": [], @@ -58,6 +58,8 @@ } ], "Variables": { - "RandomSeed": "857365247" + "RandomSeed": "857365247", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json index 039f4d7eaa30b..5ab659bcfe087 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7014f2b2383f8743a93428e4e5591b22-334ccd0cd5732f48-00", + "traceparent": "00-3addec65a8cbc24d8fb0b89ae841bcbc-4921f8b658b31241-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c4ebafbb-29b3-4ad3-90e0-f0564f56f655", + "apim-request-id": "25bb5b5e-7d78-428e-be1f-bed20250865e", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:02:32 GMT", + "Date": "Mon, 02 Nov 2020 19:19:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -58,6 +58,8 @@ } ], "Variables": { - "RandomSeed": "1341433425" + "RandomSeed": "1341433425", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json index 3b2008603102e..9e3775480630c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json @@ -11,7 +11,7 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a07404c37bf2464fba8c47e11ead381c-cdb1ecd56bd96a4f-00", + "traceparent": "00-09fbc1a7397f024386af4c227efbc2a2-0f90edebe01c8b4b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a309863a-26d0-4aae-9adf-cfe5ac6ee321", + "apim-request-id": "57e4efd6-9981-48d8-bf61-ee4c00bf7808", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:32 GMT", + "Date": "Mon, 02 Nov 2020 19:19:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "statistics": { @@ -159,6 +159,8 @@ } ], "Variables": { - "RandomSeed": "775198464" + "RandomSeed": "775198464", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json index fca1e6bdc04f3..66fcd945ad250 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7d155146161bb3498b69d02dc4d7543c-8d7f01674c13e048-00", + "traceparent": "00-669155f3fa2ed543b361a0fbfd18377a-e64afa6861dd0c41-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0223c199-5570-4fc8-8226-81982e692515", + "apim-request-id": "405b2c07-e33b-4609-9cec-aa2fe6dd050c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:32 GMT", + "Date": "Mon, 02 Nov 2020 19:19:21 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": "21" }, "ResponseBody": { "statistics": { @@ -159,6 +159,8 @@ } ], "Variables": { - "RandomSeed": "1369620328" + "RandomSeed": "1369620328", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json index 4dbcf3748e651..048ead4a249ea 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json @@ -11,7 +11,7 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-440924dd55b4b64fbb9bed194d48bfbb-2b9840970a9e1243-00", + "traceparent": "00-7a694a764b0fdb48b254c01b697ef6a2-6087e3940bf6d24b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "da4ac952-ba32-4ce4-b105-37323d466b4f", + "apim-request-id": "4a78fc1d-6c64-44a2-a0c5-18ae8fe6cffc", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:32 GMT", + "Date": "Mon, 02 Nov 2020 19:19:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "documents": [ @@ -102,6 +102,8 @@ } ], "Variables": { - "RandomSeed": "862299711" + "RandomSeed": "862299711", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json index 36da2ee3aac9a..1b59df8a11677 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ab396105f899ea419df981354ac8b52d-9603e1fdba72fd43-00", + "traceparent": "00-34ff81720738c647b762ffb27284f0b7-c28aefc5f04d4445-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dbf952a6-6fcf-4508-aba1-cc1e0c3cbc76", + "apim-request-id": "28f8c1f6-84dc-4224-9d78-6337c4e321b1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:32 GMT", + "Date": "Mon, 02 Nov 2020 19:19:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "documents": [ @@ -102,6 +102,8 @@ } ], "Variables": { - "RandomSeed": "451982382" + "RandomSeed": "451982382", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json index dcebc8bf94bf2..d58d4ab32c6de 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json @@ -11,7 +11,7 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f1a71a3e54011140a27a4f97c053b947-a6939861ea649147-00", + "traceparent": "00-ffcb91dfadf68143a28942df009cf65f-e5949a8509c5d046-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,10 +30,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "75a0eee5-acc9-48a6-86f5-a17eec5b16af", + "apim-request-id": "992eac05-f939-4e19-ad9c-95ef559be6ec", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:32 GMT", + "Date": "Mon, 02 Nov 2020 19:19:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -102,6 +102,8 @@ } ], "Variables": { - "RandomSeed": "1916186259" + "RandomSeed": "1916186259", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json index e8ac3eca53666..3017266c06c3b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9ba8d1825aa1c64895a87b9ad025af4a-ae488d9abc1f894d-00", + "traceparent": "00-9bf5b95a67cc744e95d22242b65479e0-b477512e8378c34e-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,10 +30,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "872ff59e-f893-4c9f-b8e3-264307bf3514", + "apim-request-id": "e6ae4d6a-a3d7-4388-bde3-65d6822540e7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:32 GMT", + "Date": "Mon, 02 Nov 2020 19:19:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -102,6 +102,8 @@ } ], "Variables": { - "RandomSeed": "1422875153" + "RandomSeed": "1422875153", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json index 250482bf843d3..ed7861f605d40 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json @@ -11,7 +11,7 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bf8d97b1623d9543bb1b97d8e40fcf9e-3de622643057b344-00", + "traceparent": "00-aaae9567a0db2a439c04549470f75584-e3441f259c0a2a46-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a814c3f7-51d3-429b-b42d-d59671c309be", + "apim-request-id": "781c1bbc-2031-4d4e-8072-9e793d48dda5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:32 GMT", + "Date": "Mon, 02 Nov 2020 19:19:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "136" + "x-envoy-upstream-service-time": "124" }, "ResponseBody": { "documents": [ @@ -102,6 +102,8 @@ } ], "Variables": { - "RandomSeed": "820182005" + "RandomSeed": "820182005", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json index 9b6eda7c7802c..07935f886b1ec 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c7152ad735c51145971c748b1689d80d-355e4c59420eba43-00", + "traceparent": "00-954282b1ff1b1d4d9020fa3ff0f91af1-9998c0817b54ee40-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8caa1966-8a59-4197-8fc5-2be529f99b04", + "apim-request-id": "ad5e0723-c3b9-49ec-800e-4efbb259c802", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:34 GMT", + "Date": "Mon, 02 Nov 2020 19:19:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "182" + "x-envoy-upstream-service-time": "131" }, "ResponseBody": { "documents": [ @@ -102,6 +102,8 @@ } ], "Variables": { - "RandomSeed": "573069134" + "RandomSeed": "573069134", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json index 79d3610ec3527..15c6a3a10aa28 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json @@ -11,7 +11,7 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9c7c019618dacf42a0bd7ef59df9cf09-e6ccc8772246a740-00", + "traceparent": "00-1d6f0ffe48505c48a11b12d6c887c0c8-1271f954e6ab3946-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f49b8bb0-f59d-42ef-85a0-e2e20d120a3c", + "apim-request-id": "619f7e1e-9425-437f-bd3e-4f9b6aba372f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:33 GMT", + "Date": "Mon, 02 Nov 2020 19:19:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "163" + "x-envoy-upstream-service-time": "133" }, "ResponseBody": { "statistics": { @@ -116,6 +116,8 @@ } ], "Variables": { - "RandomSeed": "1097726284" + "RandomSeed": "1097726284", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json index ab3648ba599f4..fb69b88baec88 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b64bd8b0648179488953b9a72cec823c-0c555450cbd6ed4c-00", + "traceparent": "00-7c4fc89c32af5b48b35ed6ffbb0c4efa-b1b7743239e75947-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "560be38e-aa54-4171-a230-35e5ab94c89f", + "apim-request-id": "cead06ec-ad69-443c-85b0-35677262ed58", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:34 GMT", + "Date": "Mon, 02 Nov 2020 19:19:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "201" + "x-envoy-upstream-service-time": "126" }, "ResponseBody": { "statistics": { @@ -116,6 +116,8 @@ } ], "Variables": { - "RandomSeed": "822339012" + "RandomSeed": "822339012", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json index 1a37b93d411d8..ef75a220c3d48 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json @@ -11,7 +11,7 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ebbf7902105f594782d3ab850728442b-6e37a58baf0a7843-00", + "traceparent": "00-8cfbe5aaf58ad64a8c1bc36c8d923979-e690c1ea65f56b42-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "68aafdff-349f-4bf8-bfcf-b17cbabda94a", + "apim-request-id": "7dd8f74b-2b29-4f7f-90c3-a66f62f11c63", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:33 GMT", + "Date": "Mon, 02 Nov 2020 19:19:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "141" + "x-envoy-upstream-service-time": "138" }, "ResponseBody": { "documents": [ @@ -102,6 +102,8 @@ } ], "Variables": { - "RandomSeed": "169579662" + "RandomSeed": "169579662", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json index 2d35460b8cb7d..c4cdf73e0b3cf 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1585172accc1eb4a935381fd843af0e9-e45bd659f666764d-00", + "traceparent": "00-7293d3f3622c3845983257237b805593-3a9e04984517b543-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5cca17c2-a3f0-40de-8b84-9e6f9cf5485a", + "apim-request-id": "609b26cb-a8ef-4127-9e8e-2457f9399d14", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:34 GMT", + "Date": "Mon, 02 Nov 2020 19:19:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "133" + "x-envoy-upstream-service-time": "141" }, "ResponseBody": { "documents": [ @@ -102,6 +102,8 @@ } ], "Variables": { - "RandomSeed": "1167133842" + "RandomSeed": "1167133842", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json index 8a375e9aa9aaa..77864b36a40a1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json @@ -11,7 +11,7 @@ "Content-Length": "331", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cb837bae37889d48b25509f0fd8dda39-1b395cbfaff64540-00", + "traceparent": "00-8e29a487cc39ae41bc6f487cd0a77f64-220e0fbfcfbf404f-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3b18b1a1-bb6f-43ec-8ac3-cd7c132c1e18", + "apim-request-id": "383b53c1-5160-4ffc-b1d1-0607baf15cad", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:33 GMT", + "Date": "Mon, 02 Nov 2020 19:19:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "140" + "x-envoy-upstream-service-time": "130" }, "ResponseBody": { "documents": [ @@ -119,6 +119,8 @@ } ], "Variables": { - "RandomSeed": "239145501" + "RandomSeed": "239145501", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json index 25ccffc7088d6..4c1a01cb155ea 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "331", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b9ae2d6ad64b1e48bc3644ddbb6c4430-10dc1b15e90de14a-00", + "traceparent": "00-90ca787d03c14e47bb3eca279b9d553b-701a3e067cafaf46-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c6ca696f-c9c0-4906-94e7-b125d9165c8e", + "apim-request-id": "7132965f-0718-4a2b-9619-8bc83bc556b2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:34 GMT", + "Date": "Mon, 02 Nov 2020 19:19:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "129" + "x-envoy-upstream-service-time": "130" }, "ResponseBody": { "documents": [ @@ -119,6 +119,8 @@ } ], "Variables": { - "RandomSeed": "1607409987" + "RandomSeed": "1607409987", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json index 011dc82f1a05d..e78bbe1560547 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json @@ -11,7 +11,7 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a2676bbf5369d7439775da51ee5df974-d2d828a895d3834f-00", + "traceparent": "00-ddcc3e91466e07479062ba6d14f112d3-a09df18755e86047-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "deef5d0e-fd70-46b6-ba6f-bc42eaf75221", + "apim-request-id": "578d8c10-cd1d-45be-a17e-cb22b7c287bb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:33 GMT", + "Date": "Mon, 02 Nov 2020 19:19:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "143" + "x-envoy-upstream-service-time": "147" }, "ResponseBody": { "statistics": { @@ -116,6 +116,8 @@ } ], "Variables": { - "RandomSeed": "448790314" + "RandomSeed": "448790314", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json index c1ebcd086c29f..c62c5095d4ee0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a82d6b195216254bb69036bf09c34052-87386c2733178f42-00", + "traceparent": "00-876d4eaa8c77024fbbc2a7439cddc67a-7d013d8f21a33e45-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "927f9883-e82d-48eb-b536-950ff36c34ba", + "apim-request-id": "95fc9b3f-f29a-4427-962d-cf3c853cba7b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:02:34 GMT", + "Date": "Mon, 02 Nov 2020 19:19:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "136" + "x-envoy-upstream-service-time": "126" }, "ResponseBody": { "statistics": { @@ -116,6 +116,8 @@ } ], "Variables": { - "RandomSeed": "747198553" + "RandomSeed": "747198553", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json index 179110a30611a..b1198f78c18c6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json @@ -11,7 +11,7 @@ "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5a513efddfa7894aa1c6696e06de338b-52317f3229ff354b-00", + "traceparent": "00-98ac69e92a6af748b573a871adee8c59-3e4cfb3b598ab44a-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d9db46d8-a789-493d-a05f-36da562fdb84", + "apim-request-id": "81ff0113-de20-4eba-b8f6-57056cbe1db4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:33 GMT", + "Date": "Mon, 02 Nov 2020 19:19:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "125" + "x-envoy-upstream-service-time": "106" }, "ResponseBody": { "documents": [ @@ -69,6 +69,8 @@ } ], "Variables": { - "RandomSeed": "1989383672" + "RandomSeed": "1989383672", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json index 74280d0f56217..db3aea1116437 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4c7aff95f7844f439fea321592a29863-516c83bb9a1d8647-00", + "traceparent": "00-26dea1841ac9c347b4067bbb1c064844-ac4fa97edee66d4c-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6816b995-cbaf-43b7-88d0-1990f8321048", + "apim-request-id": "450503a2-5822-4b50-a68b-4527d324c033", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:34 GMT", + "Date": "Mon, 02 Nov 2020 19:19:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "111" + "x-envoy-upstream-service-time": "100" }, "ResponseBody": { "documents": [ @@ -69,6 +69,8 @@ } ], "Variables": { - "RandomSeed": "1876268396" + "RandomSeed": "1876268396", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json index dc5de271b1dba..54c6c2e4dea2d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json @@ -11,7 +11,7 @@ "Content-Length": "107", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cf0aa5fe29283844a6c1324bc3745081-387e0ed57510f248-00", + "traceparent": "00-7d95e7e673143e4ba903f198f693c495-d534b6687e888c48-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ddfe7e91-5abf-49df-add4-53c131d18103", + "apim-request-id": "2eb72309-73e4-4de2-b848-8c3caae81d49", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:33 GMT", + "Date": "Mon, 02 Nov 2020 19:19:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "106" + "x-envoy-upstream-service-time": "92" }, "ResponseBody": { "documents": [ @@ -62,6 +62,8 @@ } ], "Variables": { - "RandomSeed": "114454170" + "RandomSeed": "114454170", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json index ad5bc8c10a816..ca85f252e9de1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "107", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6d2fe93c53fdb645ab697a8e1c09df70-0cd1e10c680edc49-00", + "traceparent": "00-e8ed08c42de9014a952a773ffb3c3c2a-1d6fc7ea2bc51f47-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c15ff8a6-3ffa-4cfa-ae36-8c1215ac8805", + "apim-request-id": "424e5837-8d3d-4937-b56a-3cac484d3315", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:34 GMT", + "Date": "Mon, 02 Nov 2020 19:19:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "89" + "x-envoy-upstream-service-time": "81" }, "ResponseBody": { "documents": [ @@ -62,6 +62,8 @@ } ], "Variables": { - "RandomSeed": "820241717" + "RandomSeed": "820241717", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json index 9b77e0cad591d..3399392b4d66d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json @@ -11,7 +11,7 @@ "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-86ec74c52c0c244a8f063a5252e8c7ad-5ee29ff08c9adb4e-00", + "traceparent": "00-105141f86ca79942a7358ddfa5109acb-a8a556c8b29f8e4b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5bb89149-0bff-4d0d-937b-6acc079c0d37", + "apim-request-id": "503eeae6-60ca-4738-bf18-76ab99f5b49a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:33 GMT", + "Date": "Mon, 02 Nov 2020 19:19:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "118" + "x-envoy-upstream-service-time": "115" }, "ResponseBody": { "documents": [ @@ -69,6 +69,8 @@ } ], "Variables": { - "RandomSeed": "2103634278" + "RandomSeed": "2103634278", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json index e21654e239897..ab2e4d864311a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ff9c6e7b482102488bdd4f1706ce57f0-9472616496cebc4b-00", + "traceparent": "00-48a6d158439cf347aba9ac8d73ca4bfe-65412a1e3d075c4c-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5cdaff5e-ab0f-4d4e-96d4-22fdc83a651c", + "apim-request-id": "b81e0c74-b87c-431d-af93-29da64c12edf", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:35 GMT", + "Date": "Mon, 02 Nov 2020 19:19:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "102" + "x-envoy-upstream-service-time": "101" }, "ResponseBody": { "documents": [ @@ -69,6 +69,8 @@ } ], "Variables": { - "RandomSeed": "1408135123" + "RandomSeed": "1408135123", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json index 6a5bcb61bc755..448f8a559eeba 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json @@ -11,7 +11,7 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6eda0bd9d317654fa2740b6db758ad62-2ec3f3c4f236994d-00", + "traceparent": "00-1764b947a64f6f43a9a9a75476a2435f-0de9b12d51f0704f-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9f96dacf-7b49-4ff7-9c4c-16ff330dab37", + "apim-request-id": "ba07d89a-d97b-4588-82bf-7adca1dc73fe", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:35 GMT", + "Date": "Mon, 02 Nov 2020 19:19:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "63" + "x-envoy-upstream-service-time": "58" }, "ResponseBody": { "documents": [ @@ -76,6 +76,8 @@ } ], "Variables": { - "RandomSeed": "1654409937" + "RandomSeed": "1654409937", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json index c8ac6ce8482a0..0fbed8aeee5fe 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json @@ -11,7 +11,7 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e1627307fdcd7c4297330262f49ad0f1-5d29d0e8c397d54c-00", + "traceparent": "00-0b06ce92b5ded54fafcc68c06056a647-4ce80955a375ee4e-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b60ad629-df1c-4390-9d4b-a1fb43489137", + "apim-request-id": "97eb8de0-867c-47a9-a1a2-d1b2873e6de7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:35 GMT", + "Date": "Mon, 02 Nov 2020 19:19:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "66" + "x-envoy-upstream-service-time": "58" }, "ResponseBody": { "documents": [ @@ -76,6 +76,8 @@ } ], "Variables": { - "RandomSeed": "62086103" + "RandomSeed": "62086103", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json index 8cdfc17627670..5bcd79de23a7d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9985bfeae143294ca321c6d981b1d678-9e5ea0c3855c9544-00", + "traceparent": "00-6a2257ae6f21a74b91492cdf22fa360f-0d66df0d70e8164d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "31841aab9edddcddb56c91e8fafcead5", "x-ms-return-client-request-id": "true" @@ -30,10 +30,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a6fa7a87-a8f6-4576-9508-c31947396429", + "apim-request-id": "bbdf4b88-33ee-4027-8fcb-c072b921b639", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 28 Aug 2020 21:33:04 GMT", + "Date": "Mon, 02 Nov 2020 19:19:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -52,11 +52,11 @@ } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-09-01" } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -66,10 +66,10 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0e5f85191e9c634881abfcab6ca3adab-bc163a246609e041-00", + "traceparent": "00-f09176826643f542ae75cc3eef0b6d2e-e3fe25005e3f234b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "13daa31269993bffe7f19e3dc94f204e", "x-ms-return-client-request-id": "true" @@ -85,13 +85,18 @@ }, "StatusCode": 401, "ResponseHeaders": { - "Content-Length": "224", - "Date": "Fri, 28 Aug 2020 21:33:04 GMT" + "apim-request-id": "2dfa8cb3-fd9a-4ce7-97c5-b024d1790b1a", + "Content-Length": "225", + "Content-Type": "application/json", + "Date": "Mon, 02 Nov 2020 19:19:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "WWW-Authenticate": "AzureApiManagementKey realm=\u0022https://cognitiveusw2dev.azure-api.net/text/analytics\u0022,name=\u0022Ocp-Apim-Subscription-Key\u0022,type=\u0022header\u0022", + "X-Content-Type-Options": "nosniff" }, - "ResponseBody": "eyJlcnJvciI6eyJjb2RlIjoiNDAxIiwibWVzc2FnZSI6IkFjY2VzcyBkZW5pZWQgZHVlIHRvIGludmFsaWQgc3Vic2NyaXB0aW9uIGtleSBvciB3cm9uZyBBUEkgZW5kcG9pbnQuIE1ha2Ugc3VyZSB0byBwcm92aWRlIGEgdmFsaWQga2V5IGZvciBhbiBhY3RpdmUgc3Vic2NyaXB0aW9uIGFuZCB1c2UgYSBjb3JyZWN0IHJlZ2lvbmFsIEFQSSBlbmRwb2ludCBmb3IgeW91ciByZXNvdXJjZS4ifX0=" + "ResponseBody": "{\u0022error\u0022:{\u0022code\u0022:\u0022401\u0022,\u0022message\u0022: \u0022Access denied due to invalid subscription key or wrong API endpoint. Make sure to provide a valid key for an active subscription and use a correct regional API endpoint for your resource.\u0022}}" }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -101,10 +106,10 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ba74c25d3b46964f8789d8299cfdf67a-07ff52a3d018e743-00", + "traceparent": "00-1ac7b18bba8fcd4ca8ede792281b0a81-a228f7b5bdd41341-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d85ee288a420af625bce0d2748754fc8", "x-ms-return-client-request-id": "true" @@ -120,10 +125,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "380b8c9f-fd44-4ded-8a9c-43ddfac15707", + "apim-request-id": "861fdcc6-9099-41b4-8fc7-768d432c15d9", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 28 Aug 2020 21:33:04 GMT", + "Date": "Mon, 02 Nov 2020 19:19:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -142,7 +147,7 @@ } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-09-01" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json index 2b51f6398c3b3..18d71495bf5c0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,10 +11,10 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0468b3e98bdd624abb82635870ac1bd6-2c8e49eb5730c24a-00", + "traceparent": "00-818acfbd68c9ad4db2913599f2973943-ca2c375357ea4540-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fb9f47ae04f9d825012386a2a51b9727", "x-ms-return-client-request-id": "true" @@ -30,10 +30,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3c9dce5f-b997-494d-8d82-44424ded7aa7", + "apim-request-id": "7ad44339-b819-42b0-bce7-2d8f1f0c2a41", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 28 Aug 2020 21:33:04 GMT", + "Date": "Mon, 02 Nov 2020 19:19:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -52,11 +52,11 @@ } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-09-01" } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -66,10 +66,10 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9bf121d876ebdf459fba5381e6499426-d34dbb07e058b748-00", + "traceparent": "00-1d4bcda58587654b87eb710042130a63-4da4ed4dc071ed4a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5aa0f7e4723c7c582e8ca602e03d8c8c", "x-ms-return-client-request-id": "true" @@ -85,13 +85,18 @@ }, "StatusCode": 401, "ResponseHeaders": { - "Content-Length": "224", - "Date": "Fri, 28 Aug 2020 21:33:04 GMT" + "apim-request-id": "908d7032-8272-4a36-9415-1316798c5991", + "Content-Length": "225", + "Content-Type": "application/json", + "Date": "Mon, 02 Nov 2020 19:19:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "WWW-Authenticate": "AzureApiManagementKey realm=\u0022https://cognitiveusw2dev.azure-api.net/text/analytics\u0022,name=\u0022Ocp-Apim-Subscription-Key\u0022,type=\u0022header\u0022", + "X-Content-Type-Options": "nosniff" }, - "ResponseBody": "eyJlcnJvciI6eyJjb2RlIjoiNDAxIiwibWVzc2FnZSI6IkFjY2VzcyBkZW5pZWQgZHVlIHRvIGludmFsaWQgc3Vic2NyaXB0aW9uIGtleSBvciB3cm9uZyBBUEkgZW5kcG9pbnQuIE1ha2Ugc3VyZSB0byBwcm92aWRlIGEgdmFsaWQga2V5IGZvciBhbiBhY3RpdmUgc3Vic2NyaXB0aW9uIGFuZCB1c2UgYSBjb3JyZWN0IHJlZ2lvbmFsIEFQSSBlbmRwb2ludCBmb3IgeW91ciByZXNvdXJjZS4ifX0=" + "ResponseBody": "{\u0022error\u0022:{\u0022code\u0022:\u0022401\u0022,\u0022message\u0022: \u0022Access denied due to invalid subscription key or wrong API endpoint. Make sure to provide a valid key for an active subscription and use a correct regional API endpoint for your resource.\u0022}}" }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.2/languages", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -101,10 +106,10 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b7e6f7904d55fd4e8b7c9c0c100d280f-ed96fccee9e6da49-00", + "traceparent": "00-e22fdeb2f093c947835c5ca3fec0cf5a-60a0b6b289a4294e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-dev.20200828.1", - "(.NET Core 4.6.29017.01; Microsoft Windows 10.0.19041 )" + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1a26406b44799ec461ce0951aebc7b46", "x-ms-return-client-request-id": "true" @@ -120,10 +125,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "074116a3-6805-467f-bb2a-cd4052d9e285", + "apim-request-id": "a9fc6516-cd48-40bb-bfb3-bf7e45beeb5b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 28 Aug 2020 21:33:04 GMT", + "Date": "Mon, 02 Nov 2020 19:19:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -142,7 +147,7 @@ } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-09-01" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json index 169ba363992ac..c3dfb60d75017 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json @@ -11,7 +11,7 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ab8e598e335ae84fbb9b7e214bad7fdd-b57bcc3c35be2e44-00", + "traceparent": "00-4ed4e474903ff940823d5b02dc117396-20e5d1ed8925a84c-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9354bbb6-8428-4343-b75e-bad6e5af7d77", + "apim-request-id": "cfe7015a-110c-4ac3-b2b5-220246b3256a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:35 GMT", + "Date": "Mon, 02 Nov 2020 19:19:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "73" + "x-envoy-upstream-service-time": "71" }, "ResponseBody": { "documents": [ @@ -61,6 +61,8 @@ } ], "Variables": { - "RandomSeed": "514682034" + "RandomSeed": "514682034", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json index ef9f179dc18ce..95a60820117e2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json @@ -11,7 +11,7 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3f7187679caa49448c6eb00fa52288e0-569eb733ae7c854b-00", + "traceparent": "00-4b491cefbf90b14f908070f01de34dd8-60d2e8103f26b34b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0de192d7-7e25-4663-bbf4-a7b9392aa1d1", + "apim-request-id": "075f1052-e971-4fd9-aa04-4c5c75bbbcd6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:35 GMT", + "Date": "Mon, 02 Nov 2020 19:19:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "74" + "x-envoy-upstream-service-time": "75" }, "ResponseBody": { "documents": [ @@ -61,6 +61,8 @@ } ], "Variables": { - "RandomSeed": "1998010767" + "RandomSeed": "1998010767", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json index 26b296df570ad..471ee19ac8258 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json @@ -11,7 +11,7 @@ "Content-Length": "70", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1aa0c5ae2ee2b74cb27c0304ce3457ef-981d36f073adf74a-00", + "traceparent": "00-064c2989b370a84d80de594d5f67b3fe-a193db7d482eb24a-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "306a5007-747c-4d18-92cd-45c907ab49a5", + "apim-request-id": "679ee9a6-672d-46b3-b18b-08f03a240c58", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:35 GMT", + "Date": "Mon, 02 Nov 2020 19:19:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "documents": [ @@ -61,6 +61,8 @@ } ], "Variables": { - "RandomSeed": "665053590" + "RandomSeed": "665053590", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json index bbafad882c2ba..5a67b2048daec 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json @@ -11,7 +11,7 @@ "Content-Length": "70", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-59ace23a76e954458cd2a0bde21b8760-e108bafbeb6d8b4c-00", + "traceparent": "00-61952aecea21fe42a40c630408a21115-7463614330e79a4d-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fa336aa3-3cbc-4b3d-b310-f4bf4c687f22", + "apim-request-id": "0d444fb1-8653-4406-bbc9-86fbc5b83150", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:35 GMT", + "Date": "Mon, 02 Nov 2020 19:19:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "54" + "x-envoy-upstream-service-time": "56" }, "ResponseBody": { "documents": [ @@ -61,6 +61,8 @@ } ], "Variables": { - "RandomSeed": "1077947182" + "RandomSeed": "1077947182", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json index 3c7ec3927dde0..112932bef8e9a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json @@ -11,7 +11,7 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e648a21c542011408ff64966fc185aca-c7f01e003770524c-00", + "traceparent": "00-e2e4d1064aa9664a96323734ead20215-b20b9bb53e3b9b44-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "44c948d2-0b93-4b30-bd2a-f746ec0d0213", + "apim-request-id": "c1fab6e4-6452-4a87-ad4d-c14e38cf20ac", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:35 GMT", + "Date": "Mon, 02 Nov 2020 19:19:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "79" + "x-envoy-upstream-service-time": "75" }, "ResponseBody": { "documents": [ @@ -61,6 +61,8 @@ } ], "Variables": { - "RandomSeed": "1277894095" + "RandomSeed": "1277894095", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json index f5e2b6c37ee90..97e5c32bfd59e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json @@ -11,7 +11,7 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2d3b3ce457f7fb4baff0fdf04aa279ff-897dbcd6d5378548-00", + "traceparent": "00-6224b8ebf0f05945a2edebc423bdc669-5a83498802d34646-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b03b5cc4-6803-4343-9d1e-de9e3fed99e8", + "apim-request-id": "b71b82b4-233f-482f-b444-f25f86c47f9c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:02:35 GMT", + "Date": "Mon, 02 Nov 2020 19:19:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "79" + "x-envoy-upstream-service-time": "81" }, "ResponseBody": { "documents": [ @@ -61,6 +61,8 @@ } ], "Variables": { - "RandomSeed": "1551033461" + "RandomSeed": "1551033461", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" } } \ No newline at end of file From b5bb070d34a0a0400134a05d0d9bc350cad75b6f Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Mon, 2 Nov 2020 11:45:47 -0800 Subject: [PATCH 22/58] run exportapi.ps1 --- .../Azure.AI.TextAnalytics.netstandard2.0.cs | 215 ++++++++++++++++++ 1 file changed, 215 insertions(+) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/api/Azure.AI.TextAnalytics.netstandard2.0.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/api/Azure.AI.TextAnalytics.netstandard2.0.cs index 2bf2154a14373..882d50b833234 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/api/Azure.AI.TextAnalytics.netstandard2.0.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/api/Azure.AI.TextAnalytics.netstandard2.0.cs @@ -69,6 +69,16 @@ internal DetectLanguageResultCollection() : base (default(System.Collections.Gen public string ModelVersion { get { throw null; } } public Azure.AI.TextAnalytics.TextDocumentBatchStatistics Statistics { get { throw null; } } } + public partial class DocumentHealthcareResult + { + public DocumentHealthcareResult(string id, Azure.AI.TextAnalytics.TextAnalyticsError textAnalyticsError) { } + public System.Collections.Generic.IReadOnlyList Entities { get { throw null; } } + public string Id { get { throw null; } } + public System.Collections.Generic.IReadOnlyList Relations { get { throw null; } } + public Azure.AI.TextAnalytics.TextDocumentStatistics? Statistics { get { throw null; } } + public Azure.AI.TextAnalytics.TextAnalyticsError TextAnalyticsError { get { throw null; } } + public System.Collections.Generic.IReadOnlyList Warnings { get { throw null; } } + } public partial class DocumentSentiment { internal DocumentSentiment() { } @@ -77,6 +87,21 @@ internal DocumentSentiment() { } public Azure.AI.TextAnalytics.TextSentiment Sentiment { get { throw null; } } public System.Collections.Generic.IReadOnlyCollection Warnings { get { throw null; } } } + public partial class EntitiesTask + { + public EntitiesTask() { } + public Azure.AI.TextAnalytics.Models.EntitiesTaskParameters Parameters { get { throw null; } set { } } + } + public partial class Entity + { + internal Entity() { } + public string Category { get { throw null; } } + public double ConfidenceScore { get { throw null; } } + public int Length { get { throw null; } } + public int Offset { get { throw null; } } + public string Subcategory { get { throw null; } } + public string Text { get { throw null; } } + } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct EntityCategory : System.IEquatable { @@ -107,6 +132,14 @@ internal DocumentSentiment() { } public static bool operator !=(Azure.AI.TextAnalytics.EntityCategory left, Azure.AI.TextAnalytics.EntityCategory right) { throw null; } public override string ToString() { throw null; } } + public partial class EntityRecognitionPiiTasksItem : Azure.AI.TextAnalytics.TaskState + { + internal EntityRecognitionPiiTasksItem() { } + } + public partial class EntityRecognitionTasksItem : Azure.AI.TextAnalytics.TaskState + { + internal EntityRecognitionTasksItem() { } + } public partial class ExtractKeyPhrasesResult : Azure.AI.TextAnalytics.TextAnalyticsResult { internal ExtractKeyPhrasesResult() { } @@ -118,11 +151,90 @@ internal ExtractKeyPhrasesResultCollection() : base (default(System.Collections. public string ModelVersion { get { throw null; } } public Azure.AI.TextAnalytics.TextDocumentBatchStatistics Statistics { get { throw null; } } } + public partial class HealthcareEntity : Azure.AI.TextAnalytics.Entity + { + internal HealthcareEntity() { } + public bool IsNegated { get { throw null; } } + public System.Collections.Generic.IReadOnlyList Links { get { throw null; } } + } + public partial class HealthcareEntityLink + { + internal HealthcareEntityLink() { } + public string DataSource { get { throw null; } } + public string Id { get { throw null; } } + } + public partial class HealthcareOperation : Azure.Operation + { + public HealthcareOperation(string operationId, Azure.AI.TextAnalytics.TextAnalyticsClient client) { } + public override bool HasCompleted { get { throw null; } } + public override bool HasValue { get { throw null; } } + public override string Id { get { throw null; } } + public string NextLink { get { throw null; } set { } } + public override Azure.AI.TextAnalytics.RecognizeHealthcareEntitiesResultCollection Value { get { throw null; } } + public override Azure.Response GetRawResponse() { throw null; } + public override Azure.Response UpdateStatus(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask UpdateStatusAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.TimeSpan pollingInterval, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + } + public partial class HealthcareOptions : Azure.AI.TextAnalytics.TextAnalyticsRequestOptions + { + public HealthcareOptions() { } + public int? Skip { get { throw null; } set { } } + public int? Top { get { throw null; } set { } } + } + public partial class HealthcareRelation + { + internal HealthcareRelation() { } + public bool Bidirectional { get { throw null; } } + public string RelationType { get { throw null; } } + public Azure.AI.TextAnalytics.HealthcareEntity Source { get { throw null; } } + public Azure.AI.TextAnalytics.HealthcareEntity Target { get { throw null; } } + } + public partial class JobManifestTasks + { + public JobManifestTasks() { } + public System.Collections.Generic.IList EntityRecognitionPiiTasks { get { throw null; } } + public System.Collections.Generic.IList EntityRecognitionTasks { get { throw null; } } + public System.Collections.Generic.IList KeyPhraseExtractionTasks { get { throw null; } } + } + [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] + public readonly partial struct JobStatus : System.IEquatable + { + private readonly object _dummy; + private readonly int _dummyPrimitive; + public JobStatus(string value) { throw null; } + public static Azure.AI.TextAnalytics.JobStatus Cancelled { get { throw null; } } + public static Azure.AI.TextAnalytics.JobStatus Cancelling { get { throw null; } } + public static Azure.AI.TextAnalytics.JobStatus Failed { get { throw null; } } + public static Azure.AI.TextAnalytics.JobStatus Notstarted { get { throw null; } } + public static Azure.AI.TextAnalytics.JobStatus Partiallycompleted { get { throw null; } } + public static Azure.AI.TextAnalytics.JobStatus Running { get { throw null; } } + public static Azure.AI.TextAnalytics.JobStatus Succeeded { get { throw null; } } + public bool Equals(Azure.AI.TextAnalytics.JobStatus other) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override bool Equals(object obj) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override int GetHashCode() { throw null; } + public static bool operator ==(Azure.AI.TextAnalytics.JobStatus left, Azure.AI.TextAnalytics.JobStatus right) { throw null; } + public static implicit operator Azure.AI.TextAnalytics.JobStatus (string value) { throw null; } + public static bool operator !=(Azure.AI.TextAnalytics.JobStatus left, Azure.AI.TextAnalytics.JobStatus right) { throw null; } + public override string ToString() { throw null; } + } public partial class KeyPhraseCollection : System.Collections.ObjectModel.ReadOnlyCollection { internal KeyPhraseCollection() : base (default(System.Collections.Generic.IList)) { } public System.Collections.Generic.IReadOnlyCollection Warnings { get { throw null; } } } + public partial class KeyPhraseExtractionTasksItem : Azure.AI.TextAnalytics.TaskState + { + internal KeyPhraseExtractionTasksItem() { } + } + public partial class KeyPhrasesTask + { + public KeyPhrasesTask() { } + public Azure.AI.TextAnalytics.Models.KeyPhrasesTaskParameters Parameters { get { throw null; } set { } } + } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct LinkedEntity { @@ -190,6 +302,18 @@ public enum PiiEntityDomainType { ProtectedHealthInformation = 0, } + public partial class PiiTask + { + public PiiTask() { } + public Azure.AI.TextAnalytics.PiiTaskParameters Parameters { get { throw null; } set { } } + } + public partial class PiiTaskParameters + { + public PiiTaskParameters() { } + public Azure.AI.TextAnalytics.Models.PiiTaskParametersDomain? Domain { get { throw null; } set { } } + public string ModelVersion { get { throw null; } set { } } + public Azure.AI.TextAnalytics.StringIndexType? StringIndexType { get { throw null; } set { } } + } public partial class RecognizeEntitiesResult : Azure.AI.TextAnalytics.TextAnalyticsResult { internal RecognizeEntitiesResult() { } @@ -201,6 +325,17 @@ internal RecognizeEntitiesResultCollection() : base (default(System.Collections. public string ModelVersion { get { throw null; } } public Azure.AI.TextAnalytics.TextDocumentBatchStatistics Statistics { get { throw null; } } } + public partial class RecognizeHealthcareEntitiesResultCollection : System.Collections.ObjectModel.ReadOnlyCollection + { + internal RecognizeHealthcareEntitiesResultCollection() : base (default(System.Collections.Generic.IList)) { } + public string ModelVersion { get { throw null; } } + public Azure.AI.TextAnalytics.TextDocumentBatchStatistics Statistics { get { throw null; } } + } + public partial class RecognizeHealthcareEntititesResult : Azure.AI.TextAnalytics.TextAnalyticsResult + { + internal RecognizeHealthcareEntititesResult() { } + public Azure.AI.TextAnalytics.DocumentHealthcareResult Result { get { throw null; } } + } public partial class RecognizeLinkedEntitiesResult : Azure.AI.TextAnalytics.TextAnalyticsResult { internal RecognizeLinkedEntitiesResult() { } @@ -246,6 +381,44 @@ internal SentimentConfidenceScores() { } public double Neutral { get { throw null; } } public double Positive { get { throw null; } } } + [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] + public readonly partial struct StringIndexType : System.IEquatable + { + private readonly object _dummy; + private readonly int _dummyPrimitive; + public StringIndexType(string value) { throw null; } + public static Azure.AI.TextAnalytics.StringIndexType TextElementsV8 { get { throw null; } } + public static Azure.AI.TextAnalytics.StringIndexType UnicodeCodePoint { get { throw null; } } + public static Azure.AI.TextAnalytics.StringIndexType Utf16CodeUnit { get { throw null; } } + public bool Equals(Azure.AI.TextAnalytics.StringIndexType other) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override bool Equals(object obj) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override int GetHashCode() { throw null; } + public static bool operator ==(Azure.AI.TextAnalytics.StringIndexType left, Azure.AI.TextAnalytics.StringIndexType right) { throw null; } + public static implicit operator Azure.AI.TextAnalytics.StringIndexType (string value) { throw null; } + public static bool operator !=(Azure.AI.TextAnalytics.StringIndexType left, Azure.AI.TextAnalytics.StringIndexType right) { throw null; } + public override string ToString() { throw null; } + } + public partial class TasksStateTasks + { + internal TasksStateTasks() { } + public int Completed { get { throw null; } } + public System.Collections.Generic.IReadOnlyList Details { get { throw null; } } + public System.Collections.Generic.IReadOnlyList EntityRecognitionPiiTasks { get { throw null; } } + public System.Collections.Generic.IReadOnlyList EntityRecognitionTasks { get { throw null; } } + public int Failed { get { throw null; } } + public int InProgress { get { throw null; } } + public System.Collections.Generic.IReadOnlyList KeyPhraseExtractionTasks { get { throw null; } } + public int Total { get { throw null; } } + } + public partial class TaskState + { + internal TaskState() { } + public System.DateTimeOffset LastUpdateDateTime { get { throw null; } } + public string Name { get { throw null; } } + public Azure.AI.TextAnalytics.JobStatus Status { get { throw null; } } + } public partial class TextAnalyticsClient { protected TextAnalyticsClient() { } @@ -287,6 +460,7 @@ public TextAnalyticsClient(System.Uri endpoint, Azure.Core.TokenCredential crede public virtual System.Threading.Tasks.Task> ExtractKeyPhrasesBatchAsync(System.Collections.Generic.IEnumerable documents, string language = null, Azure.AI.TextAnalytics.TextAnalyticsRequestOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] public override int GetHashCode() { throw null; } + public virtual Azure.AsyncPageable GetHealthcareEntities(Azure.AI.TextAnalytics.HealthcareOperation operation, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response RecognizeEntities(string document, string language = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> RecognizeEntitiesAsync(string document, string language = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.Response RecognizeEntitiesBatch(System.Collections.Generic.IEnumerable documents, Azure.AI.TextAnalytics.TextAnalyticsRequestOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } @@ -305,6 +479,14 @@ public TextAnalyticsClient(System.Uri endpoint, Azure.Core.TokenCredential crede public virtual Azure.Response RecognizePiiEntitiesBatch(System.Collections.Generic.IEnumerable documents, string language = null, Azure.AI.TextAnalytics.RecognizePiiEntitiesOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> RecognizePiiEntitiesBatchAsync(System.Collections.Generic.IEnumerable documents, Azure.AI.TextAnalytics.RecognizePiiEntitiesOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> RecognizePiiEntitiesBatchAsync(System.Collections.Generic.IEnumerable documents, string language = null, Azure.AI.TextAnalytics.RecognizePiiEntitiesOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual string StartCancelHealthJob(Azure.AI.TextAnalytics.HealthcareOperation operation, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartCancelHealthJobAsync(Azure.AI.TextAnalytics.HealthcareOperation operation, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.AI.TextAnalytics.HealthcareOperation StartHealthcare(string document, string language = null, Azure.AI.TextAnalytics.HealthcareOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartHealthcareAsync(string document, string language = null, Azure.AI.TextAnalytics.HealthcareOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.AI.TextAnalytics.HealthcareOperation StartHealthcareBatch(System.Collections.Generic.IEnumerable documents, Azure.AI.TextAnalytics.HealthcareOptions options, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.AI.TextAnalytics.HealthcareOperation StartHealthcareBatch(System.Collections.Generic.IEnumerable documents, string language = null, Azure.AI.TextAnalytics.HealthcareOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartHealthcareBatchAsync(System.Collections.Generic.IEnumerable documents, Azure.AI.TextAnalytics.HealthcareOptions options, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartHealthcareBatchAsync(System.Collections.Generic.IEnumerable documents, string language = null, Azure.AI.TextAnalytics.HealthcareOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] public override string ToString() { throw null; } } @@ -344,6 +526,7 @@ public readonly partial struct TextAnalyticsError public static readonly string InvalidRequestBodyFormat; public static readonly string MissingInputRecords; public static readonly string ModelVersionIncorrect; + public static readonly string NotFound; public static readonly string ServiceUnavailable; public static readonly string UnsupportedLanguageCode; public bool Equals(Azure.AI.TextAnalytics.TextAnalyticsErrorCode other) { throw null; } @@ -479,6 +662,38 @@ public enum TextSentiment Mixed = 3, } } +namespace Azure.AI.TextAnalytics.Models +{ + public partial class EntitiesTaskParameters + { + public EntitiesTaskParameters() { } + public string ModelVersion { get { throw null; } set { } } + public Azure.AI.TextAnalytics.StringIndexType? StringIndexType { get { throw null; } set { } } + } + public partial class KeyPhrasesTaskParameters + { + public KeyPhrasesTaskParameters() { } + public string ModelVersion { get { throw null; } set { } } + } + [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] + public readonly partial struct PiiTaskParametersDomain : System.IEquatable + { + private readonly object _dummy; + private readonly int _dummyPrimitive; + public PiiTaskParametersDomain(string value) { throw null; } + public static Azure.AI.TextAnalytics.Models.PiiTaskParametersDomain None { get { throw null; } } + public static Azure.AI.TextAnalytics.Models.PiiTaskParametersDomain Phi { get { throw null; } } + public bool Equals(Azure.AI.TextAnalytics.Models.PiiTaskParametersDomain other) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override bool Equals(object obj) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override int GetHashCode() { throw null; } + public static bool operator ==(Azure.AI.TextAnalytics.Models.PiiTaskParametersDomain left, Azure.AI.TextAnalytics.Models.PiiTaskParametersDomain right) { throw null; } + public static implicit operator Azure.AI.TextAnalytics.Models.PiiTaskParametersDomain (string value) { throw null; } + public static bool operator !=(Azure.AI.TextAnalytics.Models.PiiTaskParametersDomain left, Azure.AI.TextAnalytics.Models.PiiTaskParametersDomain right) { throw null; } + public override string ToString() { throw null; } + } +} namespace Microsoft.Extensions.Azure { public static partial class TextAnalyticsClientBuilderExtensions From 0e1e4c303680fd6f9ddcc1ca89fe0bfe3fb2d928 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Tue, 3 Nov 2020 12:11:40 -0800 Subject: [PATCH 23/58] Added RecogniseHealthcareEntitiesTests --- .../src/DocumentHealthcareResult.cs | 2 +- .../src/HealthcareOperation.cs | 1 + .../src/TextAnalyticsClient.cs | 45 +- .../tests/RecognizeHealthcareEntitiesTests.cs | 230 +++ ...ealthcareEntitiesBatchConvenienceTest.json | 1122 +++++++++++++++ ...iesBatchConvenienceWithStatisticsTest.json | 1200 ++++++++++++++++ .../RecognizeHealthcareEntitiesBatchTest.json | 1230 ++++++++++++++++ ...eHealthcareEntitiesBatchWithErrorTest.json | 1247 +++++++++++++++++ ...thcareEntitiesBatchWithStatisticsTest.json | 1200 ++++++++++++++++ .../RecognizeHealthcareEntitiesTest.json | 440 ++++++ ...izeHealthcareEntitiesWithLanguageTest.json | 368 +++++ ...zeHealthcareEntitiesWithSkipParameter.json | 953 +++++++++++++ ...izeHealthcareEntitiesWithTopParameter.json | 344 +++++ ...ognizePiiEntitiesBatchConvenienceTest.json | 109 ++ ...ePiiEntitiesBatchConvenienceTestAsync.json | 109 ++ ...iesBatchConvenienceWithStatisticsTest.json | 123 ++ ...tchConvenienceWithStatisticsTestAsync.json | 123 ++ .../RecognizePiiEntitiesBatchTest.json | 109 ++ .../RecognizePiiEntitiesBatchTestAsync.json | 109 ++ ...ecognizePiiEntitiesBatchWithErrorTest.json | 126 ++ ...izePiiEntitiesBatchWithErrorTestAsync.json | 126 ++ ...izePiiEntitiesBatchWithStatisticsTest.json | 123 ++ ...iEntitiesBatchWithStatisticsTestAsync.json | 123 ++ .../RecognizePiiEntitiesTest.json | 76 + .../RecognizePiiEntitiesTestAsync.json | 76 + .../RecognizePiiEntitiesWithDomainTest.json | 69 + ...cognizePiiEntitiesWithDomainTestAsync.json | 69 + .../RecognizePiiEntitiesWithLanguageTest.json | 76 + ...gnizePiiEntitiesWithLanguageTestAsync.json | 76 + ...ognizePiiEntitiesBatchConvenienceTest.json | 10 +- ...ecognizePiiEntitiesBatchWithErrorTest.json | 10 +- ...izePiiEntitiesBatchWithErrorTestAsync.json | 10 +- .../Sample_HealthcareAsync_ShowStats.cs | 4 +- 33 files changed, 10014 insertions(+), 24 deletions(-) create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeHealthcareEntitiesTests.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchTest.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesTest.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesTestAsync.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesWithDomainTest.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareResult.cs index 4a95ef5556e35..aec07a8d9b86c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareResult.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareResult.cs @@ -18,7 +18,7 @@ public partial class DocumentHealthcareResult internal DocumentHealthcareResult(DocumentHealthcareEntitiesInternal documentHealthcareEntities) { Entities = documentHealthcareEntities.Entities; - Relations = ResolveHealthcareRelations(documentHealthcareEntities.Entities, documentHealthcareEntities.Relations); + Relations = documentHealthcareEntities.Relations != null ? ResolveHealthcareRelations(documentHealthcareEntities.Entities, documentHealthcareEntities.Relations) : null; Id = documentHealthcareEntities.Id; Warnings = documentHealthcareEntities.Warnings != null ? Transforms.ConvertToWarnings(documentHealthcareEntities.Warnings) : null; } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs index 158113a220269..2995da66e309e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs @@ -207,6 +207,7 @@ private async ValueTask UpdateStatusAsync(bool async, CancellationToke { // we need to first assign a vaue and then mark the operation as completed to avoid race conditions _value = Transforms.ConvertToRecognizeHealthcareEntitiesResultCollection(update.Value.Results); + NextLink = update.Value.NextLink; _hasCompleted = true; } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index 83e657fea9d9e..facda8909496d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -2096,7 +2096,24 @@ public virtual async Task StartHealthcareAsync(string docum MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents, language); - return await StartHealthcareBatchAsync(documentInputs, options, cancellationToken).ConfigureAwait(false); + using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartHealthcareAsync)}"); + scope.Start(); + + try + { + ResponseWithHeaders response = await _serviceRestClient.HealthAsync(documentInputs, options.ModelVersion, _stringCodeUnit, cancellationToken).ConfigureAwait(false); + string location = response.Headers.OperationLocation; + + IDictionary idToIndexMap = CreateIdToIndexMap(documentInputs.Documents); + + return new HealthcareOperation(_serviceRestClient, _clientDiagnostics, location, idToIndexMap); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } /// @@ -2121,7 +2138,23 @@ public virtual HealthcareOperation StartHealthcare(string document, string langu MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents, language); - return StartHealthcareBatch(documentInputs, options, cancellationToken); + using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartHealthcare)}"); + scope.Start(); + + try + { + ResponseWithHeaders response = _serviceRestClient.Health(documentInputs, options.ModelVersion, _stringCodeUnit, cancellationToken); + string location = response.Headers.OperationLocation; + + IDictionary idToIndexMap = CreateIdToIndexMap(documentInputs.Documents); + + return new HealthcareOperation(_serviceRestClient, _clientDiagnostics, location, idToIndexMap); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } } /// @@ -2206,7 +2239,7 @@ public virtual HealthcareOperation StartHealthcareBatch(IEnumerableA controlling the request lifetime. /// A to wait on this long-running operation. Its upon successful /// completion will contain layout elements extracted from the form. - public virtual async Task StartHealthcareBatchAsync(IEnumerable documents, HealthcareOptions options, CancellationToken cancellationToken = default) + public virtual async Task StartHealthcareBatchAsync(IEnumerable documents, HealthcareOptions options = default, CancellationToken cancellationToken = default) { Argument.AssertNotNull(documents, nameof(documents)); @@ -2221,7 +2254,7 @@ private HealthcareOperation StartHealthcareBatch(MultiLanguageBatchInput batchIn { options ??= new HealthcareOptions(); - using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartHealthcare)}"); + using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartHealthcareBatch)}"); scope.Start(); try @@ -2231,7 +2264,7 @@ private HealthcareOperation StartHealthcareBatch(MultiLanguageBatchInput batchIn IDictionary idToIndexMap = CreateIdToIndexMap(batchInput.Documents); - return new HealthcareOperation(_serviceRestClient, _clientDiagnostics, location, idToIndexMap); + return new HealthcareOperation(_serviceRestClient, _clientDiagnostics, location, idToIndexMap, options.Top, options.Skip, options.IncludeStatistics); } catch (Exception e) { @@ -2244,7 +2277,7 @@ private async Task StartHealthcareBatchAsync(MultiLanguageB { options ??= new HealthcareOptions(); - using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartHealthcare)}"); + using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartHealthcareBatchAsync)}"); scope.Start(); try diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeHealthcareEntitiesTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeHealthcareEntitiesTests.cs new file mode 100644 index 0000000000000..8f12e10ff1129 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeHealthcareEntitiesTests.cs @@ -0,0 +1,230 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using NUnit.Framework; + +namespace Azure.AI.TextAnalytics.Tests +{ + public class RecognizeHealthcareEntitiesTests : TextAnalyticsClientLiveTestBase + { + public RecognizeHealthcareEntitiesTests(bool isAsync) : base(isAsync) { } + + private const string singleEnglish = "Subject is taking 100mg of ibuprofen twice daily"; + + private static List batchConvenienceDocuments = new List + { + "Subject is taking 100mg of ibuprofen twice daily", + "Can cause rapid or irregular heartbeat, delirium, panic, psychosis, and heart failure." + }; + + private static List batchDocuments = new List + { + new TextDocumentInput("1", "Subject is taking 100mg of ibuprofen twice daily") + { + Language = "en", + }, + new TextDocumentInput("2", "Can cause rapid or irregular heartbeat, delirium, panic, psychosis, and heart failure.") + { + Language = "en", + } + }; + + [Test] + public async Task RecognizeHealthcareEntitiesTest() + { + TextAnalyticsClient client = GetClient(); + string document = singleEnglish; + + HealthcareOperation operation = await client.StartHealthcareAsync(document); + + await operation.WaitForCompletionAsync(); + + RecognizeHealthcareEntitiesResultCollection resultCollection = operation.Value; + + Assert.AreEqual(1, resultCollection.Count); + + var entitiesList = new List { "100mg", "ibuprofen", "twice daily" }; + foreach (DocumentHealthcareResult result in resultCollection) + { + foreach (HealthcareEntity entity in result.Entities) + { + Assert.IsTrue(entitiesList.Contains(entity.Text)); + } + } + } + + [Test] + public async Task RecognizeHealthcareEntitiesWithLanguageTest() + { + TextAnalyticsClient client = GetClient(); + string document = singleEnglish; + + HealthcareOperation operation = await client.StartHealthcareBatchAsync(new List() { document }, "en"); + + await operation.WaitForCompletionAsync(); + + RecognizeHealthcareEntitiesResultCollection resultCollection = operation.Value; + + foreach (DocumentHealthcareResult result in resultCollection) + { + Assert.AreEqual(3, result.Entities.Count); + Assert.IsNotNull(result.Id); + } + } + + [Test] + public async Task RecognizeHealthcareEntitiesWithTopParameter() + { + TextAnalyticsClient client = GetClient(); + + HealthcareOptions options = new HealthcareOptions() + { + Top = 1, + Skip = 0, + IncludeStatistics = true + }; + + HealthcareOperation operation = await client.StartHealthcareBatchAsync(batchDocuments, options); + + await operation.WaitForCompletionAsync(); + + RecognizeHealthcareEntitiesResultCollection resultCollection = operation.Value; + + Assert.AreEqual(1, resultCollection.Count); + Assert.AreEqual(3, resultCollection[0].Entities.Count); + Assert.IsNotNull(resultCollection[0].Id); + Assert.AreEqual("100mg", resultCollection[0].Entities.FirstOrDefault().Text); + Assert.AreEqual("Dosage", resultCollection[0].Entities.FirstOrDefault().Category); + } + + [Test] + public async Task RecognizeHealthcareEntitiesWithSkipParameter() + { + TextAnalyticsClient client = GetClient(); + + HealthcareOptions options = new HealthcareOptions() + { + Skip = 1 + }; + + HealthcareOperation operation = await client.StartHealthcareBatchAsync(batchDocuments, options); + + await operation.WaitForCompletionAsync(); + + RecognizeHealthcareEntitiesResultCollection resultCollection = operation.Value; + + Assert.AreEqual(1, resultCollection.Count); + Assert.AreEqual(6, resultCollection[0].Entities.Count); + Assert.IsNotNull(resultCollection[0].Id); + Assert.AreEqual("rapid", resultCollection[0].Entities.FirstOrDefault().Text); + Assert.AreEqual("SymptomOrSign", resultCollection[0].Entities.FirstOrDefault().Category); + } + + [Test] + public async Task RecognizeHealthcareEntitiesBatchWithErrorTest() + { + TextAnalyticsClient client = GetClient(); + var documents = new List + { + "Subject is taking 100mg of ibuprofen twice daily", + "Can cause rapid or irregular heartbeat, delirium, panic, psychosis, and heart failure.", + "", + }; + + HealthcareOperation operation = await client.StartHealthcareBatchAsync(documents); + + await operation.WaitForCompletionAsync(); + + RecognizeHealthcareEntitiesResultCollection resultCollection = operation.Value; + + Assert.IsNotNull(resultCollection[0].Id); + Assert.IsNotNull(resultCollection[0].TextAnalyticsError); + Assert.AreEqual("Document text is empty.", resultCollection[0].TextAnalyticsError.Message); + Assert.AreEqual(TextAnalyticsErrorCode.InvalidDocument, resultCollection[0].TextAnalyticsError.ErrorCode.ToString()); + } + + [Test] + public async Task RecognizeHealthcareEntitiesBatchConvenienceTest() + { + TextAnalyticsClient client = GetClient(); + var documents = batchConvenienceDocuments; + + HealthcareOperation operation = await client.StartHealthcareBatchAsync(documents); + + await operation.WaitForCompletionAsync(); + + RecognizeHealthcareEntitiesResultCollection resultCollection = operation.Value; + + Assert.AreEqual(resultCollection.Count(), 2); + } + + [Test] + public async Task RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest() + { + TextAnalyticsClient client = GetClient(); + var documents = batchConvenienceDocuments; + + HealthcareOptions options = new HealthcareOptions() + { + IncludeStatistics = true + }; + + HealthcareOperation operation = await client.StartHealthcareBatchAsync(documents, "en", options); + + await operation.WaitForCompletionAsync(); + + RecognizeHealthcareEntitiesResultCollection resultCollection = operation.Value; + + Assert.GreaterOrEqual(resultCollection.Count(), 2); + + Assert.Greater(resultCollection.Statistics.DocumentCount, 0); + Assert.AreEqual(2, resultCollection.Statistics.DocumentCount); + Assert.AreEqual(2, resultCollection.Statistics.TransactionCount); + Assert.AreEqual(0, resultCollection.Statistics.InvalidDocumentCount); + } + + [Test] + public async Task RecognizeHealthcareEntitiesBatchTest() + { + TextAnalyticsClient client = GetClient(); + List documents = batchDocuments; + + HealthcareOperation operation = await client.StartHealthcareBatchAsync(documents); + + await operation.WaitForCompletionAsync(); + + RecognizeHealthcareEntitiesResultCollection resultCollection = operation.Value; + + Assert.GreaterOrEqual(resultCollection.Count(), 2); + } + + [Test] + public async Task RecognizeHealthcareEntitiesBatchWithStatisticsTest() + { + TextAnalyticsClient client = GetClient(); + var documents = batchDocuments; + + HealthcareOptions options = new HealthcareOptions() + { + IncludeStatistics = true + }; + + HealthcareOperation operation = await client.StartHealthcareBatchAsync(documents, options); + + await operation.WaitForCompletionAsync(); + + RecognizeHealthcareEntitiesResultCollection resultCollection = operation.Value; + + Assert.GreaterOrEqual(resultCollection.Count(), 2); + + Assert.Greater(resultCollection.Statistics.DocumentCount, 0); + Assert.AreEqual(2, resultCollection.Statistics.DocumentCount); + Assert.AreEqual(2, resultCollection.Statistics.TransactionCount); + Assert.AreEqual(0, resultCollection.Statistics.InvalidDocumentCount); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json new file mode 100644 index 0000000000000..87f0348be5a2e --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json @@ -0,0 +1,1122 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "223", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-4be4221e14c57542968ffa63be8afa37-dd3623b63c4b1e4f-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1d7c0f7df9a5be46a7bf1d0b574c6095", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Subject is taking 100mg of ibuprofen twice daily", + "language": "en" + }, + { + "id": "1", + "text": "Can cause rapid or irregular heartbeat, delirium, panic, psychosis, and heart failure.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "99db0b4e-91f0-428b-a566-a95901575d69", + "Date": "Tue, 03 Nov 2020 19:54:33 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/00bf2ee9-cd9d-4dd1-825e-86153aff42d6", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "164" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/00bf2ee9-cd9d-4dd1-825e-86153aff42d6?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9441bfd5d8fa13e75ab79017f0dbec22", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "869db77e-1b96-4aa0-bfa4-3137be77155d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5" + }, + "ResponseBody": { + "jobId": "00bf2ee9-cd9d-4dd1-825e-86153aff42d6", + "lastUpdateDateTime": "2020-11-03T19:54:33Z", + "createdDateTime": "2020-11-03T19:54:33Z", + "expirationDateTime": "2020-11-04T19:54:33Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/00bf2ee9-cd9d-4dd1-825e-86153aff42d6?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1f1476b4f8decd8416de12a15e37d599", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cb8d4155-38a9-462b-99ce-154034bac3f2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54: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": "00bf2ee9-cd9d-4dd1-825e-86153aff42d6", + "lastUpdateDateTime": "2020-11-03T19:54:33Z", + "createdDateTime": "2020-11-03T19:54:33Z", + "expirationDateTime": "2020-11-04T19:54:33Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/00bf2ee9-cd9d-4dd1-825e-86153aff42d6?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9fb8c34e36bba5c72869c2ed682ecdcc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e6d00d64-e9d4-482f-8b06-89c2d6b2c60b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "69" + }, + "ResponseBody": { + "jobId": "00bf2ee9-cd9d-4dd1-825e-86153aff42d6", + "lastUpdateDateTime": "2020-11-03T19:54:34Z", + "createdDateTime": "2020-11-03T19:54:33Z", + "expirationDateTime": "2020-11-04T19:54:33Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "statistics": { + "charactersCount": 48, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 18, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 27, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 37, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0, + "isNegated": false + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/0", + "target": "#/results/documents/0/entities/1" + }, + { + "relationType": "FrequencyOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/2", + "target": "#/results/documents/0/entities/1" + } + ] + }, + { + "id": "1", + "statistics": { + "charactersCount": 86, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 10, + "length": 5, + "text": "rapid", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0456962" + }, + { + "dataSource": "AOD", + "id": "0000002744" + }, + { + "dataSource": "CHV", + "id": "0000034666" + }, + { + "dataSource": "LNC", + "id": "LA24868-4" + }, + { + "dataSource": "NCI", + "id": "C65069" + }, + { + "dataSource": "RCD", + "id": "X78xZ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "255358001" + } + ] + }, + { + "offset": 19, + "length": 19, + "text": "irregular heartbeat", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0003811" + }, + { + "dataSource": "AOD", + "id": "0000005346" + }, + { + "dataSource": "BI", + "id": "BI00057" + }, + { + "dataSource": "CCPSS", + "id": "1017785" + }, + { + "dataSource": "CCS", + "id": "7.2.9" + }, + { + "dataSource": "CCSR_10", + "id": "CIR017" + }, + { + "dataSource": "CHV", + "id": "0000001440" + }, + { + "dataSource": "COSTAR", + "id": "153" + }, + { + "dataSource": "CSP", + "id": "1393-3277" + }, + { + "dataSource": "CST", + "id": "ARRHYTHMIA" + }, + { + "dataSource": "HPO", + "id": "HP:0011675" + }, + { + "dataSource": "ICD10", + "id": "I49.9" + }, + { + "dataSource": "ICD10AM", + "id": "I49.9" + }, + { + "dataSource": "ICD10CM", + "id": "I49.9" + }, + { + "dataSource": "ICD9CM", + "id": "427.9" + }, + { + "dataSource": "ICPC", + "id": "K80" + }, + { + "dataSource": "ICPC2EENG", + "id": "K80" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU033639" + }, + { + "dataSource": "ICPC2P", + "id": "K80012" + }, + { + "dataSource": "LCH", + "id": "U000359" + }, + { + "dataSource": "LCH_NW", + "id": "sh85007430" + }, + { + "dataSource": "LNC", + "id": "LA15419-7" + }, + { + "dataSource": "MDR", + "id": "10003119" + }, + { + "dataSource": "MEDCIN", + "id": "35851" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "147" + }, + { + "dataSource": "MSH", + "id": "D001145" + }, + { + "dataSource": "MTH", + "id": "153" + }, + { + "dataSource": "MTHICD9", + "id": "427.9" + }, + { + "dataSource": "NANDA-I", + "id": "00126" + }, + { + "dataSource": "NCI", + "id": "C2881" + }, + { + "dataSource": "NCI_FDA", + "id": "1721" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2881" + }, + { + "dataSource": "NOC", + "id": "040520" + }, + { + "dataSource": "OMIM", + "id": "115000" + }, + { + "dataSource": "PSY", + "id": "03790" + }, + { + "dataSource": "RCD", + "id": "X77BB" + }, + { + "dataSource": "SNM", + "id": "F-73102" + }, + { + "dataSource": "SNMI", + "id": "D3-30010" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "698247007" + }, + { + "dataSource": "WHO", + "id": "0433" + } + ] + }, + { + "offset": 40, + "length": 8, + "text": "delirium", + "category": "Diagnosis", + "confidenceScore": 0.99, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0011206" + }, + { + "dataSource": "AOD", + "id": "0000004328" + }, + { + "dataSource": "CCPSS", + "id": "1017884" + }, + { + "dataSource": "CHV", + "id": "0000003670" + }, + { + "dataSource": "COSTAR", + "id": "U000178" + }, + { + "dataSource": "CSP", + "id": "5003-0016" + }, + { + "dataSource": "CST", + "id": "DELIRIUM" + }, + { + "dataSource": "DSM-5", + "id": "780.09" + }, + { + "dataSource": "DXP", + "id": "U000937" + }, + { + "dataSource": "HPO", + "id": "HP:0031258" + }, + { + "dataSource": "ICD10", + "id": "F05.9" + }, + { + "dataSource": "ICD10AM", + "id": "F05.9" + }, + { + "dataSource": "ICD10CM", + "id": "R41.0" + }, + { + "dataSource": "ICNP", + "id": "10022091" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU022150" + }, + { + "dataSource": "LCH", + "id": "U001289" + }, + { + "dataSource": "LCH_NW", + "id": "sh85036579" + }, + { + "dataSource": "LNC", + "id": "LP89856-6" + }, + { + "dataSource": "MDR", + "id": "10012218" + }, + { + "dataSource": "MEDCIN", + "id": "677" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5562" + }, + { + "dataSource": "MSH", + "id": "D003693" + }, + { + "dataSource": "NANDA-I", + "id": "02157" + }, + { + "dataSource": "NCI", + "id": "C2981" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E12898" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2981" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000450100" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2981" + }, + { + "dataSource": "NOC", + "id": "091213" + }, + { + "dataSource": "OMIM", + "id": "MTHU035152" + }, + { + "dataSource": "PDQ", + "id": "CDR0000042226" + }, + { + "dataSource": "PSY", + "id": "13360" + }, + { + "dataSource": "QMR", + "id": "Q0200089" + }, + { + "dataSource": "RCD", + "id": "XE1Xv" + }, + { + "dataSource": "SNM", + "id": "F-85720" + }, + { + "dataSource": "SNMI", + "id": "D9-20100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2776000" + }, + { + "dataSource": "WHO", + "id": "0099" + } + ] + }, + { + "offset": 50, + "length": 5, + "text": "panic", + "category": "Diagnosis", + "confidenceScore": 0.89, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0030318" + }, + { + "dataSource": "AOD", + "id": "0000023911" + }, + { + "dataSource": "CHV", + "id": "0000009234" + }, + { + "dataSource": "CST", + "id": "AGITATION" + }, + { + "dataSource": "ICD10CM", + "id": "F41.0" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU057222" + }, + { + "dataSource": "LCH", + "id": "U003458" + }, + { + "dataSource": "LCH_NW", + "id": "sh85097438" + }, + { + "dataSource": "MDR", + "id": "10033670" + }, + { + "dataSource": "MSH", + "id": "D010200" + }, + { + "dataSource": "MTH", + "id": "551" + }, + { + "dataSource": "MTHICD9", + "id": "300.01" + }, + { + "dataSource": "NCI", + "id": "C94438" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000454704" + }, + { + "dataSource": "NOC", + "id": "121346" + }, + { + "dataSource": "PSY", + "id": "36260" + }, + { + "dataSource": "RCD", + "id": "Xa3Vj" + }, + { + "dataSource": "SNM", + "id": "F-90880" + }, + { + "dataSource": "SNMI", + "id": "F-92560" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "79823003" + }, + { + "dataSource": "WHO", + "id": "0163" + } + ] + }, + { + "offset": 57, + "length": 9, + "text": "psychosis", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0033975" + }, + { + "dataSource": "AIR", + "id": "PSYCH" + }, + { + "dataSource": "AOD", + "id": "0000004324" + }, + { + "dataSource": "BI", + "id": "BI00688" + }, + { + "dataSource": "CCPSS", + "id": "1018204" + }, + { + "dataSource": "CHV", + "id": "0000010350" + }, + { + "dataSource": "COSTAR", + "id": "089" + }, + { + "dataSource": "CSP", + "id": "2484-8182" + }, + { + "dataSource": "CST", + "id": "PSYCHOSIS" + }, + { + "dataSource": "DXP", + "id": "U003257" + }, + { + "dataSource": "HPO", + "id": "HP:0000709" + }, + { + "dataSource": "ICD9CM", + "id": "298.9" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU070382" + }, + { + "dataSource": "ICPC2P", + "id": "P98004" + }, + { + "dataSource": "LCH_NW", + "id": "sh85108502" + }, + { + "dataSource": "LNC", + "id": "LA7534-6" + }, + { + "dataSource": "MDR", + "id": "10061920" + }, + { + "dataSource": "MEDCIN", + "id": "364298" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4180" + }, + { + "dataSource": "MSH", + "id": "D011618" + }, + { + "dataSource": "MTH", + "id": "089" + }, + { + "dataSource": "MTHICD9", + "id": "298.9" + }, + { + "dataSource": "NANDA-I", + "id": "03128" + }, + { + "dataSource": "NCI", + "id": "C78576" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E12954" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000450115" + }, + { + "dataSource": "NCI_NICHD", + "id": "C78576" + }, + { + "dataSource": "NOC", + "id": "061619" + }, + { + "dataSource": "OMIM", + "id": "MTHU002910" + }, + { + "dataSource": "PSY", + "id": "41910" + }, + { + "dataSource": "QMR", + "id": "Q0200208" + }, + { + "dataSource": "RCD", + "id": "X00S6" + }, + { + "dataSource": "SNM", + "id": "D-9200" + }, + { + "dataSource": "SNMI", + "id": "D9-72000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "69322001" + }, + { + "dataSource": "WHO", + "id": "0193" + } + ] + }, + { + "offset": 72, + "length": 13, + "text": "heart failure", + "category": "Diagnosis", + "confidenceScore": 0.99, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0018801" + }, + { + "dataSource": "AOD", + "id": "0000005308" + }, + { + "dataSource": "BI", + "id": "BI00019" + }, + { + "dataSource": "CCPSS", + "id": "0017571" + }, + { + "dataSource": "CCS", + "id": "7.2.11.2" + }, + { + "dataSource": "CCSR_10", + "id": "CIR019" + }, + { + "dataSource": "CHV", + "id": "0000005877" + }, + { + "dataSource": "COSTAR", + "id": "U000338" + }, + { + "dataSource": "CSP", + "id": "1393-3587" + }, + { + "dataSource": "CST", + "id": "HEART FAIL" + }, + { + "dataSource": "HPO", + "id": "HP:0001635" + }, + { + "dataSource": "ICD10", + "id": "I50.9" + }, + { + "dataSource": "ICD10AM", + "id": "I50.9" + }, + { + "dataSource": "ICD10CM", + "id": "I50.9" + }, + { + "dataSource": "ICD9CM", + "id": "428.9" + }, + { + "dataSource": "ICPC", + "id": "K77" + }, + { + "dataSource": "ICPC2EENG", + "id": "K77" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU027668" + }, + { + "dataSource": "ICPC2P", + "id": "K77011" + }, + { + "dataSource": "LCH", + "id": "U005616" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059745" + }, + { + "dataSource": "LNC", + "id": "LP269421-6" + }, + { + "dataSource": "MDR", + "id": "10007554" + }, + { + "dataSource": "MEDCIN", + "id": "95724" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "199" + }, + { + "dataSource": "MSH", + "id": "D006333" + }, + { + "dataSource": "MTHICD9", + "id": "428.9" + }, + { + "dataSource": "NCI", + "id": "C50577" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10124" + }, + { + "dataSource": "NCI_FDA", + "id": "2206" + }, + { + "dataSource": "NCI_NICHD", + "id": "C50577" + }, + { + "dataSource": "OMIM", + "id": "MTHU009472" + }, + { + "dataSource": "RCD", + "id": "G58.." + }, + { + "dataSource": "SNM", + "id": "D-7050" + }, + { + "dataSource": "SNMI", + "id": "D3-16000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84114007" + }, + { + "dataSource": "WHO", + "id": "0496" + } + ] + } + ] + } + ], + "errors": [], + "modelVersion": "2020-09-03" + } + } + } + ], + "Variables": { + "RandomSeed": "1964733569", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json new file mode 100644 index 0000000000000..a9d4b20cca133 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json @@ -0,0 +1,1200 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "223", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-1e6c797479fbc74e8df55489273e7634-9301706db61bb245-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "87697e405fe3a2c8182b48340c37e5c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Subject is taking 100mg of ibuprofen twice daily", + "language": "en" + }, + { + "id": "1", + "text": "Can cause rapid or irregular heartbeat, delirium, panic, psychosis, and heart failure.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "36971fd1-1672-443d-984f-f929c4d88fea", + "Date": "Tue, 03 Nov 2020 19:54:35 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/c36bf280-4f41-4798-aca1-912c3df8dce9", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "261" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/c36bf280-4f41-4798-aca1-912c3df8dce9?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f1abd77b68195cb092c7f20f1aa7cc84", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5bea09f3-eaaa-4005-9a52-69a8b1141ffa", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:35 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": "c36bf280-4f41-4798-aca1-912c3df8dce9", + "lastUpdateDateTime": "2020-11-03T19:54:35Z", + "createdDateTime": "2020-11-03T19:54:35Z", + "expirationDateTime": "2020-11-04T19:54:35Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/c36bf280-4f41-4798-aca1-912c3df8dce9?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "be37acebd508d7a1d3d78987b19e23cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9e3009a6-5e39-41c6-a098-08a5eb88da0a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:36 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": "c36bf280-4f41-4798-aca1-912c3df8dce9", + "lastUpdateDateTime": "2020-11-03T19:54:35Z", + "createdDateTime": "2020-11-03T19:54:35Z", + "expirationDateTime": "2020-11-04T19:54:35Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/c36bf280-4f41-4798-aca1-912c3df8dce9?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b34190e23bc3d86ecd0cf51c6cb88870", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3acd8c91-fa5c-410d-ae53-d01d22e3007e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:37 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": "c36bf280-4f41-4798-aca1-912c3df8dce9", + "lastUpdateDateTime": "2020-11-03T19:54:35Z", + "createdDateTime": "2020-11-03T19:54:35Z", + "expirationDateTime": "2020-11-04T19:54:35Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/c36bf280-4f41-4798-aca1-912c3df8dce9?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "6048c45f2600a6bd35d41e41de29aaf3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "78311baf-1d2e-40a0-8dc7-3dbb90d96304", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:38 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": "c36bf280-4f41-4798-aca1-912c3df8dce9", + "lastUpdateDateTime": "2020-11-03T19:54:35Z", + "createdDateTime": "2020-11-03T19:54:35Z", + "expirationDateTime": "2020-11-04T19:54:35Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/c36bf280-4f41-4798-aca1-912c3df8dce9?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "892d23a31966b0c03e5ff0fbdf856a1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3df77f47-4c4e-4be9-85db-f3c1bccd7e1c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "jobId": "c36bf280-4f41-4798-aca1-912c3df8dce9", + "lastUpdateDateTime": "2020-11-03T19:54:39Z", + "createdDateTime": "2020-11-03T19:54:35Z", + "expirationDateTime": "2020-11-04T19:54:35Z", + "status": "succeeded", + "errors": [], + "results": { + "statistics": { + "documentsCount": 2, + "validDocumentsCount": 2, + "erroneousDocumentsCount": 0, + "transactionsCount": 2 + }, + "documents": [ + { + "id": "0", + "statistics": { + "charactersCount": 48, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 18, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 27, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 37, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0, + "isNegated": false + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/0", + "target": "#/results/documents/0/entities/1" + }, + { + "relationType": "FrequencyOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/2", + "target": "#/results/documents/0/entities/1" + } + ] + }, + { + "id": "1", + "statistics": { + "charactersCount": 86, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 10, + "length": 5, + "text": "rapid", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0456962" + }, + { + "dataSource": "AOD", + "id": "0000002744" + }, + { + "dataSource": "CHV", + "id": "0000034666" + }, + { + "dataSource": "LNC", + "id": "LA24868-4" + }, + { + "dataSource": "NCI", + "id": "C65069" + }, + { + "dataSource": "RCD", + "id": "X78xZ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "255358001" + } + ] + }, + { + "offset": 19, + "length": 19, + "text": "irregular heartbeat", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0003811" + }, + { + "dataSource": "AOD", + "id": "0000005346" + }, + { + "dataSource": "BI", + "id": "BI00057" + }, + { + "dataSource": "CCPSS", + "id": "1017785" + }, + { + "dataSource": "CCS", + "id": "7.2.9" + }, + { + "dataSource": "CCSR_10", + "id": "CIR017" + }, + { + "dataSource": "CHV", + "id": "0000001440" + }, + { + "dataSource": "COSTAR", + "id": "153" + }, + { + "dataSource": "CSP", + "id": "1393-3277" + }, + { + "dataSource": "CST", + "id": "ARRHYTHMIA" + }, + { + "dataSource": "HPO", + "id": "HP:0011675" + }, + { + "dataSource": "ICD10", + "id": "I49.9" + }, + { + "dataSource": "ICD10AM", + "id": "I49.9" + }, + { + "dataSource": "ICD10CM", + "id": "I49.9" + }, + { + "dataSource": "ICD9CM", + "id": "427.9" + }, + { + "dataSource": "ICPC", + "id": "K80" + }, + { + "dataSource": "ICPC2EENG", + "id": "K80" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU033639" + }, + { + "dataSource": "ICPC2P", + "id": "K80012" + }, + { + "dataSource": "LCH", + "id": "U000359" + }, + { + "dataSource": "LCH_NW", + "id": "sh85007430" + }, + { + "dataSource": "LNC", + "id": "LA15419-7" + }, + { + "dataSource": "MDR", + "id": "10003119" + }, + { + "dataSource": "MEDCIN", + "id": "35851" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "147" + }, + { + "dataSource": "MSH", + "id": "D001145" + }, + { + "dataSource": "MTH", + "id": "153" + }, + { + "dataSource": "MTHICD9", + "id": "427.9" + }, + { + "dataSource": "NANDA-I", + "id": "00126" + }, + { + "dataSource": "NCI", + "id": "C2881" + }, + { + "dataSource": "NCI_FDA", + "id": "1721" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2881" + }, + { + "dataSource": "NOC", + "id": "040520" + }, + { + "dataSource": "OMIM", + "id": "115000" + }, + { + "dataSource": "PSY", + "id": "03790" + }, + { + "dataSource": "RCD", + "id": "X77BB" + }, + { + "dataSource": "SNM", + "id": "F-73102" + }, + { + "dataSource": "SNMI", + "id": "D3-30010" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "698247007" + }, + { + "dataSource": "WHO", + "id": "0433" + } + ] + }, + { + "offset": 40, + "length": 8, + "text": "delirium", + "category": "Diagnosis", + "confidenceScore": 0.99, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0011206" + }, + { + "dataSource": "AOD", + "id": "0000004328" + }, + { + "dataSource": "CCPSS", + "id": "1017884" + }, + { + "dataSource": "CHV", + "id": "0000003670" + }, + { + "dataSource": "COSTAR", + "id": "U000178" + }, + { + "dataSource": "CSP", + "id": "5003-0016" + }, + { + "dataSource": "CST", + "id": "DELIRIUM" + }, + { + "dataSource": "DSM-5", + "id": "780.09" + }, + { + "dataSource": "DXP", + "id": "U000937" + }, + { + "dataSource": "HPO", + "id": "HP:0031258" + }, + { + "dataSource": "ICD10", + "id": "F05.9" + }, + { + "dataSource": "ICD10AM", + "id": "F05.9" + }, + { + "dataSource": "ICD10CM", + "id": "R41.0" + }, + { + "dataSource": "ICNP", + "id": "10022091" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU022150" + }, + { + "dataSource": "LCH", + "id": "U001289" + }, + { + "dataSource": "LCH_NW", + "id": "sh85036579" + }, + { + "dataSource": "LNC", + "id": "LP89856-6" + }, + { + "dataSource": "MDR", + "id": "10012218" + }, + { + "dataSource": "MEDCIN", + "id": "677" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5562" + }, + { + "dataSource": "MSH", + "id": "D003693" + }, + { + "dataSource": "NANDA-I", + "id": "02157" + }, + { + "dataSource": "NCI", + "id": "C2981" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E12898" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2981" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000450100" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2981" + }, + { + "dataSource": "NOC", + "id": "091213" + }, + { + "dataSource": "OMIM", + "id": "MTHU035152" + }, + { + "dataSource": "PDQ", + "id": "CDR0000042226" + }, + { + "dataSource": "PSY", + "id": "13360" + }, + { + "dataSource": "QMR", + "id": "Q0200089" + }, + { + "dataSource": "RCD", + "id": "XE1Xv" + }, + { + "dataSource": "SNM", + "id": "F-85720" + }, + { + "dataSource": "SNMI", + "id": "D9-20100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2776000" + }, + { + "dataSource": "WHO", + "id": "0099" + } + ] + }, + { + "offset": 50, + "length": 5, + "text": "panic", + "category": "Diagnosis", + "confidenceScore": 0.89, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0030318" + }, + { + "dataSource": "AOD", + "id": "0000023911" + }, + { + "dataSource": "CHV", + "id": "0000009234" + }, + { + "dataSource": "CST", + "id": "AGITATION" + }, + { + "dataSource": "ICD10CM", + "id": "F41.0" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU057222" + }, + { + "dataSource": "LCH", + "id": "U003458" + }, + { + "dataSource": "LCH_NW", + "id": "sh85097438" + }, + { + "dataSource": "MDR", + "id": "10033670" + }, + { + "dataSource": "MSH", + "id": "D010200" + }, + { + "dataSource": "MTH", + "id": "551" + }, + { + "dataSource": "MTHICD9", + "id": "300.01" + }, + { + "dataSource": "NCI", + "id": "C94438" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000454704" + }, + { + "dataSource": "NOC", + "id": "121346" + }, + { + "dataSource": "PSY", + "id": "36260" + }, + { + "dataSource": "RCD", + "id": "Xa3Vj" + }, + { + "dataSource": "SNM", + "id": "F-90880" + }, + { + "dataSource": "SNMI", + "id": "F-92560" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "79823003" + }, + { + "dataSource": "WHO", + "id": "0163" + } + ] + }, + { + "offset": 57, + "length": 9, + "text": "psychosis", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0033975" + }, + { + "dataSource": "AIR", + "id": "PSYCH" + }, + { + "dataSource": "AOD", + "id": "0000004324" + }, + { + "dataSource": "BI", + "id": "BI00688" + }, + { + "dataSource": "CCPSS", + "id": "1018204" + }, + { + "dataSource": "CHV", + "id": "0000010350" + }, + { + "dataSource": "COSTAR", + "id": "089" + }, + { + "dataSource": "CSP", + "id": "2484-8182" + }, + { + "dataSource": "CST", + "id": "PSYCHOSIS" + }, + { + "dataSource": "DXP", + "id": "U003257" + }, + { + "dataSource": "HPO", + "id": "HP:0000709" + }, + { + "dataSource": "ICD9CM", + "id": "298.9" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU070382" + }, + { + "dataSource": "ICPC2P", + "id": "P98004" + }, + { + "dataSource": "LCH_NW", + "id": "sh85108502" + }, + { + "dataSource": "LNC", + "id": "LA7534-6" + }, + { + "dataSource": "MDR", + "id": "10061920" + }, + { + "dataSource": "MEDCIN", + "id": "364298" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4180" + }, + { + "dataSource": "MSH", + "id": "D011618" + }, + { + "dataSource": "MTH", + "id": "089" + }, + { + "dataSource": "MTHICD9", + "id": "298.9" + }, + { + "dataSource": "NANDA-I", + "id": "03128" + }, + { + "dataSource": "NCI", + "id": "C78576" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E12954" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000450115" + }, + { + "dataSource": "NCI_NICHD", + "id": "C78576" + }, + { + "dataSource": "NOC", + "id": "061619" + }, + { + "dataSource": "OMIM", + "id": "MTHU002910" + }, + { + "dataSource": "PSY", + "id": "41910" + }, + { + "dataSource": "QMR", + "id": "Q0200208" + }, + { + "dataSource": "RCD", + "id": "X00S6" + }, + { + "dataSource": "SNM", + "id": "D-9200" + }, + { + "dataSource": "SNMI", + "id": "D9-72000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "69322001" + }, + { + "dataSource": "WHO", + "id": "0193" + } + ] + }, + { + "offset": 72, + "length": 13, + "text": "heart failure", + "category": "Diagnosis", + "confidenceScore": 0.99, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0018801" + }, + { + "dataSource": "AOD", + "id": "0000005308" + }, + { + "dataSource": "BI", + "id": "BI00019" + }, + { + "dataSource": "CCPSS", + "id": "0017571" + }, + { + "dataSource": "CCS", + "id": "7.2.11.2" + }, + { + "dataSource": "CCSR_10", + "id": "CIR019" + }, + { + "dataSource": "CHV", + "id": "0000005877" + }, + { + "dataSource": "COSTAR", + "id": "U000338" + }, + { + "dataSource": "CSP", + "id": "1393-3587" + }, + { + "dataSource": "CST", + "id": "HEART FAIL" + }, + { + "dataSource": "HPO", + "id": "HP:0001635" + }, + { + "dataSource": "ICD10", + "id": "I50.9" + }, + { + "dataSource": "ICD10AM", + "id": "I50.9" + }, + { + "dataSource": "ICD10CM", + "id": "I50.9" + }, + { + "dataSource": "ICD9CM", + "id": "428.9" + }, + { + "dataSource": "ICPC", + "id": "K77" + }, + { + "dataSource": "ICPC2EENG", + "id": "K77" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU027668" + }, + { + "dataSource": "ICPC2P", + "id": "K77011" + }, + { + "dataSource": "LCH", + "id": "U005616" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059745" + }, + { + "dataSource": "LNC", + "id": "LP269421-6" + }, + { + "dataSource": "MDR", + "id": "10007554" + }, + { + "dataSource": "MEDCIN", + "id": "95724" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "199" + }, + { + "dataSource": "MSH", + "id": "D006333" + }, + { + "dataSource": "MTHICD9", + "id": "428.9" + }, + { + "dataSource": "NCI", + "id": "C50577" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10124" + }, + { + "dataSource": "NCI_FDA", + "id": "2206" + }, + { + "dataSource": "NCI_NICHD", + "id": "C50577" + }, + { + "dataSource": "OMIM", + "id": "MTHU009472" + }, + { + "dataSource": "RCD", + "id": "G58.." + }, + { + "dataSource": "SNM", + "id": "D-7050" + }, + { + "dataSource": "SNMI", + "id": "D3-16000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84114007" + }, + { + "dataSource": "WHO", + "id": "0496" + } + ] + } + ] + } + ], + "errors": [], + "modelVersion": "2020-09-03" + } + } + } + ], + "Variables": { + "RandomSeed": "609735027", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json new file mode 100644 index 0000000000000..6576b721f938e --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json @@ -0,0 +1,1230 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "223", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-85dcb1379c656541886cc2f88bb1d049-1f31dfe4e9f71d44-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0d63e53cea7530898179e7904fedbae6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "Subject is taking 100mg of ibuprofen twice daily", + "language": "en" + }, + { + "id": "2", + "text": "Can cause rapid or irregular heartbeat, delirium, panic, psychosis, and heart failure.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "9dd1d6ec-72cd-40f4-b56b-a66b21513f96", + "Date": "Tue, 03 Nov 2020 19:54:40 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85425913-6953-4309-8df7-c1ee9d4a6037", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "94" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85425913-6953-4309-8df7-c1ee9d4a6037?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7a482533d010f661d7a330e46a9c020c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fec8af00-7469-4d1d-bdc7-16e960466395", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:40 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": "85425913-6953-4309-8df7-c1ee9d4a6037", + "lastUpdateDateTime": "2020-11-03T19:54:40Z", + "createdDateTime": "2020-11-03T19:54:40Z", + "expirationDateTime": "2020-11-04T19:54:40Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85425913-6953-4309-8df7-c1ee9d4a6037?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d4480f3cd87c0175cc930cf584ae8a9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a3506cc3-3a69-463a-bb22-d92d7924b045", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:41 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": "85425913-6953-4309-8df7-c1ee9d4a6037", + "lastUpdateDateTime": "2020-11-03T19:54:40Z", + "createdDateTime": "2020-11-03T19:54:40Z", + "expirationDateTime": "2020-11-04T19:54:40Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85425913-6953-4309-8df7-c1ee9d4a6037?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "00da5d97d0326c02836c36d1baa4c6e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b626601a-66fc-4039-9d11-bbdea9db997b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:42 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": "85425913-6953-4309-8df7-c1ee9d4a6037", + "lastUpdateDateTime": "2020-11-03T19:54:40Z", + "createdDateTime": "2020-11-03T19:54:40Z", + "expirationDateTime": "2020-11-04T19:54:40Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85425913-6953-4309-8df7-c1ee9d4a6037?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4053da77e5a55a69b046ae7dc36c7228", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4b5a8da3-fb8c-4e2a-b7ba-7bbf4dd9c8e3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:43 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": "85425913-6953-4309-8df7-c1ee9d4a6037", + "lastUpdateDateTime": "2020-11-03T19:54:40Z", + "createdDateTime": "2020-11-03T19:54:40Z", + "expirationDateTime": "2020-11-04T19:54:40Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85425913-6953-4309-8df7-c1ee9d4a6037?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0d4c941902c16cda0cdb5110a2a34728", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e0b9f97c-3add-45de-9967-83381631cf3b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:44 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": "85425913-6953-4309-8df7-c1ee9d4a6037", + "lastUpdateDateTime": "2020-11-03T19:54:40Z", + "createdDateTime": "2020-11-03T19:54:40Z", + "expirationDateTime": "2020-11-04T19:54:40Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85425913-6953-4309-8df7-c1ee9d4a6037?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a97e27cc4a5bb1f5f37f4feb2184a817", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ffb68b4c-b9df-4182-86dc-0cc93f385ffd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "52" + }, + "ResponseBody": { + "jobId": "85425913-6953-4309-8df7-c1ee9d4a6037", + "lastUpdateDateTime": "2020-11-03T19:54:44Z", + "createdDateTime": "2020-11-03T19:54:40Z", + "expirationDateTime": "2020-11-04T19:54:40Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "statistics": { + "charactersCount": 48, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 18, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 27, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 37, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0, + "isNegated": false + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/0", + "target": "#/results/documents/0/entities/1" + }, + { + "relationType": "FrequencyOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/2", + "target": "#/results/documents/0/entities/1" + } + ] + }, + { + "id": "2", + "statistics": { + "charactersCount": 86, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 10, + "length": 5, + "text": "rapid", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0456962" + }, + { + "dataSource": "AOD", + "id": "0000002744" + }, + { + "dataSource": "CHV", + "id": "0000034666" + }, + { + "dataSource": "LNC", + "id": "LA24868-4" + }, + { + "dataSource": "NCI", + "id": "C65069" + }, + { + "dataSource": "RCD", + "id": "X78xZ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "255358001" + } + ] + }, + { + "offset": 19, + "length": 19, + "text": "irregular heartbeat", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0003811" + }, + { + "dataSource": "AOD", + "id": "0000005346" + }, + { + "dataSource": "BI", + "id": "BI00057" + }, + { + "dataSource": "CCPSS", + "id": "1017785" + }, + { + "dataSource": "CCS", + "id": "7.2.9" + }, + { + "dataSource": "CCSR_10", + "id": "CIR017" + }, + { + "dataSource": "CHV", + "id": "0000001440" + }, + { + "dataSource": "COSTAR", + "id": "153" + }, + { + "dataSource": "CSP", + "id": "1393-3277" + }, + { + "dataSource": "CST", + "id": "ARRHYTHMIA" + }, + { + "dataSource": "HPO", + "id": "HP:0011675" + }, + { + "dataSource": "ICD10", + "id": "I49.9" + }, + { + "dataSource": "ICD10AM", + "id": "I49.9" + }, + { + "dataSource": "ICD10CM", + "id": "I49.9" + }, + { + "dataSource": "ICD9CM", + "id": "427.9" + }, + { + "dataSource": "ICPC", + "id": "K80" + }, + { + "dataSource": "ICPC2EENG", + "id": "K80" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU033639" + }, + { + "dataSource": "ICPC2P", + "id": "K80012" + }, + { + "dataSource": "LCH", + "id": "U000359" + }, + { + "dataSource": "LCH_NW", + "id": "sh85007430" + }, + { + "dataSource": "LNC", + "id": "LA15419-7" + }, + { + "dataSource": "MDR", + "id": "10003119" + }, + { + "dataSource": "MEDCIN", + "id": "35851" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "147" + }, + { + "dataSource": "MSH", + "id": "D001145" + }, + { + "dataSource": "MTH", + "id": "153" + }, + { + "dataSource": "MTHICD9", + "id": "427.9" + }, + { + "dataSource": "NANDA-I", + "id": "00126" + }, + { + "dataSource": "NCI", + "id": "C2881" + }, + { + "dataSource": "NCI_FDA", + "id": "1721" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2881" + }, + { + "dataSource": "NOC", + "id": "040520" + }, + { + "dataSource": "OMIM", + "id": "115000" + }, + { + "dataSource": "PSY", + "id": "03790" + }, + { + "dataSource": "RCD", + "id": "X77BB" + }, + { + "dataSource": "SNM", + "id": "F-73102" + }, + { + "dataSource": "SNMI", + "id": "D3-30010" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "698247007" + }, + { + "dataSource": "WHO", + "id": "0433" + } + ] + }, + { + "offset": 40, + "length": 8, + "text": "delirium", + "category": "Diagnosis", + "confidenceScore": 0.99, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0011206" + }, + { + "dataSource": "AOD", + "id": "0000004328" + }, + { + "dataSource": "CCPSS", + "id": "1017884" + }, + { + "dataSource": "CHV", + "id": "0000003670" + }, + { + "dataSource": "COSTAR", + "id": "U000178" + }, + { + "dataSource": "CSP", + "id": "5003-0016" + }, + { + "dataSource": "CST", + "id": "DELIRIUM" + }, + { + "dataSource": "DSM-5", + "id": "780.09" + }, + { + "dataSource": "DXP", + "id": "U000937" + }, + { + "dataSource": "HPO", + "id": "HP:0031258" + }, + { + "dataSource": "ICD10", + "id": "F05.9" + }, + { + "dataSource": "ICD10AM", + "id": "F05.9" + }, + { + "dataSource": "ICD10CM", + "id": "R41.0" + }, + { + "dataSource": "ICNP", + "id": "10022091" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU022150" + }, + { + "dataSource": "LCH", + "id": "U001289" + }, + { + "dataSource": "LCH_NW", + "id": "sh85036579" + }, + { + "dataSource": "LNC", + "id": "LP89856-6" + }, + { + "dataSource": "MDR", + "id": "10012218" + }, + { + "dataSource": "MEDCIN", + "id": "677" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5562" + }, + { + "dataSource": "MSH", + "id": "D003693" + }, + { + "dataSource": "NANDA-I", + "id": "02157" + }, + { + "dataSource": "NCI", + "id": "C2981" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E12898" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2981" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000450100" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2981" + }, + { + "dataSource": "NOC", + "id": "091213" + }, + { + "dataSource": "OMIM", + "id": "MTHU035152" + }, + { + "dataSource": "PDQ", + "id": "CDR0000042226" + }, + { + "dataSource": "PSY", + "id": "13360" + }, + { + "dataSource": "QMR", + "id": "Q0200089" + }, + { + "dataSource": "RCD", + "id": "XE1Xv" + }, + { + "dataSource": "SNM", + "id": "F-85720" + }, + { + "dataSource": "SNMI", + "id": "D9-20100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2776000" + }, + { + "dataSource": "WHO", + "id": "0099" + } + ] + }, + { + "offset": 50, + "length": 5, + "text": "panic", + "category": "Diagnosis", + "confidenceScore": 0.89, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0030318" + }, + { + "dataSource": "AOD", + "id": "0000023911" + }, + { + "dataSource": "CHV", + "id": "0000009234" + }, + { + "dataSource": "CST", + "id": "AGITATION" + }, + { + "dataSource": "ICD10CM", + "id": "F41.0" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU057222" + }, + { + "dataSource": "LCH", + "id": "U003458" + }, + { + "dataSource": "LCH_NW", + "id": "sh85097438" + }, + { + "dataSource": "MDR", + "id": "10033670" + }, + { + "dataSource": "MSH", + "id": "D010200" + }, + { + "dataSource": "MTH", + "id": "551" + }, + { + "dataSource": "MTHICD9", + "id": "300.01" + }, + { + "dataSource": "NCI", + "id": "C94438" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000454704" + }, + { + "dataSource": "NOC", + "id": "121346" + }, + { + "dataSource": "PSY", + "id": "36260" + }, + { + "dataSource": "RCD", + "id": "Xa3Vj" + }, + { + "dataSource": "SNM", + "id": "F-90880" + }, + { + "dataSource": "SNMI", + "id": "F-92560" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "79823003" + }, + { + "dataSource": "WHO", + "id": "0163" + } + ] + }, + { + "offset": 57, + "length": 9, + "text": "psychosis", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0033975" + }, + { + "dataSource": "AIR", + "id": "PSYCH" + }, + { + "dataSource": "AOD", + "id": "0000004324" + }, + { + "dataSource": "BI", + "id": "BI00688" + }, + { + "dataSource": "CCPSS", + "id": "1018204" + }, + { + "dataSource": "CHV", + "id": "0000010350" + }, + { + "dataSource": "COSTAR", + "id": "089" + }, + { + "dataSource": "CSP", + "id": "2484-8182" + }, + { + "dataSource": "CST", + "id": "PSYCHOSIS" + }, + { + "dataSource": "DXP", + "id": "U003257" + }, + { + "dataSource": "HPO", + "id": "HP:0000709" + }, + { + "dataSource": "ICD9CM", + "id": "298.9" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU070382" + }, + { + "dataSource": "ICPC2P", + "id": "P98004" + }, + { + "dataSource": "LCH_NW", + "id": "sh85108502" + }, + { + "dataSource": "LNC", + "id": "LA7534-6" + }, + { + "dataSource": "MDR", + "id": "10061920" + }, + { + "dataSource": "MEDCIN", + "id": "364298" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4180" + }, + { + "dataSource": "MSH", + "id": "D011618" + }, + { + "dataSource": "MTH", + "id": "089" + }, + { + "dataSource": "MTHICD9", + "id": "298.9" + }, + { + "dataSource": "NANDA-I", + "id": "03128" + }, + { + "dataSource": "NCI", + "id": "C78576" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E12954" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000450115" + }, + { + "dataSource": "NCI_NICHD", + "id": "C78576" + }, + { + "dataSource": "NOC", + "id": "061619" + }, + { + "dataSource": "OMIM", + "id": "MTHU002910" + }, + { + "dataSource": "PSY", + "id": "41910" + }, + { + "dataSource": "QMR", + "id": "Q0200208" + }, + { + "dataSource": "RCD", + "id": "X00S6" + }, + { + "dataSource": "SNM", + "id": "D-9200" + }, + { + "dataSource": "SNMI", + "id": "D9-72000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "69322001" + }, + { + "dataSource": "WHO", + "id": "0193" + } + ] + }, + { + "offset": 72, + "length": 13, + "text": "heart failure", + "category": "Diagnosis", + "confidenceScore": 0.99, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0018801" + }, + { + "dataSource": "AOD", + "id": "0000005308" + }, + { + "dataSource": "BI", + "id": "BI00019" + }, + { + "dataSource": "CCPSS", + "id": "0017571" + }, + { + "dataSource": "CCS", + "id": "7.2.11.2" + }, + { + "dataSource": "CCSR_10", + "id": "CIR019" + }, + { + "dataSource": "CHV", + "id": "0000005877" + }, + { + "dataSource": "COSTAR", + "id": "U000338" + }, + { + "dataSource": "CSP", + "id": "1393-3587" + }, + { + "dataSource": "CST", + "id": "HEART FAIL" + }, + { + "dataSource": "HPO", + "id": "HP:0001635" + }, + { + "dataSource": "ICD10", + "id": "I50.9" + }, + { + "dataSource": "ICD10AM", + "id": "I50.9" + }, + { + "dataSource": "ICD10CM", + "id": "I50.9" + }, + { + "dataSource": "ICD9CM", + "id": "428.9" + }, + { + "dataSource": "ICPC", + "id": "K77" + }, + { + "dataSource": "ICPC2EENG", + "id": "K77" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU027668" + }, + { + "dataSource": "ICPC2P", + "id": "K77011" + }, + { + "dataSource": "LCH", + "id": "U005616" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059745" + }, + { + "dataSource": "LNC", + "id": "LP269421-6" + }, + { + "dataSource": "MDR", + "id": "10007554" + }, + { + "dataSource": "MEDCIN", + "id": "95724" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "199" + }, + { + "dataSource": "MSH", + "id": "D006333" + }, + { + "dataSource": "MTHICD9", + "id": "428.9" + }, + { + "dataSource": "NCI", + "id": "C50577" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10124" + }, + { + "dataSource": "NCI_FDA", + "id": "2206" + }, + { + "dataSource": "NCI_NICHD", + "id": "C50577" + }, + { + "dataSource": "OMIM", + "id": "MTHU009472" + }, + { + "dataSource": "RCD", + "id": "G58.." + }, + { + "dataSource": "SNM", + "id": "D-7050" + }, + { + "dataSource": "SNMI", + "id": "D3-16000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84114007" + }, + { + "dataSource": "WHO", + "id": "0496" + } + ] + } + ] + } + ], + "errors": [], + "modelVersion": "2020-09-03" + } + } + } + ], + "Variables": { + "RandomSeed": "894243901", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json new file mode 100644 index 0000000000000..db53c432c57f1 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json @@ -0,0 +1,1247 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "260", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-56aa3b409dbedc498078e17804e6210b-9272ba99740ca649-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ed679d93c08fe171a9b236aaa757046a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Subject is taking 100mg of ibuprofen twice daily", + "language": "en" + }, + { + "id": "1", + "text": "Can cause rapid or irregular heartbeat, delirium, panic, psychosis, and heart failure.", + "language": "en" + }, + { + "id": "2", + "text": "", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "bdda57b3-2ef4-410f-93d9-2b89555a030b", + "Date": "Tue, 03 Nov 2020 19:54:45 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b462f989-2c6e-4e8c-b469-b6ea97d27e8c", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "94" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b462f989-2c6e-4e8c-b469-b6ea97d27e8c?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8ac7fae8cf64a9249598acb3531ad44c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cb4ac7e4-9a0b-426a-823f-e816516845ef", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:45 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": "b462f989-2c6e-4e8c-b469-b6ea97d27e8c", + "lastUpdateDateTime": "2020-11-03T19:54:45Z", + "createdDateTime": "2020-11-03T19:54:45Z", + "expirationDateTime": "2020-11-04T19:54:45Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b462f989-2c6e-4e8c-b469-b6ea97d27e8c?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e1e35bcd7fe4ca895c5026b1fcf89877", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f0d3a84d-b3f1-43de-be5f-b9407a5d398f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:46 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": "b462f989-2c6e-4e8c-b469-b6ea97d27e8c", + "lastUpdateDateTime": "2020-11-03T19:54:45Z", + "createdDateTime": "2020-11-03T19:54:45Z", + "expirationDateTime": "2020-11-04T19:54:45Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b462f989-2c6e-4e8c-b469-b6ea97d27e8c?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "42e053ff1beac39b78bd58f714be8d8f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "06478087-956b-474a-8c7c-cb639b44d293", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5" + }, + "ResponseBody": { + "jobId": "b462f989-2c6e-4e8c-b469-b6ea97d27e8c", + "lastUpdateDateTime": "2020-11-03T19:54:45Z", + "createdDateTime": "2020-11-03T19:54:45Z", + "expirationDateTime": "2020-11-04T19:54:45Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b462f989-2c6e-4e8c-b469-b6ea97d27e8c?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4bddeade2273698670fd2d14a873ad9c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4ff8fd6e-97d9-4eb9-8ad8-62d54d9d0d5b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:48 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": "b462f989-2c6e-4e8c-b469-b6ea97d27e8c", + "lastUpdateDateTime": "2020-11-03T19:54:45Z", + "createdDateTime": "2020-11-03T19:54:45Z", + "expirationDateTime": "2020-11-04T19:54:45Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b462f989-2c6e-4e8c-b469-b6ea97d27e8c?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ffb435ff9139b161bf1f68262691b59e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c2db98e8-9423-4d4b-b7fb-006a87d79970", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:49 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": "b462f989-2c6e-4e8c-b469-b6ea97d27e8c", + "lastUpdateDateTime": "2020-11-03T19:54:49Z", + "createdDateTime": "2020-11-03T19:54:45Z", + "expirationDateTime": "2020-11-04T19:54:45Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b462f989-2c6e-4e8c-b469-b6ea97d27e8c?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "11d297c24c1bdc03cd77d1edee871a04", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9e0013ca-ebff-40fc-a900-b6584f4eeef0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "50" + }, + "ResponseBody": { + "jobId": "b462f989-2c6e-4e8c-b469-b6ea97d27e8c", + "lastUpdateDateTime": "2020-11-03T19:54:49Z", + "createdDateTime": "2020-11-03T19:54:45Z", + "expirationDateTime": "2020-11-04T19:54:45Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "statistics": { + "charactersCount": 48, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 18, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 27, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 37, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0, + "isNegated": false + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/0", + "target": "#/results/documents/0/entities/1" + }, + { + "relationType": "FrequencyOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/2", + "target": "#/results/documents/0/entities/1" + } + ] + }, + { + "id": "1", + "statistics": { + "charactersCount": 86, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 10, + "length": 5, + "text": "rapid", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0456962" + }, + { + "dataSource": "AOD", + "id": "0000002744" + }, + { + "dataSource": "CHV", + "id": "0000034666" + }, + { + "dataSource": "LNC", + "id": "LA24868-4" + }, + { + "dataSource": "NCI", + "id": "C65069" + }, + { + "dataSource": "RCD", + "id": "X78xZ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "255358001" + } + ] + }, + { + "offset": 19, + "length": 19, + "text": "irregular heartbeat", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0003811" + }, + { + "dataSource": "AOD", + "id": "0000005346" + }, + { + "dataSource": "BI", + "id": "BI00057" + }, + { + "dataSource": "CCPSS", + "id": "1017785" + }, + { + "dataSource": "CCS", + "id": "7.2.9" + }, + { + "dataSource": "CCSR_10", + "id": "CIR017" + }, + { + "dataSource": "CHV", + "id": "0000001440" + }, + { + "dataSource": "COSTAR", + "id": "153" + }, + { + "dataSource": "CSP", + "id": "1393-3277" + }, + { + "dataSource": "CST", + "id": "ARRHYTHMIA" + }, + { + "dataSource": "HPO", + "id": "HP:0011675" + }, + { + "dataSource": "ICD10", + "id": "I49.9" + }, + { + "dataSource": "ICD10AM", + "id": "I49.9" + }, + { + "dataSource": "ICD10CM", + "id": "I49.9" + }, + { + "dataSource": "ICD9CM", + "id": "427.9" + }, + { + "dataSource": "ICPC", + "id": "K80" + }, + { + "dataSource": "ICPC2EENG", + "id": "K80" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU033639" + }, + { + "dataSource": "ICPC2P", + "id": "K80012" + }, + { + "dataSource": "LCH", + "id": "U000359" + }, + { + "dataSource": "LCH_NW", + "id": "sh85007430" + }, + { + "dataSource": "LNC", + "id": "LA15419-7" + }, + { + "dataSource": "MDR", + "id": "10003119" + }, + { + "dataSource": "MEDCIN", + "id": "35851" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "147" + }, + { + "dataSource": "MSH", + "id": "D001145" + }, + { + "dataSource": "MTH", + "id": "153" + }, + { + "dataSource": "MTHICD9", + "id": "427.9" + }, + { + "dataSource": "NANDA-I", + "id": "00126" + }, + { + "dataSource": "NCI", + "id": "C2881" + }, + { + "dataSource": "NCI_FDA", + "id": "1721" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2881" + }, + { + "dataSource": "NOC", + "id": "040520" + }, + { + "dataSource": "OMIM", + "id": "115000" + }, + { + "dataSource": "PSY", + "id": "03790" + }, + { + "dataSource": "RCD", + "id": "X77BB" + }, + { + "dataSource": "SNM", + "id": "F-73102" + }, + { + "dataSource": "SNMI", + "id": "D3-30010" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "698247007" + }, + { + "dataSource": "WHO", + "id": "0433" + } + ] + }, + { + "offset": 40, + "length": 8, + "text": "delirium", + "category": "Diagnosis", + "confidenceScore": 0.99, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0011206" + }, + { + "dataSource": "AOD", + "id": "0000004328" + }, + { + "dataSource": "CCPSS", + "id": "1017884" + }, + { + "dataSource": "CHV", + "id": "0000003670" + }, + { + "dataSource": "COSTAR", + "id": "U000178" + }, + { + "dataSource": "CSP", + "id": "5003-0016" + }, + { + "dataSource": "CST", + "id": "DELIRIUM" + }, + { + "dataSource": "DSM-5", + "id": "780.09" + }, + { + "dataSource": "DXP", + "id": "U000937" + }, + { + "dataSource": "HPO", + "id": "HP:0031258" + }, + { + "dataSource": "ICD10", + "id": "F05.9" + }, + { + "dataSource": "ICD10AM", + "id": "F05.9" + }, + { + "dataSource": "ICD10CM", + "id": "R41.0" + }, + { + "dataSource": "ICNP", + "id": "10022091" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU022150" + }, + { + "dataSource": "LCH", + "id": "U001289" + }, + { + "dataSource": "LCH_NW", + "id": "sh85036579" + }, + { + "dataSource": "LNC", + "id": "LP89856-6" + }, + { + "dataSource": "MDR", + "id": "10012218" + }, + { + "dataSource": "MEDCIN", + "id": "677" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5562" + }, + { + "dataSource": "MSH", + "id": "D003693" + }, + { + "dataSource": "NANDA-I", + "id": "02157" + }, + { + "dataSource": "NCI", + "id": "C2981" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E12898" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2981" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000450100" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2981" + }, + { + "dataSource": "NOC", + "id": "091213" + }, + { + "dataSource": "OMIM", + "id": "MTHU035152" + }, + { + "dataSource": "PDQ", + "id": "CDR0000042226" + }, + { + "dataSource": "PSY", + "id": "13360" + }, + { + "dataSource": "QMR", + "id": "Q0200089" + }, + { + "dataSource": "RCD", + "id": "XE1Xv" + }, + { + "dataSource": "SNM", + "id": "F-85720" + }, + { + "dataSource": "SNMI", + "id": "D9-20100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2776000" + }, + { + "dataSource": "WHO", + "id": "0099" + } + ] + }, + { + "offset": 50, + "length": 5, + "text": "panic", + "category": "Diagnosis", + "confidenceScore": 0.89, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0030318" + }, + { + "dataSource": "AOD", + "id": "0000023911" + }, + { + "dataSource": "CHV", + "id": "0000009234" + }, + { + "dataSource": "CST", + "id": "AGITATION" + }, + { + "dataSource": "ICD10CM", + "id": "F41.0" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU057222" + }, + { + "dataSource": "LCH", + "id": "U003458" + }, + { + "dataSource": "LCH_NW", + "id": "sh85097438" + }, + { + "dataSource": "MDR", + "id": "10033670" + }, + { + "dataSource": "MSH", + "id": "D010200" + }, + { + "dataSource": "MTH", + "id": "551" + }, + { + "dataSource": "MTHICD9", + "id": "300.01" + }, + { + "dataSource": "NCI", + "id": "C94438" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000454704" + }, + { + "dataSource": "NOC", + "id": "121346" + }, + { + "dataSource": "PSY", + "id": "36260" + }, + { + "dataSource": "RCD", + "id": "Xa3Vj" + }, + { + "dataSource": "SNM", + "id": "F-90880" + }, + { + "dataSource": "SNMI", + "id": "F-92560" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "79823003" + }, + { + "dataSource": "WHO", + "id": "0163" + } + ] + }, + { + "offset": 57, + "length": 9, + "text": "psychosis", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0033975" + }, + { + "dataSource": "AIR", + "id": "PSYCH" + }, + { + "dataSource": "AOD", + "id": "0000004324" + }, + { + "dataSource": "BI", + "id": "BI00688" + }, + { + "dataSource": "CCPSS", + "id": "1018204" + }, + { + "dataSource": "CHV", + "id": "0000010350" + }, + { + "dataSource": "COSTAR", + "id": "089" + }, + { + "dataSource": "CSP", + "id": "2484-8182" + }, + { + "dataSource": "CST", + "id": "PSYCHOSIS" + }, + { + "dataSource": "DXP", + "id": "U003257" + }, + { + "dataSource": "HPO", + "id": "HP:0000709" + }, + { + "dataSource": "ICD9CM", + "id": "298.9" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU070382" + }, + { + "dataSource": "ICPC2P", + "id": "P98004" + }, + { + "dataSource": "LCH_NW", + "id": "sh85108502" + }, + { + "dataSource": "LNC", + "id": "LA7534-6" + }, + { + "dataSource": "MDR", + "id": "10061920" + }, + { + "dataSource": "MEDCIN", + "id": "364298" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4180" + }, + { + "dataSource": "MSH", + "id": "D011618" + }, + { + "dataSource": "MTH", + "id": "089" + }, + { + "dataSource": "MTHICD9", + "id": "298.9" + }, + { + "dataSource": "NANDA-I", + "id": "03128" + }, + { + "dataSource": "NCI", + "id": "C78576" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E12954" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000450115" + }, + { + "dataSource": "NCI_NICHD", + "id": "C78576" + }, + { + "dataSource": "NOC", + "id": "061619" + }, + { + "dataSource": "OMIM", + "id": "MTHU002910" + }, + { + "dataSource": "PSY", + "id": "41910" + }, + { + "dataSource": "QMR", + "id": "Q0200208" + }, + { + "dataSource": "RCD", + "id": "X00S6" + }, + { + "dataSource": "SNM", + "id": "D-9200" + }, + { + "dataSource": "SNMI", + "id": "D9-72000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "69322001" + }, + { + "dataSource": "WHO", + "id": "0193" + } + ] + }, + { + "offset": 72, + "length": 13, + "text": "heart failure", + "category": "Diagnosis", + "confidenceScore": 0.99, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0018801" + }, + { + "dataSource": "AOD", + "id": "0000005308" + }, + { + "dataSource": "BI", + "id": "BI00019" + }, + { + "dataSource": "CCPSS", + "id": "0017571" + }, + { + "dataSource": "CCS", + "id": "7.2.11.2" + }, + { + "dataSource": "CCSR_10", + "id": "CIR019" + }, + { + "dataSource": "CHV", + "id": "0000005877" + }, + { + "dataSource": "COSTAR", + "id": "U000338" + }, + { + "dataSource": "CSP", + "id": "1393-3587" + }, + { + "dataSource": "CST", + "id": "HEART FAIL" + }, + { + "dataSource": "HPO", + "id": "HP:0001635" + }, + { + "dataSource": "ICD10", + "id": "I50.9" + }, + { + "dataSource": "ICD10AM", + "id": "I50.9" + }, + { + "dataSource": "ICD10CM", + "id": "I50.9" + }, + { + "dataSource": "ICD9CM", + "id": "428.9" + }, + { + "dataSource": "ICPC", + "id": "K77" + }, + { + "dataSource": "ICPC2EENG", + "id": "K77" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU027668" + }, + { + "dataSource": "ICPC2P", + "id": "K77011" + }, + { + "dataSource": "LCH", + "id": "U005616" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059745" + }, + { + "dataSource": "LNC", + "id": "LP269421-6" + }, + { + "dataSource": "MDR", + "id": "10007554" + }, + { + "dataSource": "MEDCIN", + "id": "95724" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "199" + }, + { + "dataSource": "MSH", + "id": "D006333" + }, + { + "dataSource": "MTHICD9", + "id": "428.9" + }, + { + "dataSource": "NCI", + "id": "C50577" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10124" + }, + { + "dataSource": "NCI_FDA", + "id": "2206" + }, + { + "dataSource": "NCI_NICHD", + "id": "C50577" + }, + { + "dataSource": "OMIM", + "id": "MTHU009472" + }, + { + "dataSource": "RCD", + "id": "G58.." + }, + { + "dataSource": "SNM", + "id": "D-7050" + }, + { + "dataSource": "SNMI", + "id": "D3-16000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84114007" + }, + { + "dataSource": "WHO", + "id": "0496" + } + ] + } + ] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2020-09-03" + } + } + } + ], + "Variables": { + "RandomSeed": "1719176907", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json new file mode 100644 index 0000000000000..9cdd339a7b9f2 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json @@ -0,0 +1,1200 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "223", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-fc4801ccab1894459a9dca0239b50138-276d07f52711e74f-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8ec3c90b7880bba55b75abdb84a19321", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "Subject is taking 100mg of ibuprofen twice daily", + "language": "en" + }, + { + "id": "2", + "text": "Can cause rapid or irregular heartbeat, delirium, panic, psychosis, and heart failure.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "570ce0e4-6df9-4955-8e63-740df958a639", + "Date": "Tue, 03 Nov 2020 19:54:50 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/850316e7-a727-4c2e-a349-96de788e1d9b", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "104" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/850316e7-a727-4c2e-a349-96de788e1d9b?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "56fe48ebb003114e437c6f5c1a23295d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0052a789-6503-47d7-bfa3-9f630932487f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:50 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": "850316e7-a727-4c2e-a349-96de788e1d9b", + "lastUpdateDateTime": "2020-11-03T19:54:50Z", + "createdDateTime": "2020-11-03T19:54:50Z", + "expirationDateTime": "2020-11-04T19:54:50Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/850316e7-a727-4c2e-a349-96de788e1d9b?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e2f12bb5a78a8d006ec8d88886d7049c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "85ddfc7d-b4ad-4230-9430-30b3edbc8710", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:51 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": "850316e7-a727-4c2e-a349-96de788e1d9b", + "lastUpdateDateTime": "2020-11-03T19:54:50Z", + "createdDateTime": "2020-11-03T19:54:50Z", + "expirationDateTime": "2020-11-04T19:54:50Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/850316e7-a727-4c2e-a349-96de788e1d9b?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c7d5601dc12e5b3c7ab14a040948a137", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d39d74aa-f965-4ea8-8595-5e14d87d6f18", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:52 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": "850316e7-a727-4c2e-a349-96de788e1d9b", + "lastUpdateDateTime": "2020-11-03T19:54:50Z", + "createdDateTime": "2020-11-03T19:54:50Z", + "expirationDateTime": "2020-11-04T19:54:50Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/850316e7-a727-4c2e-a349-96de788e1d9b?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "59254d4cb0b043964770e83ad7c68b6c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cc18c722-43f6-4835-bc2b-62a1c8828cc3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:53 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": "850316e7-a727-4c2e-a349-96de788e1d9b", + "lastUpdateDateTime": "2020-11-03T19:54:50Z", + "createdDateTime": "2020-11-03T19:54:50Z", + "expirationDateTime": "2020-11-04T19:54:50Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/850316e7-a727-4c2e-a349-96de788e1d9b?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b93fd277614ef42fee9567d95dfc8425", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a3d0f374-fe64-43f7-b3a7-20287abc9a94", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "45" + }, + "ResponseBody": { + "jobId": "850316e7-a727-4c2e-a349-96de788e1d9b", + "lastUpdateDateTime": "2020-11-03T19:54:54Z", + "createdDateTime": "2020-11-03T19:54:50Z", + "expirationDateTime": "2020-11-04T19:54:50Z", + "status": "succeeded", + "errors": [], + "results": { + "statistics": { + "documentsCount": 2, + "validDocumentsCount": 2, + "erroneousDocumentsCount": 0, + "transactionsCount": 2 + }, + "documents": [ + { + "id": "1", + "statistics": { + "charactersCount": 48, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 18, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 27, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 37, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0, + "isNegated": false + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/0", + "target": "#/results/documents/0/entities/1" + }, + { + "relationType": "FrequencyOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/2", + "target": "#/results/documents/0/entities/1" + } + ] + }, + { + "id": "2", + "statistics": { + "charactersCount": 86, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 10, + "length": 5, + "text": "rapid", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0456962" + }, + { + "dataSource": "AOD", + "id": "0000002744" + }, + { + "dataSource": "CHV", + "id": "0000034666" + }, + { + "dataSource": "LNC", + "id": "LA24868-4" + }, + { + "dataSource": "NCI", + "id": "C65069" + }, + { + "dataSource": "RCD", + "id": "X78xZ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "255358001" + } + ] + }, + { + "offset": 19, + "length": 19, + "text": "irregular heartbeat", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0003811" + }, + { + "dataSource": "AOD", + "id": "0000005346" + }, + { + "dataSource": "BI", + "id": "BI00057" + }, + { + "dataSource": "CCPSS", + "id": "1017785" + }, + { + "dataSource": "CCS", + "id": "7.2.9" + }, + { + "dataSource": "CCSR_10", + "id": "CIR017" + }, + { + "dataSource": "CHV", + "id": "0000001440" + }, + { + "dataSource": "COSTAR", + "id": "153" + }, + { + "dataSource": "CSP", + "id": "1393-3277" + }, + { + "dataSource": "CST", + "id": "ARRHYTHMIA" + }, + { + "dataSource": "HPO", + "id": "HP:0011675" + }, + { + "dataSource": "ICD10", + "id": "I49.9" + }, + { + "dataSource": "ICD10AM", + "id": "I49.9" + }, + { + "dataSource": "ICD10CM", + "id": "I49.9" + }, + { + "dataSource": "ICD9CM", + "id": "427.9" + }, + { + "dataSource": "ICPC", + "id": "K80" + }, + { + "dataSource": "ICPC2EENG", + "id": "K80" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU033639" + }, + { + "dataSource": "ICPC2P", + "id": "K80012" + }, + { + "dataSource": "LCH", + "id": "U000359" + }, + { + "dataSource": "LCH_NW", + "id": "sh85007430" + }, + { + "dataSource": "LNC", + "id": "LA15419-7" + }, + { + "dataSource": "MDR", + "id": "10003119" + }, + { + "dataSource": "MEDCIN", + "id": "35851" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "147" + }, + { + "dataSource": "MSH", + "id": "D001145" + }, + { + "dataSource": "MTH", + "id": "153" + }, + { + "dataSource": "MTHICD9", + "id": "427.9" + }, + { + "dataSource": "NANDA-I", + "id": "00126" + }, + { + "dataSource": "NCI", + "id": "C2881" + }, + { + "dataSource": "NCI_FDA", + "id": "1721" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2881" + }, + { + "dataSource": "NOC", + "id": "040520" + }, + { + "dataSource": "OMIM", + "id": "115000" + }, + { + "dataSource": "PSY", + "id": "03790" + }, + { + "dataSource": "RCD", + "id": "X77BB" + }, + { + "dataSource": "SNM", + "id": "F-73102" + }, + { + "dataSource": "SNMI", + "id": "D3-30010" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "698247007" + }, + { + "dataSource": "WHO", + "id": "0433" + } + ] + }, + { + "offset": 40, + "length": 8, + "text": "delirium", + "category": "Diagnosis", + "confidenceScore": 0.99, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0011206" + }, + { + "dataSource": "AOD", + "id": "0000004328" + }, + { + "dataSource": "CCPSS", + "id": "1017884" + }, + { + "dataSource": "CHV", + "id": "0000003670" + }, + { + "dataSource": "COSTAR", + "id": "U000178" + }, + { + "dataSource": "CSP", + "id": "5003-0016" + }, + { + "dataSource": "CST", + "id": "DELIRIUM" + }, + { + "dataSource": "DSM-5", + "id": "780.09" + }, + { + "dataSource": "DXP", + "id": "U000937" + }, + { + "dataSource": "HPO", + "id": "HP:0031258" + }, + { + "dataSource": "ICD10", + "id": "F05.9" + }, + { + "dataSource": "ICD10AM", + "id": "F05.9" + }, + { + "dataSource": "ICD10CM", + "id": "R41.0" + }, + { + "dataSource": "ICNP", + "id": "10022091" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU022150" + }, + { + "dataSource": "LCH", + "id": "U001289" + }, + { + "dataSource": "LCH_NW", + "id": "sh85036579" + }, + { + "dataSource": "LNC", + "id": "LP89856-6" + }, + { + "dataSource": "MDR", + "id": "10012218" + }, + { + "dataSource": "MEDCIN", + "id": "677" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5562" + }, + { + "dataSource": "MSH", + "id": "D003693" + }, + { + "dataSource": "NANDA-I", + "id": "02157" + }, + { + "dataSource": "NCI", + "id": "C2981" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E12898" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2981" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000450100" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2981" + }, + { + "dataSource": "NOC", + "id": "091213" + }, + { + "dataSource": "OMIM", + "id": "MTHU035152" + }, + { + "dataSource": "PDQ", + "id": "CDR0000042226" + }, + { + "dataSource": "PSY", + "id": "13360" + }, + { + "dataSource": "QMR", + "id": "Q0200089" + }, + { + "dataSource": "RCD", + "id": "XE1Xv" + }, + { + "dataSource": "SNM", + "id": "F-85720" + }, + { + "dataSource": "SNMI", + "id": "D9-20100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2776000" + }, + { + "dataSource": "WHO", + "id": "0099" + } + ] + }, + { + "offset": 50, + "length": 5, + "text": "panic", + "category": "Diagnosis", + "confidenceScore": 0.89, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0030318" + }, + { + "dataSource": "AOD", + "id": "0000023911" + }, + { + "dataSource": "CHV", + "id": "0000009234" + }, + { + "dataSource": "CST", + "id": "AGITATION" + }, + { + "dataSource": "ICD10CM", + "id": "F41.0" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU057222" + }, + { + "dataSource": "LCH", + "id": "U003458" + }, + { + "dataSource": "LCH_NW", + "id": "sh85097438" + }, + { + "dataSource": "MDR", + "id": "10033670" + }, + { + "dataSource": "MSH", + "id": "D010200" + }, + { + "dataSource": "MTH", + "id": "551" + }, + { + "dataSource": "MTHICD9", + "id": "300.01" + }, + { + "dataSource": "NCI", + "id": "C94438" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000454704" + }, + { + "dataSource": "NOC", + "id": "121346" + }, + { + "dataSource": "PSY", + "id": "36260" + }, + { + "dataSource": "RCD", + "id": "Xa3Vj" + }, + { + "dataSource": "SNM", + "id": "F-90880" + }, + { + "dataSource": "SNMI", + "id": "F-92560" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "79823003" + }, + { + "dataSource": "WHO", + "id": "0163" + } + ] + }, + { + "offset": 57, + "length": 9, + "text": "psychosis", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0033975" + }, + { + "dataSource": "AIR", + "id": "PSYCH" + }, + { + "dataSource": "AOD", + "id": "0000004324" + }, + { + "dataSource": "BI", + "id": "BI00688" + }, + { + "dataSource": "CCPSS", + "id": "1018204" + }, + { + "dataSource": "CHV", + "id": "0000010350" + }, + { + "dataSource": "COSTAR", + "id": "089" + }, + { + "dataSource": "CSP", + "id": "2484-8182" + }, + { + "dataSource": "CST", + "id": "PSYCHOSIS" + }, + { + "dataSource": "DXP", + "id": "U003257" + }, + { + "dataSource": "HPO", + "id": "HP:0000709" + }, + { + "dataSource": "ICD9CM", + "id": "298.9" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU070382" + }, + { + "dataSource": "ICPC2P", + "id": "P98004" + }, + { + "dataSource": "LCH_NW", + "id": "sh85108502" + }, + { + "dataSource": "LNC", + "id": "LA7534-6" + }, + { + "dataSource": "MDR", + "id": "10061920" + }, + { + "dataSource": "MEDCIN", + "id": "364298" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4180" + }, + { + "dataSource": "MSH", + "id": "D011618" + }, + { + "dataSource": "MTH", + "id": "089" + }, + { + "dataSource": "MTHICD9", + "id": "298.9" + }, + { + "dataSource": "NANDA-I", + "id": "03128" + }, + { + "dataSource": "NCI", + "id": "C78576" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E12954" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000450115" + }, + { + "dataSource": "NCI_NICHD", + "id": "C78576" + }, + { + "dataSource": "NOC", + "id": "061619" + }, + { + "dataSource": "OMIM", + "id": "MTHU002910" + }, + { + "dataSource": "PSY", + "id": "41910" + }, + { + "dataSource": "QMR", + "id": "Q0200208" + }, + { + "dataSource": "RCD", + "id": "X00S6" + }, + { + "dataSource": "SNM", + "id": "D-9200" + }, + { + "dataSource": "SNMI", + "id": "D9-72000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "69322001" + }, + { + "dataSource": "WHO", + "id": "0193" + } + ] + }, + { + "offset": 72, + "length": 13, + "text": "heart failure", + "category": "Diagnosis", + "confidenceScore": 0.99, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0018801" + }, + { + "dataSource": "AOD", + "id": "0000005308" + }, + { + "dataSource": "BI", + "id": "BI00019" + }, + { + "dataSource": "CCPSS", + "id": "0017571" + }, + { + "dataSource": "CCS", + "id": "7.2.11.2" + }, + { + "dataSource": "CCSR_10", + "id": "CIR019" + }, + { + "dataSource": "CHV", + "id": "0000005877" + }, + { + "dataSource": "COSTAR", + "id": "U000338" + }, + { + "dataSource": "CSP", + "id": "1393-3587" + }, + { + "dataSource": "CST", + "id": "HEART FAIL" + }, + { + "dataSource": "HPO", + "id": "HP:0001635" + }, + { + "dataSource": "ICD10", + "id": "I50.9" + }, + { + "dataSource": "ICD10AM", + "id": "I50.9" + }, + { + "dataSource": "ICD10CM", + "id": "I50.9" + }, + { + "dataSource": "ICD9CM", + "id": "428.9" + }, + { + "dataSource": "ICPC", + "id": "K77" + }, + { + "dataSource": "ICPC2EENG", + "id": "K77" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU027668" + }, + { + "dataSource": "ICPC2P", + "id": "K77011" + }, + { + "dataSource": "LCH", + "id": "U005616" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059745" + }, + { + "dataSource": "LNC", + "id": "LP269421-6" + }, + { + "dataSource": "MDR", + "id": "10007554" + }, + { + "dataSource": "MEDCIN", + "id": "95724" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "199" + }, + { + "dataSource": "MSH", + "id": "D006333" + }, + { + "dataSource": "MTHICD9", + "id": "428.9" + }, + { + "dataSource": "NCI", + "id": "C50577" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10124" + }, + { + "dataSource": "NCI_FDA", + "id": "2206" + }, + { + "dataSource": "NCI_NICHD", + "id": "C50577" + }, + { + "dataSource": "OMIM", + "id": "MTHU009472" + }, + { + "dataSource": "RCD", + "id": "G58.." + }, + { + "dataSource": "SNM", + "id": "D-7050" + }, + { + "dataSource": "SNMI", + "id": "D3-16000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84114007" + }, + { + "dataSource": "WHO", + "id": "0496" + } + ] + } + ] + } + ], + "errors": [], + "modelVersion": "2020-09-03" + } + } + } + ], + "Variables": { + "RandomSeed": "858087556", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json new file mode 100644 index 0000000000000..e9ce9c00cb78d --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json @@ -0,0 +1,440 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "100", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-727a7de2c803724aa23a19bae1186378-7109c0f5764d4c4d-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e51cbf87a321df02032925de5e6708b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Subject is taking 100mg of ibuprofen twice daily", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "e7d5c967-f64e-4458-b47b-4a64dd9a3336", + "Date": "Tue, 03 Nov 2020 19:54:54 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2b33d234-2aaa-4569-b060-d2b49f6084ee", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "74" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2b33d234-2aaa-4569-b060-d2b49f6084ee", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2cdb69530701f208f175aa6a97e2593b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "671a4734-829e-4512-9e5b-e05e7cc4920f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5" + }, + "ResponseBody": { + "jobId": "2b33d234-2aaa-4569-b060-d2b49f6084ee", + "lastUpdateDateTime": "2020-11-03T19:54:55Z", + "createdDateTime": "2020-11-03T19:54:55Z", + "expirationDateTime": "2020-11-04T19:54:55Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2b33d234-2aaa-4569-b060-d2b49f6084ee", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a701cb20bb11a529608aebe12f36a48e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "72254b00-7f2e-4122-aee1-fed3c3e230d3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:56 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": "2b33d234-2aaa-4569-b060-d2b49f6084ee", + "lastUpdateDateTime": "2020-11-03T19:54:55Z", + "createdDateTime": "2020-11-03T19:54:55Z", + "expirationDateTime": "2020-11-04T19:54:55Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2b33d234-2aaa-4569-b060-d2b49f6084ee", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "03c09e10ea8d7fc1b629f4abf8984821", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8ffee12e-cea2-4b34-b6c6-ea29056228dc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:57 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": "2b33d234-2aaa-4569-b060-d2b49f6084ee", + "lastUpdateDateTime": "2020-11-03T19:54:55Z", + "createdDateTime": "2020-11-03T19:54:55Z", + "expirationDateTime": "2020-11-04T19:54:55Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2b33d234-2aaa-4569-b060-d2b49f6084ee", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "93bde9d0616598a24035cb771c26c3ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9314a623-9c68-479f-bbbf-992c2d04e542", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:58 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": "2b33d234-2aaa-4569-b060-d2b49f6084ee", + "lastUpdateDateTime": "2020-11-03T19:54:55Z", + "createdDateTime": "2020-11-03T19:54:55Z", + "expirationDateTime": "2020-11-04T19:54:55Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2b33d234-2aaa-4569-b060-d2b49f6084ee", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f8591cd0562136ad0a82f0e8c77dacc7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4378a807-4936-44d5-879e-45182a565158", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:54:59 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": "2b33d234-2aaa-4569-b060-d2b49f6084ee", + "lastUpdateDateTime": "2020-11-03T19:54:55Z", + "createdDateTime": "2020-11-03T19:54:55Z", + "expirationDateTime": "2020-11-04T19:54:55Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2b33d234-2aaa-4569-b060-d2b49f6084ee", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4511ca421179ae28fc28c2571f4a628f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f4ced011-ea6c-474c-ab64-061d727bc1b3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:55:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "jobId": "2b33d234-2aaa-4569-b060-d2b49f6084ee", + "lastUpdateDateTime": "2020-11-03T19:54:59Z", + "createdDateTime": "2020-11-03T19:54:55Z", + "expirationDateTime": "2020-11-04T19:54:55Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "statistics": { + "charactersCount": 48, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 18, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 27, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 37, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0, + "isNegated": false + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/0", + "target": "#/results/documents/0/entities/1" + }, + { + "relationType": "FrequencyOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/2", + "target": "#/results/documents/0/entities/1" + } + ] + } + ], + "errors": [], + "modelVersion": "2020-09-03" + } + } + } + ], + "Variables": { + "RandomSeed": "1686725774", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json new file mode 100644 index 0000000000000..ef0e3ecdaefcb --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json @@ -0,0 +1,368 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "100", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-f7ba619b4c5d15408d90d7dac13e1680-00597ec9a2683a46-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0e649e128b084513c9c62e584c5f813b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Subject is taking 100mg of ibuprofen twice daily", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "ace5a914-6ed6-4063-ad58-44a4949ca373", + "Date": "Tue, 03 Nov 2020 19:58:05 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/64f02d1e-6b95-41ff-97d9-1a7b222db2fd", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "91" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/64f02d1e-6b95-41ff-97d9-1a7b222db2fd?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "796705c1528f3adf8bba34f0a8f2bd37", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bb3a371b-22b6-4cfc-82b0-2e7980c984d9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:58:05 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": "64f02d1e-6b95-41ff-97d9-1a7b222db2fd", + "lastUpdateDateTime": "2020-11-03T19:58:05Z", + "createdDateTime": "2020-11-03T19:58:04Z", + "expirationDateTime": "2020-11-04T19:58:04Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/64f02d1e-6b95-41ff-97d9-1a7b222db2fd?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "740ea8ad2ce006c130b149d1ae645358", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "85c3dfa4-c964-4241-8aac-f53063a28f36", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:58: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": "64f02d1e-6b95-41ff-97d9-1a7b222db2fd", + "lastUpdateDateTime": "2020-11-03T19:58:05Z", + "createdDateTime": "2020-11-03T19:58:04Z", + "expirationDateTime": "2020-11-04T19:58:04Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/64f02d1e-6b95-41ff-97d9-1a7b222db2fd?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "07effce6ecdcc068be2a834d57229cd7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8ecff573-88c0-46a9-91b6-491089ccddfd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:58:07 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": "64f02d1e-6b95-41ff-97d9-1a7b222db2fd", + "lastUpdateDateTime": "2020-11-03T19:58:05Z", + "createdDateTime": "2020-11-03T19:58:04Z", + "expirationDateTime": "2020-11-04T19:58:04Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/64f02d1e-6b95-41ff-97d9-1a7b222db2fd?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a4abf7090d51955a436148dd080e8c26", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dd3e6bf5-45e1-4d93-b7bf-ad7200ec7875", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:58:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "jobId": "64f02d1e-6b95-41ff-97d9-1a7b222db2fd", + "lastUpdateDateTime": "2020-11-03T19:58:07Z", + "createdDateTime": "2020-11-03T19:58:04Z", + "expirationDateTime": "2020-11-04T19:58:04Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "statistics": { + "charactersCount": 48, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 18, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 27, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 37, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0, + "isNegated": false + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/0", + "target": "#/results/documents/0/entities/1" + }, + { + "relationType": "FrequencyOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/2", + "target": "#/results/documents/0/entities/1" + } + ] + } + ], + "errors": [], + "modelVersion": "2020-09-03" + } + } + } + ], + "Variables": { + "RandomSeed": "1940196881", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json new file mode 100644 index 0000000000000..292a41db24a7c --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json @@ -0,0 +1,953 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "223", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-54cf9701da3e7a4a9a1065372193d0f2-55e3c63e1e98de44-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e5bbee521fd95f6f85d46045340cc5e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "Subject is taking 100mg of ibuprofen twice daily", + "language": "en" + }, + { + "id": "2", + "text": "Can cause rapid or irregular heartbeat, delirium, panic, psychosis, and heart failure.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "9451696b-7359-4e64-8cff-521f578ba93b", + "Date": "Tue, 03 Nov 2020 19:57:37 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eedb899f-c3dd-42d8-a38a-b352adb3e567", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "99" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eedb899f-c3dd-42d8-a38a-b352adb3e567?$skip=1\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "cb3ef020b17077b8ee6ec139b3f21813", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "615d2400-05af-4490-ba3e-f3325ac86ddd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:57:37 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": "eedb899f-c3dd-42d8-a38a-b352adb3e567", + "lastUpdateDateTime": "2020-11-03T19:57:37Z", + "createdDateTime": "2020-11-03T19:57:37Z", + "expirationDateTime": "2020-11-04T19:57:37Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eedb899f-c3dd-42d8-a38a-b352adb3e567?$skip=1\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "beccfc644b839adbc9a8ce8f926f328c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6b82d1bf-395c-4c8f-a1c0-7846dd9c3e60", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:57:39 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": "eedb899f-c3dd-42d8-a38a-b352adb3e567", + "lastUpdateDateTime": "2020-11-03T19:57:37Z", + "createdDateTime": "2020-11-03T19:57:37Z", + "expirationDateTime": "2020-11-04T19:57:37Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eedb899f-c3dd-42d8-a38a-b352adb3e567?$skip=1\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8af430b30bf8a15e3644f66a5d35ac92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "71536451-e199-4b59-95a9-118f3df4cdef", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:57:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "80" + }, + "ResponseBody": { + "jobId": "eedb899f-c3dd-42d8-a38a-b352adb3e567", + "lastUpdateDateTime": "2020-11-03T19:57:39Z", + "createdDateTime": "2020-11-03T19:57:37Z", + "expirationDateTime": "2020-11-04T19:57:37Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "2", + "statistics": { + "charactersCount": 86, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 10, + "length": 5, + "text": "rapid", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0456962" + }, + { + "dataSource": "AOD", + "id": "0000002744" + }, + { + "dataSource": "CHV", + "id": "0000034666" + }, + { + "dataSource": "LNC", + "id": "LA24868-4" + }, + { + "dataSource": "NCI", + "id": "C65069" + }, + { + "dataSource": "RCD", + "id": "X78xZ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "255358001" + } + ] + }, + { + "offset": 19, + "length": 19, + "text": "irregular heartbeat", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0003811" + }, + { + "dataSource": "AOD", + "id": "0000005346" + }, + { + "dataSource": "BI", + "id": "BI00057" + }, + { + "dataSource": "CCPSS", + "id": "1017785" + }, + { + "dataSource": "CCS", + "id": "7.2.9" + }, + { + "dataSource": "CCSR_10", + "id": "CIR017" + }, + { + "dataSource": "CHV", + "id": "0000001440" + }, + { + "dataSource": "COSTAR", + "id": "153" + }, + { + "dataSource": "CSP", + "id": "1393-3277" + }, + { + "dataSource": "CST", + "id": "ARRHYTHMIA" + }, + { + "dataSource": "HPO", + "id": "HP:0011675" + }, + { + "dataSource": "ICD10", + "id": "I49.9" + }, + { + "dataSource": "ICD10AM", + "id": "I49.9" + }, + { + "dataSource": "ICD10CM", + "id": "I49.9" + }, + { + "dataSource": "ICD9CM", + "id": "427.9" + }, + { + "dataSource": "ICPC", + "id": "K80" + }, + { + "dataSource": "ICPC2EENG", + "id": "K80" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU033639" + }, + { + "dataSource": "ICPC2P", + "id": "K80012" + }, + { + "dataSource": "LCH", + "id": "U000359" + }, + { + "dataSource": "LCH_NW", + "id": "sh85007430" + }, + { + "dataSource": "LNC", + "id": "LA15419-7" + }, + { + "dataSource": "MDR", + "id": "10003119" + }, + { + "dataSource": "MEDCIN", + "id": "35851" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "147" + }, + { + "dataSource": "MSH", + "id": "D001145" + }, + { + "dataSource": "MTH", + "id": "153" + }, + { + "dataSource": "MTHICD9", + "id": "427.9" + }, + { + "dataSource": "NANDA-I", + "id": "00126" + }, + { + "dataSource": "NCI", + "id": "C2881" + }, + { + "dataSource": "NCI_FDA", + "id": "1721" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2881" + }, + { + "dataSource": "NOC", + "id": "040520" + }, + { + "dataSource": "OMIM", + "id": "115000" + }, + { + "dataSource": "PSY", + "id": "03790" + }, + { + "dataSource": "RCD", + "id": "X77BB" + }, + { + "dataSource": "SNM", + "id": "F-73102" + }, + { + "dataSource": "SNMI", + "id": "D3-30010" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "698247007" + }, + { + "dataSource": "WHO", + "id": "0433" + } + ] + }, + { + "offset": 40, + "length": 8, + "text": "delirium", + "category": "Diagnosis", + "confidenceScore": 0.99, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0011206" + }, + { + "dataSource": "AOD", + "id": "0000004328" + }, + { + "dataSource": "CCPSS", + "id": "1017884" + }, + { + "dataSource": "CHV", + "id": "0000003670" + }, + { + "dataSource": "COSTAR", + "id": "U000178" + }, + { + "dataSource": "CSP", + "id": "5003-0016" + }, + { + "dataSource": "CST", + "id": "DELIRIUM" + }, + { + "dataSource": "DSM-5", + "id": "780.09" + }, + { + "dataSource": "DXP", + "id": "U000937" + }, + { + "dataSource": "HPO", + "id": "HP:0031258" + }, + { + "dataSource": "ICD10", + "id": "F05.9" + }, + { + "dataSource": "ICD10AM", + "id": "F05.9" + }, + { + "dataSource": "ICD10CM", + "id": "R41.0" + }, + { + "dataSource": "ICNP", + "id": "10022091" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU022150" + }, + { + "dataSource": "LCH", + "id": "U001289" + }, + { + "dataSource": "LCH_NW", + "id": "sh85036579" + }, + { + "dataSource": "LNC", + "id": "LP89856-6" + }, + { + "dataSource": "MDR", + "id": "10012218" + }, + { + "dataSource": "MEDCIN", + "id": "677" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5562" + }, + { + "dataSource": "MSH", + "id": "D003693" + }, + { + "dataSource": "NANDA-I", + "id": "02157" + }, + { + "dataSource": "NCI", + "id": "C2981" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E12898" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2981" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000450100" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2981" + }, + { + "dataSource": "NOC", + "id": "091213" + }, + { + "dataSource": "OMIM", + "id": "MTHU035152" + }, + { + "dataSource": "PDQ", + "id": "CDR0000042226" + }, + { + "dataSource": "PSY", + "id": "13360" + }, + { + "dataSource": "QMR", + "id": "Q0200089" + }, + { + "dataSource": "RCD", + "id": "XE1Xv" + }, + { + "dataSource": "SNM", + "id": "F-85720" + }, + { + "dataSource": "SNMI", + "id": "D9-20100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2776000" + }, + { + "dataSource": "WHO", + "id": "0099" + } + ] + }, + { + "offset": 50, + "length": 5, + "text": "panic", + "category": "Diagnosis", + "confidenceScore": 0.89, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0030318" + }, + { + "dataSource": "AOD", + "id": "0000023911" + }, + { + "dataSource": "CHV", + "id": "0000009234" + }, + { + "dataSource": "CST", + "id": "AGITATION" + }, + { + "dataSource": "ICD10CM", + "id": "F41.0" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU057222" + }, + { + "dataSource": "LCH", + "id": "U003458" + }, + { + "dataSource": "LCH_NW", + "id": "sh85097438" + }, + { + "dataSource": "MDR", + "id": "10033670" + }, + { + "dataSource": "MSH", + "id": "D010200" + }, + { + "dataSource": "MTH", + "id": "551" + }, + { + "dataSource": "MTHICD9", + "id": "300.01" + }, + { + "dataSource": "NCI", + "id": "C94438" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000454704" + }, + { + "dataSource": "NOC", + "id": "121346" + }, + { + "dataSource": "PSY", + "id": "36260" + }, + { + "dataSource": "RCD", + "id": "Xa3Vj" + }, + { + "dataSource": "SNM", + "id": "F-90880" + }, + { + "dataSource": "SNMI", + "id": "F-92560" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "79823003" + }, + { + "dataSource": "WHO", + "id": "0163" + } + ] + }, + { + "offset": 57, + "length": 9, + "text": "psychosis", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0033975" + }, + { + "dataSource": "AIR", + "id": "PSYCH" + }, + { + "dataSource": "AOD", + "id": "0000004324" + }, + { + "dataSource": "BI", + "id": "BI00688" + }, + { + "dataSource": "CCPSS", + "id": "1018204" + }, + { + "dataSource": "CHV", + "id": "0000010350" + }, + { + "dataSource": "COSTAR", + "id": "089" + }, + { + "dataSource": "CSP", + "id": "2484-8182" + }, + { + "dataSource": "CST", + "id": "PSYCHOSIS" + }, + { + "dataSource": "DXP", + "id": "U003257" + }, + { + "dataSource": "HPO", + "id": "HP:0000709" + }, + { + "dataSource": "ICD9CM", + "id": "298.9" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU070382" + }, + { + "dataSource": "ICPC2P", + "id": "P98004" + }, + { + "dataSource": "LCH_NW", + "id": "sh85108502" + }, + { + "dataSource": "LNC", + "id": "LA7534-6" + }, + { + "dataSource": "MDR", + "id": "10061920" + }, + { + "dataSource": "MEDCIN", + "id": "364298" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4180" + }, + { + "dataSource": "MSH", + "id": "D011618" + }, + { + "dataSource": "MTH", + "id": "089" + }, + { + "dataSource": "MTHICD9", + "id": "298.9" + }, + { + "dataSource": "NANDA-I", + "id": "03128" + }, + { + "dataSource": "NCI", + "id": "C78576" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E12954" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000450115" + }, + { + "dataSource": "NCI_NICHD", + "id": "C78576" + }, + { + "dataSource": "NOC", + "id": "061619" + }, + { + "dataSource": "OMIM", + "id": "MTHU002910" + }, + { + "dataSource": "PSY", + "id": "41910" + }, + { + "dataSource": "QMR", + "id": "Q0200208" + }, + { + "dataSource": "RCD", + "id": "X00S6" + }, + { + "dataSource": "SNM", + "id": "D-9200" + }, + { + "dataSource": "SNMI", + "id": "D9-72000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "69322001" + }, + { + "dataSource": "WHO", + "id": "0193" + } + ] + }, + { + "offset": 72, + "length": 13, + "text": "heart failure", + "category": "Diagnosis", + "confidenceScore": 0.99, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0018801" + }, + { + "dataSource": "AOD", + "id": "0000005308" + }, + { + "dataSource": "BI", + "id": "BI00019" + }, + { + "dataSource": "CCPSS", + "id": "0017571" + }, + { + "dataSource": "CCS", + "id": "7.2.11.2" + }, + { + "dataSource": "CCSR_10", + "id": "CIR019" + }, + { + "dataSource": "CHV", + "id": "0000005877" + }, + { + "dataSource": "COSTAR", + "id": "U000338" + }, + { + "dataSource": "CSP", + "id": "1393-3587" + }, + { + "dataSource": "CST", + "id": "HEART FAIL" + }, + { + "dataSource": "HPO", + "id": "HP:0001635" + }, + { + "dataSource": "ICD10", + "id": "I50.9" + }, + { + "dataSource": "ICD10AM", + "id": "I50.9" + }, + { + "dataSource": "ICD10CM", + "id": "I50.9" + }, + { + "dataSource": "ICD9CM", + "id": "428.9" + }, + { + "dataSource": "ICPC", + "id": "K77" + }, + { + "dataSource": "ICPC2EENG", + "id": "K77" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU027668" + }, + { + "dataSource": "ICPC2P", + "id": "K77011" + }, + { + "dataSource": "LCH", + "id": "U005616" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059745" + }, + { + "dataSource": "LNC", + "id": "LP269421-6" + }, + { + "dataSource": "MDR", + "id": "10007554" + }, + { + "dataSource": "MEDCIN", + "id": "95724" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "199" + }, + { + "dataSource": "MSH", + "id": "D006333" + }, + { + "dataSource": "MTHICD9", + "id": "428.9" + }, + { + "dataSource": "NCI", + "id": "C50577" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10124" + }, + { + "dataSource": "NCI_FDA", + "id": "2206" + }, + { + "dataSource": "NCI_NICHD", + "id": "C50577" + }, + { + "dataSource": "OMIM", + "id": "MTHU009472" + }, + { + "dataSource": "RCD", + "id": "G58.." + }, + { + "dataSource": "SNM", + "id": "D-7050" + }, + { + "dataSource": "SNMI", + "id": "D3-16000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84114007" + }, + { + "dataSource": "WHO", + "id": "0496" + } + ] + } + ] + } + ], + "errors": [], + "modelVersion": "2020-09-03" + } + } + } + ], + "Variables": { + "RandomSeed": "900872338", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json new file mode 100644 index 0000000000000..e24f6be5cf885 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json @@ -0,0 +1,344 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "223", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-5161141dfca6ae46b580d1907afad80f-f46d6144166ca642-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8efbb01e5acc858dcd1ff153470e4093", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "Subject is taking 100mg of ibuprofen twice daily", + "language": "en" + }, + { + "id": "2", + "text": "Can cause rapid or irregular heartbeat, delirium, panic, psychosis, and heart failure.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "576921e3-bf0f-4205-916f-9b7eaaa71f50", + "Date": "Tue, 03 Nov 2020 19:56:52 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5ec0c31c-5d6d-4dee-b2b0-898462f25151", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "78" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5ec0c31c-5d6d-4dee-b2b0-898462f25151?$top=1\u0026$skip=0\u0026showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2660bb690f1e14745ff6a5df3888e782", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5a69967f-5b8c-405a-a618-359bd5a057a8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:56:52 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": "5ec0c31c-5d6d-4dee-b2b0-898462f25151", + "lastUpdateDateTime": "2020-11-03T19:56:52Z", + "createdDateTime": "2020-11-03T19:56:52Z", + "expirationDateTime": "2020-11-04T19:56:52Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5ec0c31c-5d6d-4dee-b2b0-898462f25151?$top=1\u0026$skip=0\u0026showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4c0a13cbdad64cf8d7c97184a7f98e05", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "237536e3-95dd-477d-bc67-f020cf67b9b3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:56:54 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": "5ec0c31c-5d6d-4dee-b2b0-898462f25151", + "lastUpdateDateTime": "2020-11-03T19:56:52Z", + "createdDateTime": "2020-11-03T19:56:52Z", + "expirationDateTime": "2020-11-04T19:56:52Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5ec0c31c-5d6d-4dee-b2b0-898462f25151?$top=1\u0026$skip=0\u0026showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "89adbdfd593e0f483ce62ed6b5ad4d44", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c28738f5-cb9a-49e6-8fe4-982321d421cc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 19:56:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "47" + }, + "ResponseBody": { + "jobId": "5ec0c31c-5d6d-4dee-b2b0-898462f25151", + "lastUpdateDateTime": "2020-11-03T19:56:54Z", + "createdDateTime": "2020-11-03T19:56:52Z", + "expirationDateTime": "2020-11-04T19:56:52Z", + "status": "succeeded", + "errors": [], + "results": { + "statistics": { + "documentsCount": 2, + "validDocumentsCount": 2, + "erroneousDocumentsCount": 0, + "transactionsCount": 2 + }, + "documents": [ + { + "id": "1", + "statistics": { + "charactersCount": 48, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 18, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 27, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 37, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0, + "isNegated": false + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/0", + "target": "#/results/documents/0/entities/1" + }, + { + "relationType": "FrequencyOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/2", + "target": "#/results/documents/0/entities/1" + } + ] + } + ], + "errors": [], + "modelVersion": "2020-09-03" + }, + "@nextLink": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5ec0c31c-5d6d-4dee-b2b0-898462f25151?$skip=1\u0026$top=1" + } + } + ], + "Variables": { + "RandomSeed": "1474656437", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json new file mode 100644 index 0000000000000..23b262eed101d --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json @@ -0,0 +1,109 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "294", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-cce1d902bd20234fa9c79452402d5620-260db3088ff4954f-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ac8b31cd1fe4a5f7118b81a8154a09ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "A developer with SSN 859-98-0987 whose phone number is 800-102-1100 is building tools with our APIs.", + "language": "en" + }, + { + "id": "1", + "text": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d7080007-db47-40ae-a546-e813cb6b1363", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", + "Date": "Mon, 02 Nov 2020 21:59:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "242" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "A developer with SSN *********** whose phone number is ************ is building tools with our APIs.", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "U.S. Social Security Number (SSN)", + "offset": 21, + "length": 11, + "confidenceScore": 0.65 + }, + { + "text": "800-102-1100", + "category": "Phone Number", + "offset": 55, + "length": 12, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "1", + "entities": [ + { + "text": "111000025", + "category": "Phone Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABA Routing Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "New Zealand Social Welfare Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ], + "Variables": { + "RandomSeed": "1208558188", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json new file mode 100644 index 0000000000000..83451caf93aa1 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json @@ -0,0 +1,109 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "294", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-b1220871fe511140be5e501382eba0c1-3a1e1a51162fcf47-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "71060fe59e6440a18e1dcb07127c5e38", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "A developer with SSN 859-98-0987 whose phone number is 800-102-1100 is building tools with our APIs.", + "language": "en" + }, + { + "id": "1", + "text": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6639d4d4-e6ca-4750-8afd-c538e594daea", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", + "Date": "Mon, 02 Nov 2020 21:59:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "150" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "A developer with SSN *********** whose phone number is ************ is building tools with our APIs.", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "U.S. Social Security Number (SSN)", + "offset": 21, + "length": 11, + "confidenceScore": 0.65 + }, + { + "text": "800-102-1100", + "category": "Phone Number", + "offset": 55, + "length": 12, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "1", + "entities": [ + { + "text": "111000025", + "category": "Phone Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABA Routing Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "New Zealand Social Welfare Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ], + "Variables": { + "RandomSeed": "400013383", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json new file mode 100644 index 0000000000000..948d52118cb08 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json @@ -0,0 +1,123 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "294", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-73cb09bb80fe6148b19640c1611fc69f-9649d1dc0a214d45-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "aa68fd09abaf12159bac58173ccbcb9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "A developer with SSN 859-98-0987 whose phone number is 800-102-1100 is building tools with our APIs.", + "language": "en" + }, + { + "id": "1", + "text": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c2da6b7c-0c46-4e86-8e8d-dfb59fe929a3", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", + "Date": "Mon, 02 Nov 2020 21:59:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "203" + }, + "ResponseBody": { + "statistics": { + "documentsCount": 2, + "validDocumentsCount": 2, + "erroneousDocumentsCount": 0, + "transactionsCount": 2 + }, + "documents": [ + { + "redactedText": "A developer with SSN *********** whose phone number is ************ is building tools with our APIs.", + "id": "0", + "statistics": { + "charactersCount": 100, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "859-98-0987", + "category": "U.S. Social Security Number (SSN)", + "offset": 21, + "length": 11, + "confidenceScore": 0.65 + }, + { + "text": "800-102-1100", + "category": "Phone Number", + "offset": 55, + "length": 12, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "1", + "statistics": { + "charactersCount": 105, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "111000025", + "category": "Phone Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABA Routing Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "New Zealand Social Welfare Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ], + "Variables": { + "RandomSeed": "1893186830", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json new file mode 100644 index 0000000000000..984742b48dad1 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -0,0 +1,123 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "294", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-f402a1212d93104c9887e7d319ea8341-5682f09f6773f947-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b4ea16a0906a3620e059fc121a2d3fd4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "A developer with SSN 859-98-0987 whose phone number is 800-102-1100 is building tools with our APIs.", + "language": "en" + }, + { + "id": "1", + "text": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3b0ba507-ad3d-4d3e-a802-a7597caccfd5", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", + "Date": "Mon, 02 Nov 2020 21:59:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "155" + }, + "ResponseBody": { + "statistics": { + "documentsCount": 2, + "validDocumentsCount": 2, + "erroneousDocumentsCount": 0, + "transactionsCount": 2 + }, + "documents": [ + { + "redactedText": "A developer with SSN *********** whose phone number is ************ is building tools with our APIs.", + "id": "0", + "statistics": { + "charactersCount": 100, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "859-98-0987", + "category": "U.S. Social Security Number (SSN)", + "offset": 21, + "length": 11, + "confidenceScore": 0.65 + }, + { + "text": "800-102-1100", + "category": "Phone Number", + "offset": 55, + "length": 12, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "1", + "statistics": { + "charactersCount": 105, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "111000025", + "category": "Phone Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABA Routing Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "New Zealand Social Welfare Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ], + "Variables": { + "RandomSeed": "862597014", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchTest.json new file mode 100644 index 0000000000000..46a0ae4df8aaf --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchTest.json @@ -0,0 +1,109 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "294", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-b793f9ab46824749b75adce32269afdf-740ecfff35433047-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "54b13717f3889e88e3c55e7e6b40c8be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "A developer with SSN 859-98-0987 whose phone number is 800-102-1100 is building tools with our APIs.", + "language": "en" + }, + { + "id": "2", + "text": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e2fe07e6-1d66-40aa-a9fe-c3ea1fadf251", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", + "Date": "Mon, 02 Nov 2020 21:59:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "152" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "A developer with SSN *********** whose phone number is ************ is building tools with our APIs.", + "id": "1", + "entities": [ + { + "text": "859-98-0987", + "category": "U.S. Social Security Number (SSN)", + "offset": 21, + "length": 11, + "confidenceScore": 0.65 + }, + { + "text": "800-102-1100", + "category": "Phone Number", + "offset": 55, + "length": 12, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "2", + "entities": [ + { + "text": "111000025", + "category": "Phone Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABA Routing Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "New Zealand Social Welfare Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ], + "Variables": { + "RandomSeed": "1622107649", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json new file mode 100644 index 0000000000000..fdbc6fab186c4 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json @@ -0,0 +1,109 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "294", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-0dceaf10a979784a81aa2fccf087a8ce-7b10da106d3fe840-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "87778b577df43b54c1fe213a2db287d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "A developer with SSN 859-98-0987 whose phone number is 800-102-1100 is building tools with our APIs.", + "language": "en" + }, + { + "id": "2", + "text": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6f02acb2-466e-4cbf-be7c-aa6a5e5a46d2", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", + "Date": "Mon, 02 Nov 2020 21:59:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "132" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "A developer with SSN *********** whose phone number is ************ is building tools with our APIs.", + "id": "1", + "entities": [ + { + "text": "859-98-0987", + "category": "U.S. Social Security Number (SSN)", + "offset": 21, + "length": 11, + "confidenceScore": 0.65 + }, + { + "text": "800-102-1100", + "category": "Phone Number", + "offset": 55, + "length": 12, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "2", + "entities": [ + { + "text": "111000025", + "category": "Phone Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABA Routing Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "New Zealand Social Welfare Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ], + "Variables": { + "RandomSeed": "171113489", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json new file mode 100644 index 0000000000000..67348d091f90b --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json @@ -0,0 +1,126 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "331", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-c470438811d35d47a510115a9f8194d8-1ced1bcc86d93c4c-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "02894db8540cbddf8617855df521d168", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "A developer with SSN 859-98-0987 whose phone number is 800-102-1100 is building tools with our APIs.", + "language": "en" + }, + { + "id": "1", + "text": "", + "language": "en" + }, + { + "id": "2", + "text": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "eb25ad0f-673d-46cc-802d-aaee051d2187", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", + "Date": "Tue, 03 Nov 2020 02:13:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "139" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "A developer with SSN *********** whose phone number is ************ is building tools with our APIs.", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "U.S. Social Security Number (SSN)", + "offset": 21, + "length": 11, + "confidenceScore": 0.65 + }, + { + "text": "800-102-1100", + "category": "Phone Number", + "offset": 55, + "length": 12, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "2", + "entities": [ + { + "text": "111000025", + "category": "Phone Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABA Routing Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "New Zealand Social Welfare Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "Variables": { + "RandomSeed": "2045235937", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json new file mode 100644 index 0000000000000..a3d48842792e0 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json @@ -0,0 +1,126 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "331", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-753180af684fa74a90545ebce3b37b91-0872edc50dbe3949-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e404b5dba1a6cde3ce4fa034ef2e5a68", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "A developer with SSN 859-98-0987 whose phone number is 800-102-1100 is building tools with our APIs.", + "language": "en" + }, + { + "id": "1", + "text": "", + "language": "en" + }, + { + "id": "2", + "text": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8ed2af8f-18d1-4bf0-8ccb-2774a36cde88", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", + "Date": "Tue, 03 Nov 2020 02:13:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "163" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "A developer with SSN *********** whose phone number is ************ is building tools with our APIs.", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "U.S. Social Security Number (SSN)", + "offset": 21, + "length": 11, + "confidenceScore": 0.65 + }, + { + "text": "800-102-1100", + "category": "Phone Number", + "offset": 55, + "length": 12, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "2", + "entities": [ + { + "text": "111000025", + "category": "Phone Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABA Routing Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "New Zealand Social Welfare Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "1", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "Variables": { + "RandomSeed": "782097725", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json new file mode 100644 index 0000000000000..521462e03645b --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json @@ -0,0 +1,123 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "294", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-1687f68a6da7a847b6a6332d070ba1c4-fa87ece00ad70842-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2b25152f473684496471eb9b8d57e679", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "A developer with SSN 859-98-0987 whose phone number is 800-102-1100 is building tools with our APIs.", + "language": "en" + }, + { + "id": "2", + "text": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5309e1d6-6fe5-43ee-9ec6-c0219c0685a1", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", + "Date": "Mon, 02 Nov 2020 21:59:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "145" + }, + "ResponseBody": { + "statistics": { + "documentsCount": 2, + "validDocumentsCount": 2, + "erroneousDocumentsCount": 0, + "transactionsCount": 2 + }, + "documents": [ + { + "redactedText": "A developer with SSN *********** whose phone number is ************ is building tools with our APIs.", + "id": "1", + "statistics": { + "charactersCount": 100, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "859-98-0987", + "category": "U.S. Social Security Number (SSN)", + "offset": 21, + "length": 11, + "confidenceScore": 0.65 + }, + { + "text": "800-102-1100", + "category": "Phone Number", + "offset": 55, + "length": 12, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "2", + "statistics": { + "charactersCount": 105, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "111000025", + "category": "Phone Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABA Routing Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "New Zealand Social Welfare Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ], + "Variables": { + "RandomSeed": "1811770374", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json new file mode 100644 index 0000000000000..45badf6c45cda --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json @@ -0,0 +1,123 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "294", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-19055a593bae7947b612de88611dc688-474b3be07ced2342-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "74c8351dc950ef2d0d1383edf314e7c8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "A developer with SSN 859-98-0987 whose phone number is 800-102-1100 is building tools with our APIs.", + "language": "en" + }, + { + "id": "2", + "text": "Your ABA number - 111000025 - is the first 9 digits in the lower left hand corner of your personal check.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8352b192-e27b-4ef4-af0b-2dd1e11c216f", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", + "Date": "Mon, 02 Nov 2020 21:59:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "132" + }, + "ResponseBody": { + "statistics": { + "documentsCount": 2, + "validDocumentsCount": 2, + "erroneousDocumentsCount": 0, + "transactionsCount": 2 + }, + "documents": [ + { + "redactedText": "A developer with SSN *********** whose phone number is ************ is building tools with our APIs.", + "id": "1", + "statistics": { + "charactersCount": 100, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "859-98-0987", + "category": "U.S. Social Security Number (SSN)", + "offset": 21, + "length": 11, + "confidenceScore": 0.65 + }, + { + "text": "800-102-1100", + "category": "Phone Number", + "offset": 55, + "length": 12, + "confidenceScore": 0.8 + } + ], + "warnings": [] + }, + { + "redactedText": "Your ABA number - ********* - is the first 9 digits in the lower left hand corner of your personal check.", + "id": "2", + "statistics": { + "charactersCount": 105, + "transactionsCount": 1 + }, + "entities": [ + { + "text": "111000025", + "category": "Phone Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.8 + }, + { + "text": "111000025", + "category": "ABA Routing Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.75 + }, + { + "text": "111000025", + "category": "New Zealand Social Welfare Number", + "offset": 18, + "length": 9, + "confidenceScore": 0.65 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ], + "Variables": { + "RandomSeed": "1166279893", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesTest.json new file mode 100644 index 0000000000000..b3e9c72d2d513 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesTest.json @@ -0,0 +1,76 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "152", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-e87028d213055f45b2747f760196a6c0-a8fd3c5c1a051346-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "dddcc8de8b1df2a7bb8870db02c86fec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "A developer with SSN 859-98-0987 whose phone number is 800-102-1100 is building tools with our APIs.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4e6d8909-b205-4554-b839-56ec28107633", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", + "Date": "Mon, 02 Nov 2020 21:59:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "105" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "A developer with SSN *********** whose phone number is ************ is building tools with our APIs.", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "U.S. Social Security Number (SSN)", + "offset": 21, + "length": 11, + "confidenceScore": 0.65 + }, + { + "text": "800-102-1100", + "category": "Phone Number", + "offset": 55, + "length": 12, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ], + "Variables": { + "RandomSeed": "1286939485", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesTestAsync.json new file mode 100644 index 0000000000000..d7784439b394b --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesTestAsync.json @@ -0,0 +1,76 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "152", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-09b1d41f5edd2b47af6921cc71215490-ac1754d4e5ecbd48-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4ff6bdd48e941f0c8121f98a5f91782b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "A developer with SSN 859-98-0987 whose phone number is 800-102-1100 is building tools with our APIs.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8ca9f618-a3f8-4708-9f3a-78ffe403c9c8", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", + "Date": "Mon, 02 Nov 2020 21:59:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "108" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "A developer with SSN *********** whose phone number is ************ is building tools with our APIs.", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "U.S. Social Security Number (SSN)", + "offset": 21, + "length": 11, + "confidenceScore": 0.65 + }, + { + "text": "800-102-1100", + "category": "Phone Number", + "offset": 55, + "length": 12, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ], + "Variables": { + "RandomSeed": "344494906", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesWithDomainTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesWithDomainTest.json new file mode 100644 index 0000000000000..2c1cfc5a05962 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesWithDomainTest.json @@ -0,0 +1,69 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "107", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-ab227f9d0f949a4491204f8bfce96c07-0ba5c880b77e6749-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ff65bded004287f21aa1d3b05b97f50d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I work at Microsoft and my email is atest@microsoft.com", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3f76c1c6-e754-4ba7-bccb-dd7060026b30", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", + "Date": "Mon, 02 Nov 2020 21:59:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "83" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "I work at Microsoft and my email is *******************", + "id": "0", + "entities": [ + { + "text": "atest@microsoft.com", + "category": "Email", + "offset": 36, + "length": 19, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ], + "Variables": { + "RandomSeed": "337525195", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json new file mode 100644 index 0000000000000..e5f6129105872 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json @@ -0,0 +1,69 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "107", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-2c41c3f89fdbf74e95cdca915b35bcc5-7cb82d0dedb3b14b-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "458a519e986ca99c278ba748dc69c858", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "I work at Microsoft and my email is atest@microsoft.com", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "854b3544-259a-440b-b093-d4253cd118d6", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", + "Date": "Mon, 02 Nov 2020 21:59:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "82" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "I work at Microsoft and my email is *******************", + "id": "0", + "entities": [ + { + "text": "atest@microsoft.com", + "category": "Email", + "offset": 36, + "length": 19, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ], + "Variables": { + "RandomSeed": "1549016743", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json new file mode 100644 index 0000000000000..bd0ea40ae2340 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json @@ -0,0 +1,76 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "152", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-0aa99c837c3a614eb5e854e77c641631-dd14178f43ae984e-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3e5d88737b2a027b2c897229cd036ddd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "A developer with SSN 859-98-0987 whose phone number is 800-102-1100 is building tools with our APIs.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "34397768-e1c7-48fb-b473-dc3b5b544c49", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", + "Date": "Mon, 02 Nov 2020 21:59:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "105" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "A developer with SSN *********** whose phone number is ************ is building tools with our APIs.", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "U.S. Social Security Number (SSN)", + "offset": 21, + "length": 11, + "confidenceScore": 0.65 + }, + { + "text": "800-102-1100", + "category": "Phone Number", + "offset": 55, + "length": 12, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ], + "Variables": { + "RandomSeed": "1496908493", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json new file mode 100644 index 0000000000000..3167c23717acf --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json @@ -0,0 +1,76 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "152", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-7b902055f956534d9234a891a4a8347c-9823b2b1e4627e4e-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e0281898674fb192966ccac8dcd26687", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "A developer with SSN 859-98-0987 whose phone number is 800-102-1100 is building tools with our APIs.", + "language": "en" + } + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "42b64b5e-01aa-42c7-98ef-7fa65539a314", + "Content-Type": "application/json; charset=utf-8", + "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", + "Date": "Mon, 02 Nov 2020 21:59:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "104" + }, + "ResponseBody": { + "documents": [ + { + "redactedText": "A developer with SSN *********** whose phone number is ************ is building tools with our APIs.", + "id": "0", + "entities": [ + { + "text": "859-98-0987", + "category": "U.S. Social Security Number (SSN)", + "offset": 21, + "length": 11, + "confidenceScore": 0.65 + }, + { + "text": "800-102-1100", + "category": "Phone Number", + "offset": 55, + "length": 12, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ], + "Variables": { + "RandomSeed": "1065377519", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json index ed7861f605d40..e7b8d36b8f90f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json @@ -11,9 +11,9 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-aaae9567a0db2a439c04549470f75584-e3441f259c0a2a46-00", + "traceparent": "00-5c99ca22200b3d4a814aeb8422eaa406-9e8a3937a1bcbf4c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c173c94341dba618c4f393086e026774", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "781c1bbc-2031-4d4e-8072-9e793d48dda5", + "apim-request-id": "d6fbb1f4-5db8-4499-bffa-1c240243c925", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:21 GMT", + "Date": "Tue, 03 Nov 2020 19:58:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "124" + "x-envoy-upstream-service-time": "144" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json index 77864b36a40a1..621c7d709d125 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json @@ -11,9 +11,9 @@ "Content-Length": "331", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8e29a487cc39ae41bc6f487cd0a77f64-220e0fbfcfbf404f-00", + "traceparent": "00-f3e0408b80324f4ebad819357dbacdd4-f80e54eddcae1140-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e382b2e96bf3675f4d7d7960b8b32916", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "383b53c1-5160-4ffc-b1d1-0607baf15cad", + "apim-request-id": "96ef5504-3c20-4a19-b4f3-f220abc5e95f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:21 GMT", + "Date": "Tue, 03 Nov 2020 19:58:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "130" + "x-envoy-upstream-service-time": "128" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json index 4c1a01cb155ea..e8d319f32d365 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "331", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-90ca787d03c14e47bb3eca279b9d553b-701a3e067cafaf46-00", + "traceparent": "00-47cb294495da594cb0e807827b30a6b4-56cefc34269fa347-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e218864f9605e01c86941869a0be6841", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7132965f-0718-4a2b-9619-8bc83bc556b2", + "apim-request-id": "c11368cd-e6b0-49b2-9e17-e7c9c91fb243", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:23 GMT", + "Date": "Tue, 03 Nov 2020 19:58:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "130" + "x-envoy-upstream-service-time": "136" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs index 476fd8d31174a..4e567e0c4b055 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs @@ -69,8 +69,8 @@ public async Task HealthcareAsyncShowStats() } Console.WriteLine($" Document statistics:"); - Console.WriteLine($" Character count (in Unicode graphemes): {result.Statistics.Value.CharacterCount}"); - Console.WriteLine($" Transaction count: {result.Statistics.Value.TransactionCount}"); + Console.WriteLine($" Document count count (in Unicode graphemes): {results.Statistics.DocumentCount}"); + Console.WriteLine($" Transaction count: {results.Statistics.TransactionCount}"); Console.WriteLine(""); } } From a8e922b2b6b8803fd25ceb02a43aea0adcfcfbbf Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Tue, 3 Nov 2020 12:20:03 -0800 Subject: [PATCH 24/58] fixed async tests --- .../src/TextAnalyticsClient.cs | 4 +- ...ealthcareEntitiesBatchConvenienceTest.json | 164 ++- ...careEntitiesBatchConvenienceTestAsync.json | 1194 ++++++++++++++++ ...iesBatchConvenienceWithStatisticsTest.json | 126 +- ...tchConvenienceWithStatisticsTestAsync.json | 1236 ++++++++++++++++ .../RecognizeHealthcareEntitiesBatchTest.json | 124 +- ...gnizeHealthcareEntitiesBatchTestAsync.json | 1230 ++++++++++++++++ ...eHealthcareEntitiesBatchWithErrorTest.json | 106 +- ...thcareEntitiesBatchWithErrorTestAsync.json | 1247 +++++++++++++++++ ...thcareEntitiesBatchWithStatisticsTest.json | 124 +- ...eEntitiesBatchWithStatisticsTestAsync.json | 1200 ++++++++++++++++ .../RecognizeHealthcareEntitiesTest.json | 108 +- .../RecognizeHealthcareEntitiesTestAsync.json | 296 ++++ ...izeHealthcareEntitiesWithLanguageTest.json | 110 +- ...althcareEntitiesWithLanguageTestAsync.json | 440 ++++++ ...zeHealthcareEntitiesWithSkipParameter.json | 162 ++- ...lthcareEntitiesWithSkipParameterAsync.json | 1061 ++++++++++++++ ...izeHealthcareEntitiesWithTopParameter.json | 166 ++- ...althcareEntitiesWithTopParameterAsync.json | 416 ++++++ 19 files changed, 9115 insertions(+), 399 deletions(-) create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index facda8909496d..5e101a9425b34 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -2096,7 +2096,7 @@ public virtual async Task StartHealthcareAsync(string docum MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents, language); - using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartHealthcareAsync)}"); + using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartHealthcare)}"); scope.Start(); try @@ -2277,7 +2277,7 @@ private async Task StartHealthcareBatchAsync(MultiLanguageB { options ??= new HealthcareOptions(); - using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartHealthcareBatchAsync)}"); + using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartHealthcareBatch)}"); scope.Start(); try diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json index 87f0348be5a2e..07ebc352de962 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json @@ -11,7 +11,7 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4be4221e14c57542968ffa63be8afa37-dd3623b63c4b1e4f-00", + "traceparent": "00-e55e880f3ba52c41bde4a3572ccca04e-34b96d4705d8544a-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "99db0b4e-91f0-428b-a566-a95901575d69", - "Date": "Tue, 03 Nov 2020 19:54:33 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/00bf2ee9-cd9d-4dd1-825e-86153aff42d6", + "apim-request-id": "f3f4f384-2876-4569-8a58-bdc41892e689", + "Date": "Tue, 03 Nov 2020 20:16:34 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5797fb6e-4cc4-4d53-9568-9c534fc4c1a5", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "164" + "x-envoy-upstream-service-time": "204" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/00bf2ee9-cd9d-4dd1-825e-86153aff42d6?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5797fb6e-4cc4-4d53-9568-9c534fc4c1a5?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "869db77e-1b96-4aa0-bfa4-3137be77155d", + "apim-request-id": "a470f20c-8881-42e1-a1a0-dbc7a92894c3", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:33 GMT", + "Date": "Tue, 03 Nov 2020 20:16:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "00bf2ee9-cd9d-4dd1-825e-86153aff42d6", - "lastUpdateDateTime": "2020-11-03T19:54:33Z", - "createdDateTime": "2020-11-03T19:54:33Z", - "expirationDateTime": "2020-11-04T19:54:33Z", + "jobId": "5797fb6e-4cc4-4d53-9568-9c534fc4c1a5", + "lastUpdateDateTime": "2020-11-03T20:16:34Z", + "createdDateTime": "2020-11-03T20:16:34Z", + "expirationDateTime": "2020-11-04T20:16:34Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/00bf2ee9-cd9d-4dd1-825e-86153aff42d6?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5797fb6e-4cc4-4d53-9568-9c534fc4c1a5?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cb8d4155-38a9-462b-99ce-154034bac3f2", + "apim-request-id": "4da96516-1e02-4b56-875c-f2ffa4e94c94", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:34 GMT", + "Date": "Tue, 03 Nov 2020 20:16: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": "00bf2ee9-cd9d-4dd1-825e-86153aff42d6", - "lastUpdateDateTime": "2020-11-03T19:54:33Z", - "createdDateTime": "2020-11-03T19:54:33Z", - "expirationDateTime": "2020-11-04T19:54:33Z", + "jobId": "5797fb6e-4cc4-4d53-9568-9c534fc4c1a5", + "lastUpdateDateTime": "2020-11-03T20:16:34Z", + "createdDateTime": "2020-11-03T20:16:34Z", + "expirationDateTime": "2020-11-04T20:16:34Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/00bf2ee9-cd9d-4dd1-825e-86153aff42d6?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5797fb6e-4cc4-4d53-9568-9c534fc4c1a5?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -136,19 +136,127 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e6d00d64-e9d4-482f-8b06-89c2d6b2c60b", + "apim-request-id": "e9326c7a-8021-4212-b99d-5ae3ea006d59", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:35 GMT", + "Date": "Tue, 03 Nov 2020 20:16:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "69" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { - "jobId": "00bf2ee9-cd9d-4dd1-825e-86153aff42d6", - "lastUpdateDateTime": "2020-11-03T19:54:34Z", - "createdDateTime": "2020-11-03T19:54:33Z", - "expirationDateTime": "2020-11-04T19:54:33Z", + "jobId": "5797fb6e-4cc4-4d53-9568-9c534fc4c1a5", + "lastUpdateDateTime": "2020-11-03T20:16:34Z", + "createdDateTime": "2020-11-03T20:16:34Z", + "expirationDateTime": "2020-11-04T20:16:34Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5797fb6e-4cc4-4d53-9568-9c534fc4c1a5?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e057fbd34137dcb63a747e1bc545b423", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "163a8cec-447e-434c-8a52-a633a4d39a97", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:16:37 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": "5797fb6e-4cc4-4d53-9568-9c534fc4c1a5", + "lastUpdateDateTime": "2020-11-03T20:16:34Z", + "createdDateTime": "2020-11-03T20:16:34Z", + "expirationDateTime": "2020-11-04T20:16:34Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5797fb6e-4cc4-4d53-9568-9c534fc4c1a5?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2dc9f6e14c227d66ae6ff775359664e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7dd86c9f-c0f4-41a3-b16c-6787d05b623d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:16:38 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": "5797fb6e-4cc4-4d53-9568-9c534fc4c1a5", + "lastUpdateDateTime": "2020-11-03T20:16:34Z", + "createdDateTime": "2020-11-03T20:16:34Z", + "expirationDateTime": "2020-11-04T20:16:34Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5797fb6e-4cc4-4d53-9568-9c534fc4c1a5?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "63ce4611f5e00d620cdb6447b8abdfe2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dc9213d1-eda2-4249-9bfe-3061d6fff0cf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:16:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "jobId": "5797fb6e-4cc4-4d53-9568-9c534fc4c1a5", + "lastUpdateDateTime": "2020-11-03T20:16:39Z", + "createdDateTime": "2020-11-03T20:16:34Z", + "expirationDateTime": "2020-11-04T20:16:34Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json new file mode 100644 index 0000000000000..82c8ce9f04424 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json @@ -0,0 +1,1194 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "223", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-41e7cf6744415c4281b26fffd81930e9-ce1b43879c22484c-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "99aaf08b1c844fb2d7a9025199ec97e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Subject is taking 100mg of ibuprofen twice daily", + "language": "en" + }, + { + "id": "1", + "text": "Can cause rapid or irregular heartbeat, delirium, panic, psychosis, and heart failure.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "1631d2d9-76d0-4b6a-a42f-eb9b0c6d9c5a", + "Date": "Tue, 03 Nov 2020 20:17:20 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/946df61d-c7ad-467a-a786-c726d7bdd754", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "125" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/946df61d-c7ad-467a-a786-c726d7bdd754?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a6eb27012d3e0231e64179d6488bf525", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "48370ae0-50ea-4656-89a4-49ca8cebaa6b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17: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": "946df61d-c7ad-467a-a786-c726d7bdd754", + "lastUpdateDateTime": "2020-11-03T20:17:20Z", + "createdDateTime": "2020-11-03T20:17:20Z", + "expirationDateTime": "2020-11-04T20:17:20Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/946df61d-c7ad-467a-a786-c726d7bdd754?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4d12280124119b66ed27d10225884cad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "53de0463-ddc4-4c3e-b3f7-8aa89224a8fa", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:21 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": "946df61d-c7ad-467a-a786-c726d7bdd754", + "lastUpdateDateTime": "2020-11-03T20:17:20Z", + "createdDateTime": "2020-11-03T20:17:20Z", + "expirationDateTime": "2020-11-04T20:17:20Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/946df61d-c7ad-467a-a786-c726d7bdd754?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c1281b11742f5d97bfa8b242a2dc074b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7bda572d-9844-4213-965b-29b4677df90f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:22 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": "946df61d-c7ad-467a-a786-c726d7bdd754", + "lastUpdateDateTime": "2020-11-03T20:17:20Z", + "createdDateTime": "2020-11-03T20:17:20Z", + "expirationDateTime": "2020-11-04T20:17:20Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/946df61d-c7ad-467a-a786-c726d7bdd754?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "714fdcb449dadcd2c04fb8165b2fdd5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7f56f6a5-796f-48c5-94e5-5da29a250fb6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:23 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": "946df61d-c7ad-467a-a786-c726d7bdd754", + "lastUpdateDateTime": "2020-11-03T20:17:20Z", + "createdDateTime": "2020-11-03T20:17:20Z", + "expirationDateTime": "2020-11-04T20:17:20Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/946df61d-c7ad-467a-a786-c726d7bdd754?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2cc4ccf534638cf591b48e697223f811", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "64d52ae3-1aff-4677-8554-8a4d08a5a0ee", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "jobId": "946df61d-c7ad-467a-a786-c726d7bdd754", + "lastUpdateDateTime": "2020-11-03T20:17:24Z", + "createdDateTime": "2020-11-03T20:17:20Z", + "expirationDateTime": "2020-11-04T20:17:20Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "statistics": { + "charactersCount": 48, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 18, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 27, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 37, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0, + "isNegated": false + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/0", + "target": "#/results/documents/0/entities/1" + }, + { + "relationType": "FrequencyOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/2", + "target": "#/results/documents/0/entities/1" + } + ] + }, + { + "id": "1", + "statistics": { + "charactersCount": 86, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 10, + "length": 5, + "text": "rapid", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0456962" + }, + { + "dataSource": "AOD", + "id": "0000002744" + }, + { + "dataSource": "CHV", + "id": "0000034666" + }, + { + "dataSource": "LNC", + "id": "LA24868-4" + }, + { + "dataSource": "NCI", + "id": "C65069" + }, + { + "dataSource": "RCD", + "id": "X78xZ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "255358001" + } + ] + }, + { + "offset": 19, + "length": 19, + "text": "irregular heartbeat", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0003811" + }, + { + "dataSource": "AOD", + "id": "0000005346" + }, + { + "dataSource": "BI", + "id": "BI00057" + }, + { + "dataSource": "CCPSS", + "id": "1017785" + }, + { + "dataSource": "CCS", + "id": "7.2.9" + }, + { + "dataSource": "CCSR_10", + "id": "CIR017" + }, + { + "dataSource": "CHV", + "id": "0000001440" + }, + { + "dataSource": "COSTAR", + "id": "153" + }, + { + "dataSource": "CSP", + "id": "1393-3277" + }, + { + "dataSource": "CST", + "id": "ARRHYTHMIA" + }, + { + "dataSource": "HPO", + "id": "HP:0011675" + }, + { + "dataSource": "ICD10", + "id": "I49.9" + }, + { + "dataSource": "ICD10AM", + "id": "I49.9" + }, + { + "dataSource": "ICD10CM", + "id": "I49.9" + }, + { + "dataSource": "ICD9CM", + "id": "427.9" + }, + { + "dataSource": "ICPC", + "id": "K80" + }, + { + "dataSource": "ICPC2EENG", + "id": "K80" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU033639" + }, + { + "dataSource": "ICPC2P", + "id": "K80012" + }, + { + "dataSource": "LCH", + "id": "U000359" + }, + { + "dataSource": "LCH_NW", + "id": "sh85007430" + }, + { + "dataSource": "LNC", + "id": "LA15419-7" + }, + { + "dataSource": "MDR", + "id": "10003119" + }, + { + "dataSource": "MEDCIN", + "id": "35851" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "147" + }, + { + "dataSource": "MSH", + "id": "D001145" + }, + { + "dataSource": "MTH", + "id": "153" + }, + { + "dataSource": "MTHICD9", + "id": "427.9" + }, + { + "dataSource": "NANDA-I", + "id": "00126" + }, + { + "dataSource": "NCI", + "id": "C2881" + }, + { + "dataSource": "NCI_FDA", + "id": "1721" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2881" + }, + { + "dataSource": "NOC", + "id": "040520" + }, + { + "dataSource": "OMIM", + "id": "115000" + }, + { + "dataSource": "PSY", + "id": "03790" + }, + { + "dataSource": "RCD", + "id": "X77BB" + }, + { + "dataSource": "SNM", + "id": "F-73102" + }, + { + "dataSource": "SNMI", + "id": "D3-30010" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "698247007" + }, + { + "dataSource": "WHO", + "id": "0433" + } + ] + }, + { + "offset": 40, + "length": 8, + "text": "delirium", + "category": "Diagnosis", + "confidenceScore": 0.99, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0011206" + }, + { + "dataSource": "AOD", + "id": "0000004328" + }, + { + "dataSource": "CCPSS", + "id": "1017884" + }, + { + "dataSource": "CHV", + "id": "0000003670" + }, + { + "dataSource": "COSTAR", + "id": "U000178" + }, + { + "dataSource": "CSP", + "id": "5003-0016" + }, + { + "dataSource": "CST", + "id": "DELIRIUM" + }, + { + "dataSource": "DSM-5", + "id": "780.09" + }, + { + "dataSource": "DXP", + "id": "U000937" + }, + { + "dataSource": "HPO", + "id": "HP:0031258" + }, + { + "dataSource": "ICD10", + "id": "F05.9" + }, + { + "dataSource": "ICD10AM", + "id": "F05.9" + }, + { + "dataSource": "ICD10CM", + "id": "R41.0" + }, + { + "dataSource": "ICNP", + "id": "10022091" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU022150" + }, + { + "dataSource": "LCH", + "id": "U001289" + }, + { + "dataSource": "LCH_NW", + "id": "sh85036579" + }, + { + "dataSource": "LNC", + "id": "LP89856-6" + }, + { + "dataSource": "MDR", + "id": "10012218" + }, + { + "dataSource": "MEDCIN", + "id": "677" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5562" + }, + { + "dataSource": "MSH", + "id": "D003693" + }, + { + "dataSource": "NANDA-I", + "id": "02157" + }, + { + "dataSource": "NCI", + "id": "C2981" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E12898" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2981" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000450100" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2981" + }, + { + "dataSource": "NOC", + "id": "091213" + }, + { + "dataSource": "OMIM", + "id": "MTHU035152" + }, + { + "dataSource": "PDQ", + "id": "CDR0000042226" + }, + { + "dataSource": "PSY", + "id": "13360" + }, + { + "dataSource": "QMR", + "id": "Q0200089" + }, + { + "dataSource": "RCD", + "id": "XE1Xv" + }, + { + "dataSource": "SNM", + "id": "F-85720" + }, + { + "dataSource": "SNMI", + "id": "D9-20100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2776000" + }, + { + "dataSource": "WHO", + "id": "0099" + } + ] + }, + { + "offset": 50, + "length": 5, + "text": "panic", + "category": "Diagnosis", + "confidenceScore": 0.89, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0030318" + }, + { + "dataSource": "AOD", + "id": "0000023911" + }, + { + "dataSource": "CHV", + "id": "0000009234" + }, + { + "dataSource": "CST", + "id": "AGITATION" + }, + { + "dataSource": "ICD10CM", + "id": "F41.0" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU057222" + }, + { + "dataSource": "LCH", + "id": "U003458" + }, + { + "dataSource": "LCH_NW", + "id": "sh85097438" + }, + { + "dataSource": "MDR", + "id": "10033670" + }, + { + "dataSource": "MSH", + "id": "D010200" + }, + { + "dataSource": "MTH", + "id": "551" + }, + { + "dataSource": "MTHICD9", + "id": "300.01" + }, + { + "dataSource": "NCI", + "id": "C94438" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000454704" + }, + { + "dataSource": "NOC", + "id": "121346" + }, + { + "dataSource": "PSY", + "id": "36260" + }, + { + "dataSource": "RCD", + "id": "Xa3Vj" + }, + { + "dataSource": "SNM", + "id": "F-90880" + }, + { + "dataSource": "SNMI", + "id": "F-92560" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "79823003" + }, + { + "dataSource": "WHO", + "id": "0163" + } + ] + }, + { + "offset": 57, + "length": 9, + "text": "psychosis", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0033975" + }, + { + "dataSource": "AIR", + "id": "PSYCH" + }, + { + "dataSource": "AOD", + "id": "0000004324" + }, + { + "dataSource": "BI", + "id": "BI00688" + }, + { + "dataSource": "CCPSS", + "id": "1018204" + }, + { + "dataSource": "CHV", + "id": "0000010350" + }, + { + "dataSource": "COSTAR", + "id": "089" + }, + { + "dataSource": "CSP", + "id": "2484-8182" + }, + { + "dataSource": "CST", + "id": "PSYCHOSIS" + }, + { + "dataSource": "DXP", + "id": "U003257" + }, + { + "dataSource": "HPO", + "id": "HP:0000709" + }, + { + "dataSource": "ICD9CM", + "id": "298.9" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU070382" + }, + { + "dataSource": "ICPC2P", + "id": "P98004" + }, + { + "dataSource": "LCH_NW", + "id": "sh85108502" + }, + { + "dataSource": "LNC", + "id": "LA7534-6" + }, + { + "dataSource": "MDR", + "id": "10061920" + }, + { + "dataSource": "MEDCIN", + "id": "364298" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4180" + }, + { + "dataSource": "MSH", + "id": "D011618" + }, + { + "dataSource": "MTH", + "id": "089" + }, + { + "dataSource": "MTHICD9", + "id": "298.9" + }, + { + "dataSource": "NANDA-I", + "id": "03128" + }, + { + "dataSource": "NCI", + "id": "C78576" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E12954" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000450115" + }, + { + "dataSource": "NCI_NICHD", + "id": "C78576" + }, + { + "dataSource": "NOC", + "id": "061619" + }, + { + "dataSource": "OMIM", + "id": "MTHU002910" + }, + { + "dataSource": "PSY", + "id": "41910" + }, + { + "dataSource": "QMR", + "id": "Q0200208" + }, + { + "dataSource": "RCD", + "id": "X00S6" + }, + { + "dataSource": "SNM", + "id": "D-9200" + }, + { + "dataSource": "SNMI", + "id": "D9-72000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "69322001" + }, + { + "dataSource": "WHO", + "id": "0193" + } + ] + }, + { + "offset": 72, + "length": 13, + "text": "heart failure", + "category": "Diagnosis", + "confidenceScore": 0.99, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0018801" + }, + { + "dataSource": "AOD", + "id": "0000005308" + }, + { + "dataSource": "BI", + "id": "BI00019" + }, + { + "dataSource": "CCPSS", + "id": "0017571" + }, + { + "dataSource": "CCS", + "id": "7.2.11.2" + }, + { + "dataSource": "CCSR_10", + "id": "CIR019" + }, + { + "dataSource": "CHV", + "id": "0000005877" + }, + { + "dataSource": "COSTAR", + "id": "U000338" + }, + { + "dataSource": "CSP", + "id": "1393-3587" + }, + { + "dataSource": "CST", + "id": "HEART FAIL" + }, + { + "dataSource": "HPO", + "id": "HP:0001635" + }, + { + "dataSource": "ICD10", + "id": "I50.9" + }, + { + "dataSource": "ICD10AM", + "id": "I50.9" + }, + { + "dataSource": "ICD10CM", + "id": "I50.9" + }, + { + "dataSource": "ICD9CM", + "id": "428.9" + }, + { + "dataSource": "ICPC", + "id": "K77" + }, + { + "dataSource": "ICPC2EENG", + "id": "K77" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU027668" + }, + { + "dataSource": "ICPC2P", + "id": "K77011" + }, + { + "dataSource": "LCH", + "id": "U005616" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059745" + }, + { + "dataSource": "LNC", + "id": "LP269421-6" + }, + { + "dataSource": "MDR", + "id": "10007554" + }, + { + "dataSource": "MEDCIN", + "id": "95724" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "199" + }, + { + "dataSource": "MSH", + "id": "D006333" + }, + { + "dataSource": "MTHICD9", + "id": "428.9" + }, + { + "dataSource": "NCI", + "id": "C50577" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10124" + }, + { + "dataSource": "NCI_FDA", + "id": "2206" + }, + { + "dataSource": "NCI_NICHD", + "id": "C50577" + }, + { + "dataSource": "OMIM", + "id": "MTHU009472" + }, + { + "dataSource": "RCD", + "id": "G58.." + }, + { + "dataSource": "SNM", + "id": "D-7050" + }, + { + "dataSource": "SNMI", + "id": "D3-16000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84114007" + }, + { + "dataSource": "WHO", + "id": "0496" + } + ] + } + ] + } + ], + "errors": [], + "modelVersion": "2020-09-03" + } + } + } + ], + "Variables": { + "RandomSeed": "2027271043", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json index a9d4b20cca133..85694df484345 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json @@ -11,7 +11,7 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1e6c797479fbc74e8df55489273e7634-9301706db61bb245-00", + "traceparent": "00-0533742608055a4db0c18a6b0869458e-088ebd3f90844d42-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "36971fd1-1672-443d-984f-f929c4d88fea", - "Date": "Tue, 03 Nov 2020 19:54:35 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/c36bf280-4f41-4798-aca1-912c3df8dce9", + "apim-request-id": "e1577668-d536-4ddd-a4cb-3458d7a4144d", + "Date": "Tue, 03 Nov 2020 20:16:39 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e8efc64f-695f-4456-9f16-1b1f259bbd6f", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "261" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/c36bf280-4f41-4798-aca1-912c3df8dce9?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e8efc64f-695f-4456-9f16-1b1f259bbd6f?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5bea09f3-eaaa-4005-9a52-69a8b1141ffa", + "apim-request-id": "c1ded920-6eba-411e-b8b2-616351c54841", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:35 GMT", + "Date": "Tue, 03 Nov 2020 20:16:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "c36bf280-4f41-4798-aca1-912c3df8dce9", - "lastUpdateDateTime": "2020-11-03T19:54:35Z", - "createdDateTime": "2020-11-03T19:54:35Z", - "expirationDateTime": "2020-11-04T19:54:35Z", + "jobId": "e8efc64f-695f-4456-9f16-1b1f259bbd6f", + "lastUpdateDateTime": "2020-11-03T20:16:39Z", + "createdDateTime": "2020-11-03T20:16:39Z", + "expirationDateTime": "2020-11-04T20:16:39Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/c36bf280-4f41-4798-aca1-912c3df8dce9?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e8efc64f-695f-4456-9f16-1b1f259bbd6f?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9e3009a6-5e39-41c6-a098-08a5eb88da0a", + "apim-request-id": "d8dd3942-a332-4028-b541-b0ffdc5c6613", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:36 GMT", + "Date": "Tue, 03 Nov 2020 20:16:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "c36bf280-4f41-4798-aca1-912c3df8dce9", - "lastUpdateDateTime": "2020-11-03T19:54:35Z", - "createdDateTime": "2020-11-03T19:54:35Z", - "expirationDateTime": "2020-11-04T19:54:35Z", + "jobId": "e8efc64f-695f-4456-9f16-1b1f259bbd6f", + "lastUpdateDateTime": "2020-11-03T20:16:39Z", + "createdDateTime": "2020-11-03T20:16:39Z", + "expirationDateTime": "2020-11-04T20:16:39Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/c36bf280-4f41-4798-aca1-912c3df8dce9?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e8efc64f-695f-4456-9f16-1b1f259bbd6f?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -136,25 +136,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3acd8c91-fa5c-410d-ae53-d01d22e3007e", + "apim-request-id": "2eee357c-b68b-4680-a767-23d385ea53f3", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:37 GMT", + "Date": "Tue, 03 Nov 2020 20:16:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "c36bf280-4f41-4798-aca1-912c3df8dce9", - "lastUpdateDateTime": "2020-11-03T19:54:35Z", - "createdDateTime": "2020-11-03T19:54:35Z", - "expirationDateTime": "2020-11-04T19:54:35Z", + "jobId": "e8efc64f-695f-4456-9f16-1b1f259bbd6f", + "lastUpdateDateTime": "2020-11-03T20:16:39Z", + "createdDateTime": "2020-11-03T20:16:39Z", + "expirationDateTime": "2020-11-04T20:16:39Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/c36bf280-4f41-4798-aca1-912c3df8dce9?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e8efc64f-695f-4456-9f16-1b1f259bbd6f?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -172,25 +172,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "78311baf-1d2e-40a0-8dc7-3dbb90d96304", + "apim-request-id": "19841f9e-d9a2-4efb-878a-7154c562addc", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:38 GMT", + "Date": "Tue, 03 Nov 2020 20:16:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "c36bf280-4f41-4798-aca1-912c3df8dce9", - "lastUpdateDateTime": "2020-11-03T19:54:35Z", - "createdDateTime": "2020-11-03T19:54:35Z", - "expirationDateTime": "2020-11-04T19:54:35Z", + "jobId": "e8efc64f-695f-4456-9f16-1b1f259bbd6f", + "lastUpdateDateTime": "2020-11-03T20:16:39Z", + "createdDateTime": "2020-11-03T20:16:39Z", + "expirationDateTime": "2020-11-04T20:16:39Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/c36bf280-4f41-4798-aca1-912c3df8dce9?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e8efc64f-695f-4456-9f16-1b1f259bbd6f?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -208,19 +208,55 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3df77f47-4c4e-4be9-85db-f3c1bccd7e1c", + "apim-request-id": "e378fa2c-9a95-4a33-a9f2-e3a52c3f5e5c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:40 GMT", + "Date": "Tue, 03 Nov 2020 20:16:43 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": "10" }, "ResponseBody": { - "jobId": "c36bf280-4f41-4798-aca1-912c3df8dce9", - "lastUpdateDateTime": "2020-11-03T19:54:39Z", - "createdDateTime": "2020-11-03T19:54:35Z", - "expirationDateTime": "2020-11-04T19:54:35Z", + "jobId": "e8efc64f-695f-4456-9f16-1b1f259bbd6f", + "lastUpdateDateTime": "2020-11-03T20:16:39Z", + "createdDateTime": "2020-11-03T20:16:39Z", + "expirationDateTime": "2020-11-04T20:16:39Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e8efc64f-695f-4456-9f16-1b1f259bbd6f?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ed28194fc355bbcfd39b7def1d2cf9a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a2b70745-de73-4eab-baba-17efa481cd21", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:16:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" + }, + "ResponseBody": { + "jobId": "e8efc64f-695f-4456-9f16-1b1f259bbd6f", + "lastUpdateDateTime": "2020-11-03T20:16:44Z", + "createdDateTime": "2020-11-03T20:16:39Z", + "expirationDateTime": "2020-11-04T20:16:39Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json new file mode 100644 index 0000000000000..9db3b9e1e5484 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -0,0 +1,1236 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "223", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-173043deb521c1479635ef068e708916-12ab0e191df61a4e-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "da8d96a331a03c42a6c41c2d9f512b98", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Subject is taking 100mg of ibuprofen twice daily", + "language": "en" + }, + { + "id": "1", + "text": "Can cause rapid or irregular heartbeat, delirium, panic, psychosis, and heart failure.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "03de062a-ffa8-423c-aeb9-b1ac87c5e223", + "Date": "Tue, 03 Nov 2020 20:17:24 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/21f09aab-d4bf-473b-a565-58a7c973d22c", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "85" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/21f09aab-d4bf-473b-a565-58a7c973d22c?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a36dbbc9f92b427287ffda298bd01507", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0043553b-216e-4a6f-928d-9aa50d31c7d5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5" + }, + "ResponseBody": { + "jobId": "21f09aab-d4bf-473b-a565-58a7c973d22c", + "lastUpdateDateTime": "2020-11-03T20:17:24Z", + "createdDateTime": "2020-11-03T20:17:24Z", + "expirationDateTime": "2020-11-04T20:17:24Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/21f09aab-d4bf-473b-a565-58a7c973d22c?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "86c4abbaba50d8ace0d0fc3795e01d2c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a7574116-5c0c-41b8-bdbe-de4f36c92e65", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:25 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": "21f09aab-d4bf-473b-a565-58a7c973d22c", + "lastUpdateDateTime": "2020-11-03T20:17:24Z", + "createdDateTime": "2020-11-03T20:17:24Z", + "expirationDateTime": "2020-11-04T20:17:24Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/21f09aab-d4bf-473b-a565-58a7c973d22c?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "97afe1fd518fa965244a53a05719b0d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "741950f9-3940-414a-b99f-a413edf288b6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:26 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": "21f09aab-d4bf-473b-a565-58a7c973d22c", + "lastUpdateDateTime": "2020-11-03T20:17:24Z", + "createdDateTime": "2020-11-03T20:17:24Z", + "expirationDateTime": "2020-11-04T20:17:24Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/21f09aab-d4bf-473b-a565-58a7c973d22c?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f47314aea48d0f480e95c35afd3bada6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3e3a76f2-e83c-4e16-aab9-1e51b2dd132b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:27 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": "21f09aab-d4bf-473b-a565-58a7c973d22c", + "lastUpdateDateTime": "2020-11-03T20:17:24Z", + "createdDateTime": "2020-11-03T20:17:24Z", + "expirationDateTime": "2020-11-04T20:17:24Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/21f09aab-d4bf-473b-a565-58a7c973d22c?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a92baee17e216978451a6205660b80c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "75d8a926-a0f4-4de9-98b7-dda06f6eafe0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "jobId": "21f09aab-d4bf-473b-a565-58a7c973d22c", + "lastUpdateDateTime": "2020-11-03T20:17:24Z", + "createdDateTime": "2020-11-03T20:17:24Z", + "expirationDateTime": "2020-11-04T20:17:24Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/21f09aab-d4bf-473b-a565-58a7c973d22c?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8088261f296d589f999f88f98d0bace8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "72251d6b-4788-48b1-8fd9-ce4377031b39", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "jobId": "21f09aab-d4bf-473b-a565-58a7c973d22c", + "lastUpdateDateTime": "2020-11-03T20:17:29Z", + "createdDateTime": "2020-11-03T20:17:24Z", + "expirationDateTime": "2020-11-04T20:17:24Z", + "status": "succeeded", + "errors": [], + "results": { + "statistics": { + "documentsCount": 2, + "validDocumentsCount": 2, + "erroneousDocumentsCount": 0, + "transactionsCount": 2 + }, + "documents": [ + { + "id": "0", + "statistics": { + "charactersCount": 48, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 18, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 27, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 37, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0, + "isNegated": false + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/0", + "target": "#/results/documents/0/entities/1" + }, + { + "relationType": "FrequencyOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/2", + "target": "#/results/documents/0/entities/1" + } + ] + }, + { + "id": "1", + "statistics": { + "charactersCount": 86, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 10, + "length": 5, + "text": "rapid", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0456962" + }, + { + "dataSource": "AOD", + "id": "0000002744" + }, + { + "dataSource": "CHV", + "id": "0000034666" + }, + { + "dataSource": "LNC", + "id": "LA24868-4" + }, + { + "dataSource": "NCI", + "id": "C65069" + }, + { + "dataSource": "RCD", + "id": "X78xZ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "255358001" + } + ] + }, + { + "offset": 19, + "length": 19, + "text": "irregular heartbeat", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0003811" + }, + { + "dataSource": "AOD", + "id": "0000005346" + }, + { + "dataSource": "BI", + "id": "BI00057" + }, + { + "dataSource": "CCPSS", + "id": "1017785" + }, + { + "dataSource": "CCS", + "id": "7.2.9" + }, + { + "dataSource": "CCSR_10", + "id": "CIR017" + }, + { + "dataSource": "CHV", + "id": "0000001440" + }, + { + "dataSource": "COSTAR", + "id": "153" + }, + { + "dataSource": "CSP", + "id": "1393-3277" + }, + { + "dataSource": "CST", + "id": "ARRHYTHMIA" + }, + { + "dataSource": "HPO", + "id": "HP:0011675" + }, + { + "dataSource": "ICD10", + "id": "I49.9" + }, + { + "dataSource": "ICD10AM", + "id": "I49.9" + }, + { + "dataSource": "ICD10CM", + "id": "I49.9" + }, + { + "dataSource": "ICD9CM", + "id": "427.9" + }, + { + "dataSource": "ICPC", + "id": "K80" + }, + { + "dataSource": "ICPC2EENG", + "id": "K80" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU033639" + }, + { + "dataSource": "ICPC2P", + "id": "K80012" + }, + { + "dataSource": "LCH", + "id": "U000359" + }, + { + "dataSource": "LCH_NW", + "id": "sh85007430" + }, + { + "dataSource": "LNC", + "id": "LA15419-7" + }, + { + "dataSource": "MDR", + "id": "10003119" + }, + { + "dataSource": "MEDCIN", + "id": "35851" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "147" + }, + { + "dataSource": "MSH", + "id": "D001145" + }, + { + "dataSource": "MTH", + "id": "153" + }, + { + "dataSource": "MTHICD9", + "id": "427.9" + }, + { + "dataSource": "NANDA-I", + "id": "00126" + }, + { + "dataSource": "NCI", + "id": "C2881" + }, + { + "dataSource": "NCI_FDA", + "id": "1721" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2881" + }, + { + "dataSource": "NOC", + "id": "040520" + }, + { + "dataSource": "OMIM", + "id": "115000" + }, + { + "dataSource": "PSY", + "id": "03790" + }, + { + "dataSource": "RCD", + "id": "X77BB" + }, + { + "dataSource": "SNM", + "id": "F-73102" + }, + { + "dataSource": "SNMI", + "id": "D3-30010" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "698247007" + }, + { + "dataSource": "WHO", + "id": "0433" + } + ] + }, + { + "offset": 40, + "length": 8, + "text": "delirium", + "category": "Diagnosis", + "confidenceScore": 0.99, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0011206" + }, + { + "dataSource": "AOD", + "id": "0000004328" + }, + { + "dataSource": "CCPSS", + "id": "1017884" + }, + { + "dataSource": "CHV", + "id": "0000003670" + }, + { + "dataSource": "COSTAR", + "id": "U000178" + }, + { + "dataSource": "CSP", + "id": "5003-0016" + }, + { + "dataSource": "CST", + "id": "DELIRIUM" + }, + { + "dataSource": "DSM-5", + "id": "780.09" + }, + { + "dataSource": "DXP", + "id": "U000937" + }, + { + "dataSource": "HPO", + "id": "HP:0031258" + }, + { + "dataSource": "ICD10", + "id": "F05.9" + }, + { + "dataSource": "ICD10AM", + "id": "F05.9" + }, + { + "dataSource": "ICD10CM", + "id": "R41.0" + }, + { + "dataSource": "ICNP", + "id": "10022091" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU022150" + }, + { + "dataSource": "LCH", + "id": "U001289" + }, + { + "dataSource": "LCH_NW", + "id": "sh85036579" + }, + { + "dataSource": "LNC", + "id": "LP89856-6" + }, + { + "dataSource": "MDR", + "id": "10012218" + }, + { + "dataSource": "MEDCIN", + "id": "677" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5562" + }, + { + "dataSource": "MSH", + "id": "D003693" + }, + { + "dataSource": "NANDA-I", + "id": "02157" + }, + { + "dataSource": "NCI", + "id": "C2981" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E12898" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2981" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000450100" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2981" + }, + { + "dataSource": "NOC", + "id": "091213" + }, + { + "dataSource": "OMIM", + "id": "MTHU035152" + }, + { + "dataSource": "PDQ", + "id": "CDR0000042226" + }, + { + "dataSource": "PSY", + "id": "13360" + }, + { + "dataSource": "QMR", + "id": "Q0200089" + }, + { + "dataSource": "RCD", + "id": "XE1Xv" + }, + { + "dataSource": "SNM", + "id": "F-85720" + }, + { + "dataSource": "SNMI", + "id": "D9-20100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2776000" + }, + { + "dataSource": "WHO", + "id": "0099" + } + ] + }, + { + "offset": 50, + "length": 5, + "text": "panic", + "category": "Diagnosis", + "confidenceScore": 0.89, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0030318" + }, + { + "dataSource": "AOD", + "id": "0000023911" + }, + { + "dataSource": "CHV", + "id": "0000009234" + }, + { + "dataSource": "CST", + "id": "AGITATION" + }, + { + "dataSource": "ICD10CM", + "id": "F41.0" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU057222" + }, + { + "dataSource": "LCH", + "id": "U003458" + }, + { + "dataSource": "LCH_NW", + "id": "sh85097438" + }, + { + "dataSource": "MDR", + "id": "10033670" + }, + { + "dataSource": "MSH", + "id": "D010200" + }, + { + "dataSource": "MTH", + "id": "551" + }, + { + "dataSource": "MTHICD9", + "id": "300.01" + }, + { + "dataSource": "NCI", + "id": "C94438" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000454704" + }, + { + "dataSource": "NOC", + "id": "121346" + }, + { + "dataSource": "PSY", + "id": "36260" + }, + { + "dataSource": "RCD", + "id": "Xa3Vj" + }, + { + "dataSource": "SNM", + "id": "F-90880" + }, + { + "dataSource": "SNMI", + "id": "F-92560" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "79823003" + }, + { + "dataSource": "WHO", + "id": "0163" + } + ] + }, + { + "offset": 57, + "length": 9, + "text": "psychosis", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0033975" + }, + { + "dataSource": "AIR", + "id": "PSYCH" + }, + { + "dataSource": "AOD", + "id": "0000004324" + }, + { + "dataSource": "BI", + "id": "BI00688" + }, + { + "dataSource": "CCPSS", + "id": "1018204" + }, + { + "dataSource": "CHV", + "id": "0000010350" + }, + { + "dataSource": "COSTAR", + "id": "089" + }, + { + "dataSource": "CSP", + "id": "2484-8182" + }, + { + "dataSource": "CST", + "id": "PSYCHOSIS" + }, + { + "dataSource": "DXP", + "id": "U003257" + }, + { + "dataSource": "HPO", + "id": "HP:0000709" + }, + { + "dataSource": "ICD9CM", + "id": "298.9" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU070382" + }, + { + "dataSource": "ICPC2P", + "id": "P98004" + }, + { + "dataSource": "LCH_NW", + "id": "sh85108502" + }, + { + "dataSource": "LNC", + "id": "LA7534-6" + }, + { + "dataSource": "MDR", + "id": "10061920" + }, + { + "dataSource": "MEDCIN", + "id": "364298" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4180" + }, + { + "dataSource": "MSH", + "id": "D011618" + }, + { + "dataSource": "MTH", + "id": "089" + }, + { + "dataSource": "MTHICD9", + "id": "298.9" + }, + { + "dataSource": "NANDA-I", + "id": "03128" + }, + { + "dataSource": "NCI", + "id": "C78576" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E12954" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000450115" + }, + { + "dataSource": "NCI_NICHD", + "id": "C78576" + }, + { + "dataSource": "NOC", + "id": "061619" + }, + { + "dataSource": "OMIM", + "id": "MTHU002910" + }, + { + "dataSource": "PSY", + "id": "41910" + }, + { + "dataSource": "QMR", + "id": "Q0200208" + }, + { + "dataSource": "RCD", + "id": "X00S6" + }, + { + "dataSource": "SNM", + "id": "D-9200" + }, + { + "dataSource": "SNMI", + "id": "D9-72000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "69322001" + }, + { + "dataSource": "WHO", + "id": "0193" + } + ] + }, + { + "offset": 72, + "length": 13, + "text": "heart failure", + "category": "Diagnosis", + "confidenceScore": 0.99, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0018801" + }, + { + "dataSource": "AOD", + "id": "0000005308" + }, + { + "dataSource": "BI", + "id": "BI00019" + }, + { + "dataSource": "CCPSS", + "id": "0017571" + }, + { + "dataSource": "CCS", + "id": "7.2.11.2" + }, + { + "dataSource": "CCSR_10", + "id": "CIR019" + }, + { + "dataSource": "CHV", + "id": "0000005877" + }, + { + "dataSource": "COSTAR", + "id": "U000338" + }, + { + "dataSource": "CSP", + "id": "1393-3587" + }, + { + "dataSource": "CST", + "id": "HEART FAIL" + }, + { + "dataSource": "HPO", + "id": "HP:0001635" + }, + { + "dataSource": "ICD10", + "id": "I50.9" + }, + { + "dataSource": "ICD10AM", + "id": "I50.9" + }, + { + "dataSource": "ICD10CM", + "id": "I50.9" + }, + { + "dataSource": "ICD9CM", + "id": "428.9" + }, + { + "dataSource": "ICPC", + "id": "K77" + }, + { + "dataSource": "ICPC2EENG", + "id": "K77" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU027668" + }, + { + "dataSource": "ICPC2P", + "id": "K77011" + }, + { + "dataSource": "LCH", + "id": "U005616" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059745" + }, + { + "dataSource": "LNC", + "id": "LP269421-6" + }, + { + "dataSource": "MDR", + "id": "10007554" + }, + { + "dataSource": "MEDCIN", + "id": "95724" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "199" + }, + { + "dataSource": "MSH", + "id": "D006333" + }, + { + "dataSource": "MTHICD9", + "id": "428.9" + }, + { + "dataSource": "NCI", + "id": "C50577" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10124" + }, + { + "dataSource": "NCI_FDA", + "id": "2206" + }, + { + "dataSource": "NCI_NICHD", + "id": "C50577" + }, + { + "dataSource": "OMIM", + "id": "MTHU009472" + }, + { + "dataSource": "RCD", + "id": "G58.." + }, + { + "dataSource": "SNM", + "id": "D-7050" + }, + { + "dataSource": "SNMI", + "id": "D3-16000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84114007" + }, + { + "dataSource": "WHO", + "id": "0496" + } + ] + } + ] + } + ], + "errors": [], + "modelVersion": "2020-09-03" + } + } + } + ], + "Variables": { + "RandomSeed": "377463297", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json index 6576b721f938e..21a2e18d3166c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json @@ -11,7 +11,7 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-85dcb1379c656541886cc2f88bb1d049-1f31dfe4e9f71d44-00", + "traceparent": "00-71c2d9fb38812943af57866982b5b729-51c859dce1d3b64b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "9dd1d6ec-72cd-40f4-b56b-a66b21513f96", - "Date": "Tue, 03 Nov 2020 19:54:40 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85425913-6953-4309-8df7-c1ee9d4a6037", + "apim-request-id": "87091d36-b045-4781-9572-3127de0d9028", + "Date": "Tue, 03 Nov 2020 20:16:45 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/d59bd359-781e-4362-9d83-b59c4ee3e61d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "94" + "x-envoy-upstream-service-time": "99" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85425913-6953-4309-8df7-c1ee9d4a6037?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/d59bd359-781e-4362-9d83-b59c4ee3e61d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fec8af00-7469-4d1d-bdc7-16e960466395", + "apim-request-id": "662192e6-9937-460f-b052-5ca49ded23e4", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:40 GMT", + "Date": "Tue, 03 Nov 2020 20:16:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { - "jobId": "85425913-6953-4309-8df7-c1ee9d4a6037", - "lastUpdateDateTime": "2020-11-03T19:54:40Z", - "createdDateTime": "2020-11-03T19:54:40Z", - "expirationDateTime": "2020-11-04T19:54:40Z", + "jobId": "d59bd359-781e-4362-9d83-b59c4ee3e61d", + "lastUpdateDateTime": "2020-11-03T20:16:45Z", + "createdDateTime": "2020-11-03T20:16:45Z", + "expirationDateTime": "2020-11-04T20:16:45Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85425913-6953-4309-8df7-c1ee9d4a6037?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/d59bd359-781e-4362-9d83-b59c4ee3e61d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a3506cc3-3a69-463a-bb22-d92d7924b045", + "apim-request-id": "c63cf99c-1cf9-4d4f-81cc-bdb590de394a", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:41 GMT", + "Date": "Tue, 03 Nov 2020 20:16:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "85425913-6953-4309-8df7-c1ee9d4a6037", - "lastUpdateDateTime": "2020-11-03T19:54:40Z", - "createdDateTime": "2020-11-03T19:54:40Z", - "expirationDateTime": "2020-11-04T19:54:40Z", + "jobId": "d59bd359-781e-4362-9d83-b59c4ee3e61d", + "lastUpdateDateTime": "2020-11-03T20:16:45Z", + "createdDateTime": "2020-11-03T20:16:45Z", + "expirationDateTime": "2020-11-04T20:16:45Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85425913-6953-4309-8df7-c1ee9d4a6037?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/d59bd359-781e-4362-9d83-b59c4ee3e61d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -136,25 +136,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b626601a-66fc-4039-9d11-bbdea9db997b", + "apim-request-id": "5d3b6b53-a536-477b-8ed3-657d13f84c78", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:42 GMT", + "Date": "Tue, 03 Nov 2020 20:16:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "85425913-6953-4309-8df7-c1ee9d4a6037", - "lastUpdateDateTime": "2020-11-03T19:54:40Z", - "createdDateTime": "2020-11-03T19:54:40Z", - "expirationDateTime": "2020-11-04T19:54:40Z", + "jobId": "d59bd359-781e-4362-9d83-b59c4ee3e61d", + "lastUpdateDateTime": "2020-11-03T20:16:45Z", + "createdDateTime": "2020-11-03T20:16:45Z", + "expirationDateTime": "2020-11-04T20:16:45Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85425913-6953-4309-8df7-c1ee9d4a6037?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/d59bd359-781e-4362-9d83-b59c4ee3e61d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -172,25 +172,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4b5a8da3-fb8c-4e2a-b7ba-7bbf4dd9c8e3", + "apim-request-id": "480249b0-24d1-4679-9654-9ef156fcf704", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:43 GMT", + "Date": "Tue, 03 Nov 2020 20:16:48 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": "85425913-6953-4309-8df7-c1ee9d4a6037", - "lastUpdateDateTime": "2020-11-03T19:54:40Z", - "createdDateTime": "2020-11-03T19:54:40Z", - "expirationDateTime": "2020-11-04T19:54:40Z", + "jobId": "d59bd359-781e-4362-9d83-b59c4ee3e61d", + "lastUpdateDateTime": "2020-11-03T20:16:45Z", + "createdDateTime": "2020-11-03T20:16:45Z", + "expirationDateTime": "2020-11-04T20:16:45Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85425913-6953-4309-8df7-c1ee9d4a6037?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/d59bd359-781e-4362-9d83-b59c4ee3e61d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -208,55 +208,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e0b9f97c-3add-45de-9967-83381631cf3b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:44 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": "85425913-6953-4309-8df7-c1ee9d4a6037", - "lastUpdateDateTime": "2020-11-03T19:54:40Z", - "createdDateTime": "2020-11-03T19:54:40Z", - "expirationDateTime": "2020-11-04T19:54:40Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85425913-6953-4309-8df7-c1ee9d4a6037?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a97e27cc4a5bb1f5f37f4feb2184a817", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ffb68b4c-b9df-4182-86dc-0cc93f385ffd", + "apim-request-id": "e569323b-584a-4c7e-a83a-70be9994996f", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:45 GMT", + "Date": "Tue, 03 Nov 2020 20:16:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "52" + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { - "jobId": "85425913-6953-4309-8df7-c1ee9d4a6037", - "lastUpdateDateTime": "2020-11-03T19:54:44Z", - "createdDateTime": "2020-11-03T19:54:40Z", - "expirationDateTime": "2020-11-04T19:54:40Z", + "jobId": "d59bd359-781e-4362-9d83-b59c4ee3e61d", + "lastUpdateDateTime": "2020-11-03T20:16:49Z", + "createdDateTime": "2020-11-03T20:16:45Z", + "expirationDateTime": "2020-11-04T20:16:45Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json new file mode 100644 index 0000000000000..7c3728d013956 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json @@ -0,0 +1,1230 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "223", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-720f9024913c184aaff3dc6f569499cb-86d3dc24a843c148-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "17e898e3099143136b2e35c82964efd9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "Subject is taking 100mg of ibuprofen twice daily", + "language": "en" + }, + { + "id": "2", + "text": "Can cause rapid or irregular heartbeat, delirium, panic, psychosis, and heart failure.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "3dac64bd-8f96-4577-bc33-b87ecd5de52a", + "Date": "Tue, 03 Nov 2020 20:17:29 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85f36137-56ab-4f4b-a273-e402ba8557e1", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "96" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85f36137-56ab-4f4b-a273-e402ba8557e1?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7dd0fa2b947b788e4d51b90a9e064f06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "70b23e7b-8d0c-4085-bee6-25fcaa3f015b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:29 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": "85f36137-56ab-4f4b-a273-e402ba8557e1", + "lastUpdateDateTime": "2020-11-03T20:17:29Z", + "createdDateTime": "2020-11-03T20:17:29Z", + "expirationDateTime": "2020-11-04T20:17:29Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85f36137-56ab-4f4b-a273-e402ba8557e1?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ddd7cae644b1aa3bb79fb4ecc872f743", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6bac08f1-dc5b-45e2-89e1-36fa2eafade2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:30 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": "85f36137-56ab-4f4b-a273-e402ba8557e1", + "lastUpdateDateTime": "2020-11-03T20:17:29Z", + "createdDateTime": "2020-11-03T20:17:29Z", + "expirationDateTime": "2020-11-04T20:17:29Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85f36137-56ab-4f4b-a273-e402ba8557e1?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3c1db919135b4f3e0970ca3f4f09a565", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ca3a8620-207a-4cc2-8750-c3725a63789f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:31 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": "85f36137-56ab-4f4b-a273-e402ba8557e1", + "lastUpdateDateTime": "2020-11-03T20:17:29Z", + "createdDateTime": "2020-11-03T20:17:29Z", + "expirationDateTime": "2020-11-04T20:17:29Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85f36137-56ab-4f4b-a273-e402ba8557e1?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "5fe22edf128ce627be26c6dcdfa2b0da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2b6a2e77-daf3-46fd-bacf-245990bfbc86", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17: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": "85f36137-56ab-4f4b-a273-e402ba8557e1", + "lastUpdateDateTime": "2020-11-03T20:17:29Z", + "createdDateTime": "2020-11-03T20:17:29Z", + "expirationDateTime": "2020-11-04T20:17:29Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85f36137-56ab-4f4b-a273-e402ba8557e1?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e4f1765912e9d2ab8c88d3417afc5bae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e717a8fb-6ae3-4aaf-be2a-9243438305a0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17: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": "85f36137-56ab-4f4b-a273-e402ba8557e1", + "lastUpdateDateTime": "2020-11-03T20:17:29Z", + "createdDateTime": "2020-11-03T20:17:29Z", + "expirationDateTime": "2020-11-04T20:17:29Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85f36137-56ab-4f4b-a273-e402ba8557e1?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "990c4ffa988f06b791367e354d616f67", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "52313cb5-00e6-4afd-b026-07657856fa89", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" + }, + "ResponseBody": { + "jobId": "85f36137-56ab-4f4b-a273-e402ba8557e1", + "lastUpdateDateTime": "2020-11-03T20:17:34Z", + "createdDateTime": "2020-11-03T20:17:29Z", + "expirationDateTime": "2020-11-04T20:17:29Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "1", + "statistics": { + "charactersCount": 48, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 18, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 27, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 37, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0, + "isNegated": false + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/0", + "target": "#/results/documents/0/entities/1" + }, + { + "relationType": "FrequencyOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/2", + "target": "#/results/documents/0/entities/1" + } + ] + }, + { + "id": "2", + "statistics": { + "charactersCount": 86, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 10, + "length": 5, + "text": "rapid", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0456962" + }, + { + "dataSource": "AOD", + "id": "0000002744" + }, + { + "dataSource": "CHV", + "id": "0000034666" + }, + { + "dataSource": "LNC", + "id": "LA24868-4" + }, + { + "dataSource": "NCI", + "id": "C65069" + }, + { + "dataSource": "RCD", + "id": "X78xZ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "255358001" + } + ] + }, + { + "offset": 19, + "length": 19, + "text": "irregular heartbeat", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0003811" + }, + { + "dataSource": "AOD", + "id": "0000005346" + }, + { + "dataSource": "BI", + "id": "BI00057" + }, + { + "dataSource": "CCPSS", + "id": "1017785" + }, + { + "dataSource": "CCS", + "id": "7.2.9" + }, + { + "dataSource": "CCSR_10", + "id": "CIR017" + }, + { + "dataSource": "CHV", + "id": "0000001440" + }, + { + "dataSource": "COSTAR", + "id": "153" + }, + { + "dataSource": "CSP", + "id": "1393-3277" + }, + { + "dataSource": "CST", + "id": "ARRHYTHMIA" + }, + { + "dataSource": "HPO", + "id": "HP:0011675" + }, + { + "dataSource": "ICD10", + "id": "I49.9" + }, + { + "dataSource": "ICD10AM", + "id": "I49.9" + }, + { + "dataSource": "ICD10CM", + "id": "I49.9" + }, + { + "dataSource": "ICD9CM", + "id": "427.9" + }, + { + "dataSource": "ICPC", + "id": "K80" + }, + { + "dataSource": "ICPC2EENG", + "id": "K80" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU033639" + }, + { + "dataSource": "ICPC2P", + "id": "K80012" + }, + { + "dataSource": "LCH", + "id": "U000359" + }, + { + "dataSource": "LCH_NW", + "id": "sh85007430" + }, + { + "dataSource": "LNC", + "id": "LA15419-7" + }, + { + "dataSource": "MDR", + "id": "10003119" + }, + { + "dataSource": "MEDCIN", + "id": "35851" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "147" + }, + { + "dataSource": "MSH", + "id": "D001145" + }, + { + "dataSource": "MTH", + "id": "153" + }, + { + "dataSource": "MTHICD9", + "id": "427.9" + }, + { + "dataSource": "NANDA-I", + "id": "00126" + }, + { + "dataSource": "NCI", + "id": "C2881" + }, + { + "dataSource": "NCI_FDA", + "id": "1721" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2881" + }, + { + "dataSource": "NOC", + "id": "040520" + }, + { + "dataSource": "OMIM", + "id": "115000" + }, + { + "dataSource": "PSY", + "id": "03790" + }, + { + "dataSource": "RCD", + "id": "X77BB" + }, + { + "dataSource": "SNM", + "id": "F-73102" + }, + { + "dataSource": "SNMI", + "id": "D3-30010" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "698247007" + }, + { + "dataSource": "WHO", + "id": "0433" + } + ] + }, + { + "offset": 40, + "length": 8, + "text": "delirium", + "category": "Diagnosis", + "confidenceScore": 0.99, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0011206" + }, + { + "dataSource": "AOD", + "id": "0000004328" + }, + { + "dataSource": "CCPSS", + "id": "1017884" + }, + { + "dataSource": "CHV", + "id": "0000003670" + }, + { + "dataSource": "COSTAR", + "id": "U000178" + }, + { + "dataSource": "CSP", + "id": "5003-0016" + }, + { + "dataSource": "CST", + "id": "DELIRIUM" + }, + { + "dataSource": "DSM-5", + "id": "780.09" + }, + { + "dataSource": "DXP", + "id": "U000937" + }, + { + "dataSource": "HPO", + "id": "HP:0031258" + }, + { + "dataSource": "ICD10", + "id": "F05.9" + }, + { + "dataSource": "ICD10AM", + "id": "F05.9" + }, + { + "dataSource": "ICD10CM", + "id": "R41.0" + }, + { + "dataSource": "ICNP", + "id": "10022091" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU022150" + }, + { + "dataSource": "LCH", + "id": "U001289" + }, + { + "dataSource": "LCH_NW", + "id": "sh85036579" + }, + { + "dataSource": "LNC", + "id": "LP89856-6" + }, + { + "dataSource": "MDR", + "id": "10012218" + }, + { + "dataSource": "MEDCIN", + "id": "677" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5562" + }, + { + "dataSource": "MSH", + "id": "D003693" + }, + { + "dataSource": "NANDA-I", + "id": "02157" + }, + { + "dataSource": "NCI", + "id": "C2981" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E12898" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2981" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000450100" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2981" + }, + { + "dataSource": "NOC", + "id": "091213" + }, + { + "dataSource": "OMIM", + "id": "MTHU035152" + }, + { + "dataSource": "PDQ", + "id": "CDR0000042226" + }, + { + "dataSource": "PSY", + "id": "13360" + }, + { + "dataSource": "QMR", + "id": "Q0200089" + }, + { + "dataSource": "RCD", + "id": "XE1Xv" + }, + { + "dataSource": "SNM", + "id": "F-85720" + }, + { + "dataSource": "SNMI", + "id": "D9-20100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2776000" + }, + { + "dataSource": "WHO", + "id": "0099" + } + ] + }, + { + "offset": 50, + "length": 5, + "text": "panic", + "category": "Diagnosis", + "confidenceScore": 0.89, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0030318" + }, + { + "dataSource": "AOD", + "id": "0000023911" + }, + { + "dataSource": "CHV", + "id": "0000009234" + }, + { + "dataSource": "CST", + "id": "AGITATION" + }, + { + "dataSource": "ICD10CM", + "id": "F41.0" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU057222" + }, + { + "dataSource": "LCH", + "id": "U003458" + }, + { + "dataSource": "LCH_NW", + "id": "sh85097438" + }, + { + "dataSource": "MDR", + "id": "10033670" + }, + { + "dataSource": "MSH", + "id": "D010200" + }, + { + "dataSource": "MTH", + "id": "551" + }, + { + "dataSource": "MTHICD9", + "id": "300.01" + }, + { + "dataSource": "NCI", + "id": "C94438" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000454704" + }, + { + "dataSource": "NOC", + "id": "121346" + }, + { + "dataSource": "PSY", + "id": "36260" + }, + { + "dataSource": "RCD", + "id": "Xa3Vj" + }, + { + "dataSource": "SNM", + "id": "F-90880" + }, + { + "dataSource": "SNMI", + "id": "F-92560" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "79823003" + }, + { + "dataSource": "WHO", + "id": "0163" + } + ] + }, + { + "offset": 57, + "length": 9, + "text": "psychosis", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0033975" + }, + { + "dataSource": "AIR", + "id": "PSYCH" + }, + { + "dataSource": "AOD", + "id": "0000004324" + }, + { + "dataSource": "BI", + "id": "BI00688" + }, + { + "dataSource": "CCPSS", + "id": "1018204" + }, + { + "dataSource": "CHV", + "id": "0000010350" + }, + { + "dataSource": "COSTAR", + "id": "089" + }, + { + "dataSource": "CSP", + "id": "2484-8182" + }, + { + "dataSource": "CST", + "id": "PSYCHOSIS" + }, + { + "dataSource": "DXP", + "id": "U003257" + }, + { + "dataSource": "HPO", + "id": "HP:0000709" + }, + { + "dataSource": "ICD9CM", + "id": "298.9" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU070382" + }, + { + "dataSource": "ICPC2P", + "id": "P98004" + }, + { + "dataSource": "LCH_NW", + "id": "sh85108502" + }, + { + "dataSource": "LNC", + "id": "LA7534-6" + }, + { + "dataSource": "MDR", + "id": "10061920" + }, + { + "dataSource": "MEDCIN", + "id": "364298" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4180" + }, + { + "dataSource": "MSH", + "id": "D011618" + }, + { + "dataSource": "MTH", + "id": "089" + }, + { + "dataSource": "MTHICD9", + "id": "298.9" + }, + { + "dataSource": "NANDA-I", + "id": "03128" + }, + { + "dataSource": "NCI", + "id": "C78576" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E12954" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000450115" + }, + { + "dataSource": "NCI_NICHD", + "id": "C78576" + }, + { + "dataSource": "NOC", + "id": "061619" + }, + { + "dataSource": "OMIM", + "id": "MTHU002910" + }, + { + "dataSource": "PSY", + "id": "41910" + }, + { + "dataSource": "QMR", + "id": "Q0200208" + }, + { + "dataSource": "RCD", + "id": "X00S6" + }, + { + "dataSource": "SNM", + "id": "D-9200" + }, + { + "dataSource": "SNMI", + "id": "D9-72000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "69322001" + }, + { + "dataSource": "WHO", + "id": "0193" + } + ] + }, + { + "offset": 72, + "length": 13, + "text": "heart failure", + "category": "Diagnosis", + "confidenceScore": 0.99, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0018801" + }, + { + "dataSource": "AOD", + "id": "0000005308" + }, + { + "dataSource": "BI", + "id": "BI00019" + }, + { + "dataSource": "CCPSS", + "id": "0017571" + }, + { + "dataSource": "CCS", + "id": "7.2.11.2" + }, + { + "dataSource": "CCSR_10", + "id": "CIR019" + }, + { + "dataSource": "CHV", + "id": "0000005877" + }, + { + "dataSource": "COSTAR", + "id": "U000338" + }, + { + "dataSource": "CSP", + "id": "1393-3587" + }, + { + "dataSource": "CST", + "id": "HEART FAIL" + }, + { + "dataSource": "HPO", + "id": "HP:0001635" + }, + { + "dataSource": "ICD10", + "id": "I50.9" + }, + { + "dataSource": "ICD10AM", + "id": "I50.9" + }, + { + "dataSource": "ICD10CM", + "id": "I50.9" + }, + { + "dataSource": "ICD9CM", + "id": "428.9" + }, + { + "dataSource": "ICPC", + "id": "K77" + }, + { + "dataSource": "ICPC2EENG", + "id": "K77" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU027668" + }, + { + "dataSource": "ICPC2P", + "id": "K77011" + }, + { + "dataSource": "LCH", + "id": "U005616" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059745" + }, + { + "dataSource": "LNC", + "id": "LP269421-6" + }, + { + "dataSource": "MDR", + "id": "10007554" + }, + { + "dataSource": "MEDCIN", + "id": "95724" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "199" + }, + { + "dataSource": "MSH", + "id": "D006333" + }, + { + "dataSource": "MTHICD9", + "id": "428.9" + }, + { + "dataSource": "NCI", + "id": "C50577" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10124" + }, + { + "dataSource": "NCI_FDA", + "id": "2206" + }, + { + "dataSource": "NCI_NICHD", + "id": "C50577" + }, + { + "dataSource": "OMIM", + "id": "MTHU009472" + }, + { + "dataSource": "RCD", + "id": "G58.." + }, + { + "dataSource": "SNM", + "id": "D-7050" + }, + { + "dataSource": "SNMI", + "id": "D3-16000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84114007" + }, + { + "dataSource": "WHO", + "id": "0496" + } + ] + } + ] + } + ], + "errors": [], + "modelVersion": "2020-09-03" + } + } + } + ], + "Variables": { + "RandomSeed": "1051051872", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json index db53c432c57f1..f2a982708486c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json @@ -11,7 +11,7 @@ "Content-Length": "260", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-56aa3b409dbedc498078e17804e6210b-9272ba99740ca649-00", + "traceparent": "00-c9c14f735f069140b9fe63d4e22d4c63-ed0a2f5a5537a440-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,18 +40,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "bdda57b3-2ef4-410f-93d9-2b89555a030b", - "Date": "Tue, 03 Nov 2020 19:54:45 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b462f989-2c6e-4e8c-b469-b6ea97d27e8c", + "apim-request-id": "08e682b3-cbcf-460f-b206-4e18942c508e", + "Date": "Tue, 03 Nov 2020 20:16:49 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5e2fcad4-1920-45dd-b829-601d77c78e71", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "94" + "x-envoy-upstream-service-time": "102" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b462f989-2c6e-4e8c-b469-b6ea97d27e8c?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5e2fcad4-1920-45dd-b829-601d77c78e71?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -69,25 +69,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cb4ac7e4-9a0b-426a-823f-e816516845ef", + "apim-request-id": "3715ecd6-2044-4d73-870b-1a42ddeef52a", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:45 GMT", + "Date": "Tue, 03 Nov 2020 20:16:49 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": "12" }, "ResponseBody": { - "jobId": "b462f989-2c6e-4e8c-b469-b6ea97d27e8c", - "lastUpdateDateTime": "2020-11-03T19:54:45Z", - "createdDateTime": "2020-11-03T19:54:45Z", - "expirationDateTime": "2020-11-04T19:54:45Z", + "jobId": "5e2fcad4-1920-45dd-b829-601d77c78e71", + "lastUpdateDateTime": "2020-11-03T20:16:49Z", + "createdDateTime": "2020-11-03T20:16:49Z", + "expirationDateTime": "2020-11-04T20:16:49Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b462f989-2c6e-4e8c-b469-b6ea97d27e8c?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5e2fcad4-1920-45dd-b829-601d77c78e71?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -105,25 +105,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f0d3a84d-b3f1-43de-be5f-b9407a5d398f", + "apim-request-id": "58ccac35-0d1b-449d-bbe9-fc2f0d738043", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:46 GMT", + "Date": "Tue, 03 Nov 2020 20:16:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "b462f989-2c6e-4e8c-b469-b6ea97d27e8c", - "lastUpdateDateTime": "2020-11-03T19:54:45Z", - "createdDateTime": "2020-11-03T19:54:45Z", - "expirationDateTime": "2020-11-04T19:54:45Z", + "jobId": "5e2fcad4-1920-45dd-b829-601d77c78e71", + "lastUpdateDateTime": "2020-11-03T20:16:49Z", + "createdDateTime": "2020-11-03T20:16:49Z", + "expirationDateTime": "2020-11-04T20:16:49Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b462f989-2c6e-4e8c-b469-b6ea97d27e8c?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5e2fcad4-1920-45dd-b829-601d77c78e71?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -141,25 +141,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "06478087-956b-474a-8c7c-cb639b44d293", + "apim-request-id": "f9770069-8e6e-4883-866e-8ed36cf5cd08", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:47 GMT", + "Date": "Tue, 03 Nov 2020 20:16:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "b462f989-2c6e-4e8c-b469-b6ea97d27e8c", - "lastUpdateDateTime": "2020-11-03T19:54:45Z", - "createdDateTime": "2020-11-03T19:54:45Z", - "expirationDateTime": "2020-11-04T19:54:45Z", + "jobId": "5e2fcad4-1920-45dd-b829-601d77c78e71", + "lastUpdateDateTime": "2020-11-03T20:16:49Z", + "createdDateTime": "2020-11-03T20:16:49Z", + "expirationDateTime": "2020-11-04T20:16:49Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b462f989-2c6e-4e8c-b469-b6ea97d27e8c?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5e2fcad4-1920-45dd-b829-601d77c78e71?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -177,25 +177,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4ff8fd6e-97d9-4eb9-8ad8-62d54d9d0d5b", + "apim-request-id": "1e94c173-a8e8-4d72-a058-2d05b039018b", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:48 GMT", + "Date": "Tue, 03 Nov 2020 20:16:52 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": "b462f989-2c6e-4e8c-b469-b6ea97d27e8c", - "lastUpdateDateTime": "2020-11-03T19:54:45Z", - "createdDateTime": "2020-11-03T19:54:45Z", - "expirationDateTime": "2020-11-04T19:54:45Z", + "jobId": "5e2fcad4-1920-45dd-b829-601d77c78e71", + "lastUpdateDateTime": "2020-11-03T20:16:49Z", + "createdDateTime": "2020-11-03T20:16:49Z", + "expirationDateTime": "2020-11-04T20:16:49Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b462f989-2c6e-4e8c-b469-b6ea97d27e8c?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5e2fcad4-1920-45dd-b829-601d77c78e71?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -213,25 +213,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c2db98e8-9423-4d4b-b7fb-006a87d79970", + "apim-request-id": "182ed438-5196-4708-8af6-a0f50afbe17e", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:49 GMT", + "Date": "Tue, 03 Nov 2020 20:16:53 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": "b462f989-2c6e-4e8c-b469-b6ea97d27e8c", - "lastUpdateDateTime": "2020-11-03T19:54:49Z", - "createdDateTime": "2020-11-03T19:54:45Z", - "expirationDateTime": "2020-11-04T19:54:45Z", - "status": "running", + "jobId": "5e2fcad4-1920-45dd-b829-601d77c78e71", + "lastUpdateDateTime": "2020-11-03T20:16:49Z", + "createdDateTime": "2020-11-03T20:16:49Z", + "expirationDateTime": "2020-11-04T20:16:49Z", + "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b462f989-2c6e-4e8c-b469-b6ea97d27e8c?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5e2fcad4-1920-45dd-b829-601d77c78e71?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -249,19 +249,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9e0013ca-ebff-40fc-a900-b6584f4eeef0", + "apim-request-id": "f046152a-4463-4b1d-8cb2-a871e498905c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:50 GMT", + "Date": "Tue, 03 Nov 2020 20:16:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { - "jobId": "b462f989-2c6e-4e8c-b469-b6ea97d27e8c", - "lastUpdateDateTime": "2020-11-03T19:54:49Z", - "createdDateTime": "2020-11-03T19:54:45Z", - "expirationDateTime": "2020-11-04T19:54:45Z", + "jobId": "5e2fcad4-1920-45dd-b829-601d77c78e71", + "lastUpdateDateTime": "2020-11-03T20:16:54Z", + "createdDateTime": "2020-11-03T20:16:49Z", + "expirationDateTime": "2020-11-04T20:16:49Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json new file mode 100644 index 0000000000000..8fd98ac8c1c80 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json @@ -0,0 +1,1247 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "260", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-74ab9d9c3e561c45bf351bc0bb84f739-7feda4e6e6a5a742-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4352d8dd6e2ff74a3743e20989f20949", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Subject is taking 100mg of ibuprofen twice daily", + "language": "en" + }, + { + "id": "1", + "text": "Can cause rapid or irregular heartbeat, delirium, panic, psychosis, and heart failure.", + "language": "en" + }, + { + "id": "2", + "text": "", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "813c3288-b87f-491e-8587-39512af66aa5", + "Date": "Tue, 03 Nov 2020 20:17:35 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/7b193690-25cb-48df-a4f7-c3df7a191e78", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "107" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/7b193690-25cb-48df-a4f7-c3df7a191e78?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b850713105701863d1b6a799a800b67b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0b237780-a98c-45c4-8965-c047352d349a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:35 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": "7b193690-25cb-48df-a4f7-c3df7a191e78", + "lastUpdateDateTime": "2020-11-03T20:17:35Z", + "createdDateTime": "2020-11-03T20:17:35Z", + "expirationDateTime": "2020-11-04T20:17:35Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/7b193690-25cb-48df-a4f7-c3df7a191e78?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7b6997a8eb08a1c0115e8728d43fe710", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c3dec0e0-0cc3-4f75-a3d5-dd9b74ef821e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17: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": "7b193690-25cb-48df-a4f7-c3df7a191e78", + "lastUpdateDateTime": "2020-11-03T20:17:35Z", + "createdDateTime": "2020-11-03T20:17:35Z", + "expirationDateTime": "2020-11-04T20:17:35Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/7b193690-25cb-48df-a4f7-c3df7a191e78?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c4c517d3dcd1d7de74397279c7b14e37", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8ec5ae51-149b-4f8c-b087-4eff79cfd829", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:37 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": "7b193690-25cb-48df-a4f7-c3df7a191e78", + "lastUpdateDateTime": "2020-11-03T20:17:35Z", + "createdDateTime": "2020-11-03T20:17:35Z", + "expirationDateTime": "2020-11-04T20:17:35Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/7b193690-25cb-48df-a4f7-c3df7a191e78?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f260678d8d894640b1aea7117e3b4491", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dfaf82c4-dc28-411b-a422-80b75b050b09", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:38 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": "7b193690-25cb-48df-a4f7-c3df7a191e78", + "lastUpdateDateTime": "2020-11-03T20:17:35Z", + "createdDateTime": "2020-11-03T20:17:35Z", + "expirationDateTime": "2020-11-04T20:17:35Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/7b193690-25cb-48df-a4f7-c3df7a191e78?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "90c597cef13bcca9b99106ce7947da60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "90e4f232-d1b0-4ddd-9ed6-bb67b79f30c3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:39 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": "7b193690-25cb-48df-a4f7-c3df7a191e78", + "lastUpdateDateTime": "2020-11-03T20:17:39Z", + "createdDateTime": "2020-11-03T20:17:35Z", + "expirationDateTime": "2020-11-04T20:17:35Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/7b193690-25cb-48df-a4f7-c3df7a191e78?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "6d9a5010f4de4587d67e132334cc5939", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5bbb665a-8f4c-41fd-ae61-cbd9a28f2297", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "48" + }, + "ResponseBody": { + "jobId": "7b193690-25cb-48df-a4f7-c3df7a191e78", + "lastUpdateDateTime": "2020-11-03T20:17:39Z", + "createdDateTime": "2020-11-03T20:17:35Z", + "expirationDateTime": "2020-11-04T20:17:35Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "statistics": { + "charactersCount": 48, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 18, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 27, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 37, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0, + "isNegated": false + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/0", + "target": "#/results/documents/0/entities/1" + }, + { + "relationType": "FrequencyOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/2", + "target": "#/results/documents/0/entities/1" + } + ] + }, + { + "id": "1", + "statistics": { + "charactersCount": 86, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 10, + "length": 5, + "text": "rapid", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0456962" + }, + { + "dataSource": "AOD", + "id": "0000002744" + }, + { + "dataSource": "CHV", + "id": "0000034666" + }, + { + "dataSource": "LNC", + "id": "LA24868-4" + }, + { + "dataSource": "NCI", + "id": "C65069" + }, + { + "dataSource": "RCD", + "id": "X78xZ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "255358001" + } + ] + }, + { + "offset": 19, + "length": 19, + "text": "irregular heartbeat", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0003811" + }, + { + "dataSource": "AOD", + "id": "0000005346" + }, + { + "dataSource": "BI", + "id": "BI00057" + }, + { + "dataSource": "CCPSS", + "id": "1017785" + }, + { + "dataSource": "CCS", + "id": "7.2.9" + }, + { + "dataSource": "CCSR_10", + "id": "CIR017" + }, + { + "dataSource": "CHV", + "id": "0000001440" + }, + { + "dataSource": "COSTAR", + "id": "153" + }, + { + "dataSource": "CSP", + "id": "1393-3277" + }, + { + "dataSource": "CST", + "id": "ARRHYTHMIA" + }, + { + "dataSource": "HPO", + "id": "HP:0011675" + }, + { + "dataSource": "ICD10", + "id": "I49.9" + }, + { + "dataSource": "ICD10AM", + "id": "I49.9" + }, + { + "dataSource": "ICD10CM", + "id": "I49.9" + }, + { + "dataSource": "ICD9CM", + "id": "427.9" + }, + { + "dataSource": "ICPC", + "id": "K80" + }, + { + "dataSource": "ICPC2EENG", + "id": "K80" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU033639" + }, + { + "dataSource": "ICPC2P", + "id": "K80012" + }, + { + "dataSource": "LCH", + "id": "U000359" + }, + { + "dataSource": "LCH_NW", + "id": "sh85007430" + }, + { + "dataSource": "LNC", + "id": "LA15419-7" + }, + { + "dataSource": "MDR", + "id": "10003119" + }, + { + "dataSource": "MEDCIN", + "id": "35851" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "147" + }, + { + "dataSource": "MSH", + "id": "D001145" + }, + { + "dataSource": "MTH", + "id": "153" + }, + { + "dataSource": "MTHICD9", + "id": "427.9" + }, + { + "dataSource": "NANDA-I", + "id": "00126" + }, + { + "dataSource": "NCI", + "id": "C2881" + }, + { + "dataSource": "NCI_FDA", + "id": "1721" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2881" + }, + { + "dataSource": "NOC", + "id": "040520" + }, + { + "dataSource": "OMIM", + "id": "115000" + }, + { + "dataSource": "PSY", + "id": "03790" + }, + { + "dataSource": "RCD", + "id": "X77BB" + }, + { + "dataSource": "SNM", + "id": "F-73102" + }, + { + "dataSource": "SNMI", + "id": "D3-30010" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "698247007" + }, + { + "dataSource": "WHO", + "id": "0433" + } + ] + }, + { + "offset": 40, + "length": 8, + "text": "delirium", + "category": "Diagnosis", + "confidenceScore": 0.99, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0011206" + }, + { + "dataSource": "AOD", + "id": "0000004328" + }, + { + "dataSource": "CCPSS", + "id": "1017884" + }, + { + "dataSource": "CHV", + "id": "0000003670" + }, + { + "dataSource": "COSTAR", + "id": "U000178" + }, + { + "dataSource": "CSP", + "id": "5003-0016" + }, + { + "dataSource": "CST", + "id": "DELIRIUM" + }, + { + "dataSource": "DSM-5", + "id": "780.09" + }, + { + "dataSource": "DXP", + "id": "U000937" + }, + { + "dataSource": "HPO", + "id": "HP:0031258" + }, + { + "dataSource": "ICD10", + "id": "F05.9" + }, + { + "dataSource": "ICD10AM", + "id": "F05.9" + }, + { + "dataSource": "ICD10CM", + "id": "R41.0" + }, + { + "dataSource": "ICNP", + "id": "10022091" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU022150" + }, + { + "dataSource": "LCH", + "id": "U001289" + }, + { + "dataSource": "LCH_NW", + "id": "sh85036579" + }, + { + "dataSource": "LNC", + "id": "LP89856-6" + }, + { + "dataSource": "MDR", + "id": "10012218" + }, + { + "dataSource": "MEDCIN", + "id": "677" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5562" + }, + { + "dataSource": "MSH", + "id": "D003693" + }, + { + "dataSource": "NANDA-I", + "id": "02157" + }, + { + "dataSource": "NCI", + "id": "C2981" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E12898" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2981" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000450100" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2981" + }, + { + "dataSource": "NOC", + "id": "091213" + }, + { + "dataSource": "OMIM", + "id": "MTHU035152" + }, + { + "dataSource": "PDQ", + "id": "CDR0000042226" + }, + { + "dataSource": "PSY", + "id": "13360" + }, + { + "dataSource": "QMR", + "id": "Q0200089" + }, + { + "dataSource": "RCD", + "id": "XE1Xv" + }, + { + "dataSource": "SNM", + "id": "F-85720" + }, + { + "dataSource": "SNMI", + "id": "D9-20100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2776000" + }, + { + "dataSource": "WHO", + "id": "0099" + } + ] + }, + { + "offset": 50, + "length": 5, + "text": "panic", + "category": "Diagnosis", + "confidenceScore": 0.89, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0030318" + }, + { + "dataSource": "AOD", + "id": "0000023911" + }, + { + "dataSource": "CHV", + "id": "0000009234" + }, + { + "dataSource": "CST", + "id": "AGITATION" + }, + { + "dataSource": "ICD10CM", + "id": "F41.0" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU057222" + }, + { + "dataSource": "LCH", + "id": "U003458" + }, + { + "dataSource": "LCH_NW", + "id": "sh85097438" + }, + { + "dataSource": "MDR", + "id": "10033670" + }, + { + "dataSource": "MSH", + "id": "D010200" + }, + { + "dataSource": "MTH", + "id": "551" + }, + { + "dataSource": "MTHICD9", + "id": "300.01" + }, + { + "dataSource": "NCI", + "id": "C94438" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000454704" + }, + { + "dataSource": "NOC", + "id": "121346" + }, + { + "dataSource": "PSY", + "id": "36260" + }, + { + "dataSource": "RCD", + "id": "Xa3Vj" + }, + { + "dataSource": "SNM", + "id": "F-90880" + }, + { + "dataSource": "SNMI", + "id": "F-92560" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "79823003" + }, + { + "dataSource": "WHO", + "id": "0163" + } + ] + }, + { + "offset": 57, + "length": 9, + "text": "psychosis", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0033975" + }, + { + "dataSource": "AIR", + "id": "PSYCH" + }, + { + "dataSource": "AOD", + "id": "0000004324" + }, + { + "dataSource": "BI", + "id": "BI00688" + }, + { + "dataSource": "CCPSS", + "id": "1018204" + }, + { + "dataSource": "CHV", + "id": "0000010350" + }, + { + "dataSource": "COSTAR", + "id": "089" + }, + { + "dataSource": "CSP", + "id": "2484-8182" + }, + { + "dataSource": "CST", + "id": "PSYCHOSIS" + }, + { + "dataSource": "DXP", + "id": "U003257" + }, + { + "dataSource": "HPO", + "id": "HP:0000709" + }, + { + "dataSource": "ICD9CM", + "id": "298.9" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU070382" + }, + { + "dataSource": "ICPC2P", + "id": "P98004" + }, + { + "dataSource": "LCH_NW", + "id": "sh85108502" + }, + { + "dataSource": "LNC", + "id": "LA7534-6" + }, + { + "dataSource": "MDR", + "id": "10061920" + }, + { + "dataSource": "MEDCIN", + "id": "364298" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4180" + }, + { + "dataSource": "MSH", + "id": "D011618" + }, + { + "dataSource": "MTH", + "id": "089" + }, + { + "dataSource": "MTHICD9", + "id": "298.9" + }, + { + "dataSource": "NANDA-I", + "id": "03128" + }, + { + "dataSource": "NCI", + "id": "C78576" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E12954" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000450115" + }, + { + "dataSource": "NCI_NICHD", + "id": "C78576" + }, + { + "dataSource": "NOC", + "id": "061619" + }, + { + "dataSource": "OMIM", + "id": "MTHU002910" + }, + { + "dataSource": "PSY", + "id": "41910" + }, + { + "dataSource": "QMR", + "id": "Q0200208" + }, + { + "dataSource": "RCD", + "id": "X00S6" + }, + { + "dataSource": "SNM", + "id": "D-9200" + }, + { + "dataSource": "SNMI", + "id": "D9-72000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "69322001" + }, + { + "dataSource": "WHO", + "id": "0193" + } + ] + }, + { + "offset": 72, + "length": 13, + "text": "heart failure", + "category": "Diagnosis", + "confidenceScore": 0.99, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0018801" + }, + { + "dataSource": "AOD", + "id": "0000005308" + }, + { + "dataSource": "BI", + "id": "BI00019" + }, + { + "dataSource": "CCPSS", + "id": "0017571" + }, + { + "dataSource": "CCS", + "id": "7.2.11.2" + }, + { + "dataSource": "CCSR_10", + "id": "CIR019" + }, + { + "dataSource": "CHV", + "id": "0000005877" + }, + { + "dataSource": "COSTAR", + "id": "U000338" + }, + { + "dataSource": "CSP", + "id": "1393-3587" + }, + { + "dataSource": "CST", + "id": "HEART FAIL" + }, + { + "dataSource": "HPO", + "id": "HP:0001635" + }, + { + "dataSource": "ICD10", + "id": "I50.9" + }, + { + "dataSource": "ICD10AM", + "id": "I50.9" + }, + { + "dataSource": "ICD10CM", + "id": "I50.9" + }, + { + "dataSource": "ICD9CM", + "id": "428.9" + }, + { + "dataSource": "ICPC", + "id": "K77" + }, + { + "dataSource": "ICPC2EENG", + "id": "K77" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU027668" + }, + { + "dataSource": "ICPC2P", + "id": "K77011" + }, + { + "dataSource": "LCH", + "id": "U005616" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059745" + }, + { + "dataSource": "LNC", + "id": "LP269421-6" + }, + { + "dataSource": "MDR", + "id": "10007554" + }, + { + "dataSource": "MEDCIN", + "id": "95724" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "199" + }, + { + "dataSource": "MSH", + "id": "D006333" + }, + { + "dataSource": "MTHICD9", + "id": "428.9" + }, + { + "dataSource": "NCI", + "id": "C50577" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10124" + }, + { + "dataSource": "NCI_FDA", + "id": "2206" + }, + { + "dataSource": "NCI_NICHD", + "id": "C50577" + }, + { + "dataSource": "OMIM", + "id": "MTHU009472" + }, + { + "dataSource": "RCD", + "id": "G58.." + }, + { + "dataSource": "SNM", + "id": "D-7050" + }, + { + "dataSource": "SNMI", + "id": "D3-16000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84114007" + }, + { + "dataSource": "WHO", + "id": "0496" + } + ] + } + ] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid document in request.", + "innererror": { + "code": "InvalidDocument", + "message": "Document text is empty." + } + } + } + ], + "modelVersion": "2020-09-03" + } + } + } + ], + "Variables": { + "RandomSeed": "729062063", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json index 9cdd339a7b9f2..7c07698d07c0e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json @@ -11,7 +11,7 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fc4801ccab1894459a9dca0239b50138-276d07f52711e74f-00", + "traceparent": "00-719c12ee76a6644ead5a77dbb4f601a3-59dcb13da8f82c48-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "570ce0e4-6df9-4955-8e63-740df958a639", - "Date": "Tue, 03 Nov 2020 19:54:50 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/850316e7-a727-4c2e-a349-96de788e1d9b", + "apim-request-id": "7fbd40b9-4dea-41b5-ab31-4b4259823d77", + "Date": "Tue, 03 Nov 2020 20:16:54 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2667ec97-5371-45de-9d8b-c98da3244a74", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "104" + "x-envoy-upstream-service-time": "76" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/850316e7-a727-4c2e-a349-96de788e1d9b?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2667ec97-5371-45de-9d8b-c98da3244a74?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0052a789-6503-47d7-bfa3-9f630932487f", + "apim-request-id": "76e43535-f8ac-4b68-8560-08159689fbc0", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:50 GMT", + "Date": "Tue, 03 Nov 2020 20:16: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": "6" }, "ResponseBody": { - "jobId": "850316e7-a727-4c2e-a349-96de788e1d9b", - "lastUpdateDateTime": "2020-11-03T19:54:50Z", - "createdDateTime": "2020-11-03T19:54:50Z", - "expirationDateTime": "2020-11-04T19:54:50Z", + "jobId": "2667ec97-5371-45de-9d8b-c98da3244a74", + "lastUpdateDateTime": "2020-11-03T20:16:54Z", + "createdDateTime": "2020-11-03T20:16:54Z", + "expirationDateTime": "2020-11-04T20:16:54Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/850316e7-a727-4c2e-a349-96de788e1d9b?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2667ec97-5371-45de-9d8b-c98da3244a74?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "85ddfc7d-b4ad-4230-9430-30b3edbc8710", + "apim-request-id": "b007d272-9cbe-472b-8886-c5e726e7064a", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:51 GMT", + "Date": "Tue, 03 Nov 2020 20:16:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "850316e7-a727-4c2e-a349-96de788e1d9b", - "lastUpdateDateTime": "2020-11-03T19:54:50Z", - "createdDateTime": "2020-11-03T19:54:50Z", - "expirationDateTime": "2020-11-04T19:54:50Z", + "jobId": "2667ec97-5371-45de-9d8b-c98da3244a74", + "lastUpdateDateTime": "2020-11-03T20:16:54Z", + "createdDateTime": "2020-11-03T20:16:54Z", + "expirationDateTime": "2020-11-04T20:16:54Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/850316e7-a727-4c2e-a349-96de788e1d9b?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2667ec97-5371-45de-9d8b-c98da3244a74?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -136,25 +136,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d39d74aa-f965-4ea8-8595-5e14d87d6f18", + "apim-request-id": "05d4b305-641f-4b8c-9434-3e28c2fa6ca2", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:52 GMT", + "Date": "Tue, 03 Nov 2020 20:16:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "850316e7-a727-4c2e-a349-96de788e1d9b", - "lastUpdateDateTime": "2020-11-03T19:54:50Z", - "createdDateTime": "2020-11-03T19:54:50Z", - "expirationDateTime": "2020-11-04T19:54:50Z", + "jobId": "2667ec97-5371-45de-9d8b-c98da3244a74", + "lastUpdateDateTime": "2020-11-03T20:16:54Z", + "createdDateTime": "2020-11-03T20:16:54Z", + "expirationDateTime": "2020-11-04T20:16:54Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/850316e7-a727-4c2e-a349-96de788e1d9b?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2667ec97-5371-45de-9d8b-c98da3244a74?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -172,25 +172,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cc18c722-43f6-4835-bc2b-62a1c8828cc3", + "apim-request-id": "9fd361c5-21d2-4624-be46-d26700f5e1c8", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:53 GMT", + "Date": "Tue, 03 Nov 2020 20:16:57 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": "850316e7-a727-4c2e-a349-96de788e1d9b", - "lastUpdateDateTime": "2020-11-03T19:54:50Z", - "createdDateTime": "2020-11-03T19:54:50Z", - "expirationDateTime": "2020-11-04T19:54:50Z", + "jobId": "2667ec97-5371-45de-9d8b-c98da3244a74", + "lastUpdateDateTime": "2020-11-03T20:16:54Z", + "createdDateTime": "2020-11-03T20:16:54Z", + "expirationDateTime": "2020-11-04T20:16:54Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/850316e7-a727-4c2e-a349-96de788e1d9b?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2667ec97-5371-45de-9d8b-c98da3244a74?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -208,19 +208,55 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a3d0f374-fe64-43f7-b3a7-20287abc9a94", + "apim-request-id": "8bd0916d-4232-40b4-a403-2b968b91ad5a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:16:58 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": "2667ec97-5371-45de-9d8b-c98da3244a74", + "lastUpdateDateTime": "2020-11-03T20:16:54Z", + "createdDateTime": "2020-11-03T20:16:54Z", + "expirationDateTime": "2020-11-04T20:16:54Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2667ec97-5371-45de-9d8b-c98da3244a74?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "383ba127abb16cecc99180bdd90184b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ad67c49c-71dc-42db-8dce-bbe0c6956421", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:54 GMT", + "Date": "Tue, 03 Nov 2020 20:16:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { - "jobId": "850316e7-a727-4c2e-a349-96de788e1d9b", - "lastUpdateDateTime": "2020-11-03T19:54:54Z", - "createdDateTime": "2020-11-03T19:54:50Z", - "expirationDateTime": "2020-11-04T19:54:50Z", + "jobId": "2667ec97-5371-45de-9d8b-c98da3244a74", + "lastUpdateDateTime": "2020-11-03T20:16:59Z", + "createdDateTime": "2020-11-03T20:16:54Z", + "expirationDateTime": "2020-11-04T20:16:54Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json new file mode 100644 index 0000000000000..2d0be2c1ff1cb --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json @@ -0,0 +1,1200 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "223", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-8855f46a6a6e7f4f826e67958575ab88-a4653a0b355ac244-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "cb820fc464b79dcc9212329646bf509a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "Subject is taking 100mg of ibuprofen twice daily", + "language": "en" + }, + { + "id": "2", + "text": "Can cause rapid or irregular heartbeat, delirium, panic, psychosis, and heart failure.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "0f4b8d78-8df3-4074-bf68-bfa4eb69cd22", + "Date": "Tue, 03 Nov 2020 20:17:40 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/c1a5a704-444e-4b36-8685-dbab8bf459ea", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "78" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/c1a5a704-444e-4b36-8685-dbab8bf459ea?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "08d18cd76fa1ba75ad5e5758b7de00e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d8912d30-489c-4d45-8e26-6960f0304061", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:40 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": "c1a5a704-444e-4b36-8685-dbab8bf459ea", + "lastUpdateDateTime": "2020-11-03T20:17:40Z", + "createdDateTime": "2020-11-03T20:17:40Z", + "expirationDateTime": "2020-11-04T20:17:40Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/c1a5a704-444e-4b36-8685-dbab8bf459ea?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2ac480b3f6758c758bf3f8f60a589915", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fa2de576-6cf7-4179-a9c9-c303b973eb02", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:41 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": "c1a5a704-444e-4b36-8685-dbab8bf459ea", + "lastUpdateDateTime": "2020-11-03T20:17:40Z", + "createdDateTime": "2020-11-03T20:17:40Z", + "expirationDateTime": "2020-11-04T20:17:40Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/c1a5a704-444e-4b36-8685-dbab8bf459ea?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4456bc1eb361546e99c71e580d73e5b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bda49f65-013c-4c54-a75e-a27e3c2c5b0f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:42 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": "c1a5a704-444e-4b36-8685-dbab8bf459ea", + "lastUpdateDateTime": "2020-11-03T20:17:40Z", + "createdDateTime": "2020-11-03T20:17:40Z", + "expirationDateTime": "2020-11-04T20:17:40Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/c1a5a704-444e-4b36-8685-dbab8bf459ea?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c5e24e1225fae02416447dad777faf54", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9cb9bcc0-8c7f-4c09-8c72-b65145150455", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:43 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": "c1a5a704-444e-4b36-8685-dbab8bf459ea", + "lastUpdateDateTime": "2020-11-03T20:17:40Z", + "createdDateTime": "2020-11-03T20:17:40Z", + "expirationDateTime": "2020-11-04T20:17:40Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/c1a5a704-444e-4b36-8685-dbab8bf459ea?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "fa3a41c5bb88ff82117090aed71d7e17", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3e0725bb-2bd9-4757-a08a-163a5ae72156", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "jobId": "c1a5a704-444e-4b36-8685-dbab8bf459ea", + "lastUpdateDateTime": "2020-11-03T20:17:44Z", + "createdDateTime": "2020-11-03T20:17:40Z", + "expirationDateTime": "2020-11-04T20:17:40Z", + "status": "succeeded", + "errors": [], + "results": { + "statistics": { + "documentsCount": 2, + "validDocumentsCount": 2, + "erroneousDocumentsCount": 0, + "transactionsCount": 2 + }, + "documents": [ + { + "id": "1", + "statistics": { + "charactersCount": 48, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 18, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 27, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 37, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0, + "isNegated": false + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/0", + "target": "#/results/documents/0/entities/1" + }, + { + "relationType": "FrequencyOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/2", + "target": "#/results/documents/0/entities/1" + } + ] + }, + { + "id": "2", + "statistics": { + "charactersCount": 86, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 10, + "length": 5, + "text": "rapid", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0456962" + }, + { + "dataSource": "AOD", + "id": "0000002744" + }, + { + "dataSource": "CHV", + "id": "0000034666" + }, + { + "dataSource": "LNC", + "id": "LA24868-4" + }, + { + "dataSource": "NCI", + "id": "C65069" + }, + { + "dataSource": "RCD", + "id": "X78xZ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "255358001" + } + ] + }, + { + "offset": 19, + "length": 19, + "text": "irregular heartbeat", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0003811" + }, + { + "dataSource": "AOD", + "id": "0000005346" + }, + { + "dataSource": "BI", + "id": "BI00057" + }, + { + "dataSource": "CCPSS", + "id": "1017785" + }, + { + "dataSource": "CCS", + "id": "7.2.9" + }, + { + "dataSource": "CCSR_10", + "id": "CIR017" + }, + { + "dataSource": "CHV", + "id": "0000001440" + }, + { + "dataSource": "COSTAR", + "id": "153" + }, + { + "dataSource": "CSP", + "id": "1393-3277" + }, + { + "dataSource": "CST", + "id": "ARRHYTHMIA" + }, + { + "dataSource": "HPO", + "id": "HP:0011675" + }, + { + "dataSource": "ICD10", + "id": "I49.9" + }, + { + "dataSource": "ICD10AM", + "id": "I49.9" + }, + { + "dataSource": "ICD10CM", + "id": "I49.9" + }, + { + "dataSource": "ICD9CM", + "id": "427.9" + }, + { + "dataSource": "ICPC", + "id": "K80" + }, + { + "dataSource": "ICPC2EENG", + "id": "K80" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU033639" + }, + { + "dataSource": "ICPC2P", + "id": "K80012" + }, + { + "dataSource": "LCH", + "id": "U000359" + }, + { + "dataSource": "LCH_NW", + "id": "sh85007430" + }, + { + "dataSource": "LNC", + "id": "LA15419-7" + }, + { + "dataSource": "MDR", + "id": "10003119" + }, + { + "dataSource": "MEDCIN", + "id": "35851" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "147" + }, + { + "dataSource": "MSH", + "id": "D001145" + }, + { + "dataSource": "MTH", + "id": "153" + }, + { + "dataSource": "MTHICD9", + "id": "427.9" + }, + { + "dataSource": "NANDA-I", + "id": "00126" + }, + { + "dataSource": "NCI", + "id": "C2881" + }, + { + "dataSource": "NCI_FDA", + "id": "1721" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2881" + }, + { + "dataSource": "NOC", + "id": "040520" + }, + { + "dataSource": "OMIM", + "id": "115000" + }, + { + "dataSource": "PSY", + "id": "03790" + }, + { + "dataSource": "RCD", + "id": "X77BB" + }, + { + "dataSource": "SNM", + "id": "F-73102" + }, + { + "dataSource": "SNMI", + "id": "D3-30010" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "698247007" + }, + { + "dataSource": "WHO", + "id": "0433" + } + ] + }, + { + "offset": 40, + "length": 8, + "text": "delirium", + "category": "Diagnosis", + "confidenceScore": 0.99, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0011206" + }, + { + "dataSource": "AOD", + "id": "0000004328" + }, + { + "dataSource": "CCPSS", + "id": "1017884" + }, + { + "dataSource": "CHV", + "id": "0000003670" + }, + { + "dataSource": "COSTAR", + "id": "U000178" + }, + { + "dataSource": "CSP", + "id": "5003-0016" + }, + { + "dataSource": "CST", + "id": "DELIRIUM" + }, + { + "dataSource": "DSM-5", + "id": "780.09" + }, + { + "dataSource": "DXP", + "id": "U000937" + }, + { + "dataSource": "HPO", + "id": "HP:0031258" + }, + { + "dataSource": "ICD10", + "id": "F05.9" + }, + { + "dataSource": "ICD10AM", + "id": "F05.9" + }, + { + "dataSource": "ICD10CM", + "id": "R41.0" + }, + { + "dataSource": "ICNP", + "id": "10022091" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU022150" + }, + { + "dataSource": "LCH", + "id": "U001289" + }, + { + "dataSource": "LCH_NW", + "id": "sh85036579" + }, + { + "dataSource": "LNC", + "id": "LP89856-6" + }, + { + "dataSource": "MDR", + "id": "10012218" + }, + { + "dataSource": "MEDCIN", + "id": "677" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5562" + }, + { + "dataSource": "MSH", + "id": "D003693" + }, + { + "dataSource": "NANDA-I", + "id": "02157" + }, + { + "dataSource": "NCI", + "id": "C2981" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E12898" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2981" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000450100" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2981" + }, + { + "dataSource": "NOC", + "id": "091213" + }, + { + "dataSource": "OMIM", + "id": "MTHU035152" + }, + { + "dataSource": "PDQ", + "id": "CDR0000042226" + }, + { + "dataSource": "PSY", + "id": "13360" + }, + { + "dataSource": "QMR", + "id": "Q0200089" + }, + { + "dataSource": "RCD", + "id": "XE1Xv" + }, + { + "dataSource": "SNM", + "id": "F-85720" + }, + { + "dataSource": "SNMI", + "id": "D9-20100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2776000" + }, + { + "dataSource": "WHO", + "id": "0099" + } + ] + }, + { + "offset": 50, + "length": 5, + "text": "panic", + "category": "Diagnosis", + "confidenceScore": 0.89, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0030318" + }, + { + "dataSource": "AOD", + "id": "0000023911" + }, + { + "dataSource": "CHV", + "id": "0000009234" + }, + { + "dataSource": "CST", + "id": "AGITATION" + }, + { + "dataSource": "ICD10CM", + "id": "F41.0" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU057222" + }, + { + "dataSource": "LCH", + "id": "U003458" + }, + { + "dataSource": "LCH_NW", + "id": "sh85097438" + }, + { + "dataSource": "MDR", + "id": "10033670" + }, + { + "dataSource": "MSH", + "id": "D010200" + }, + { + "dataSource": "MTH", + "id": "551" + }, + { + "dataSource": "MTHICD9", + "id": "300.01" + }, + { + "dataSource": "NCI", + "id": "C94438" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000454704" + }, + { + "dataSource": "NOC", + "id": "121346" + }, + { + "dataSource": "PSY", + "id": "36260" + }, + { + "dataSource": "RCD", + "id": "Xa3Vj" + }, + { + "dataSource": "SNM", + "id": "F-90880" + }, + { + "dataSource": "SNMI", + "id": "F-92560" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "79823003" + }, + { + "dataSource": "WHO", + "id": "0163" + } + ] + }, + { + "offset": 57, + "length": 9, + "text": "psychosis", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0033975" + }, + { + "dataSource": "AIR", + "id": "PSYCH" + }, + { + "dataSource": "AOD", + "id": "0000004324" + }, + { + "dataSource": "BI", + "id": "BI00688" + }, + { + "dataSource": "CCPSS", + "id": "1018204" + }, + { + "dataSource": "CHV", + "id": "0000010350" + }, + { + "dataSource": "COSTAR", + "id": "089" + }, + { + "dataSource": "CSP", + "id": "2484-8182" + }, + { + "dataSource": "CST", + "id": "PSYCHOSIS" + }, + { + "dataSource": "DXP", + "id": "U003257" + }, + { + "dataSource": "HPO", + "id": "HP:0000709" + }, + { + "dataSource": "ICD9CM", + "id": "298.9" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU070382" + }, + { + "dataSource": "ICPC2P", + "id": "P98004" + }, + { + "dataSource": "LCH_NW", + "id": "sh85108502" + }, + { + "dataSource": "LNC", + "id": "LA7534-6" + }, + { + "dataSource": "MDR", + "id": "10061920" + }, + { + "dataSource": "MEDCIN", + "id": "364298" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4180" + }, + { + "dataSource": "MSH", + "id": "D011618" + }, + { + "dataSource": "MTH", + "id": "089" + }, + { + "dataSource": "MTHICD9", + "id": "298.9" + }, + { + "dataSource": "NANDA-I", + "id": "03128" + }, + { + "dataSource": "NCI", + "id": "C78576" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E12954" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000450115" + }, + { + "dataSource": "NCI_NICHD", + "id": "C78576" + }, + { + "dataSource": "NOC", + "id": "061619" + }, + { + "dataSource": "OMIM", + "id": "MTHU002910" + }, + { + "dataSource": "PSY", + "id": "41910" + }, + { + "dataSource": "QMR", + "id": "Q0200208" + }, + { + "dataSource": "RCD", + "id": "X00S6" + }, + { + "dataSource": "SNM", + "id": "D-9200" + }, + { + "dataSource": "SNMI", + "id": "D9-72000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "69322001" + }, + { + "dataSource": "WHO", + "id": "0193" + } + ] + }, + { + "offset": 72, + "length": 13, + "text": "heart failure", + "category": "Diagnosis", + "confidenceScore": 0.99, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0018801" + }, + { + "dataSource": "AOD", + "id": "0000005308" + }, + { + "dataSource": "BI", + "id": "BI00019" + }, + { + "dataSource": "CCPSS", + "id": "0017571" + }, + { + "dataSource": "CCS", + "id": "7.2.11.2" + }, + { + "dataSource": "CCSR_10", + "id": "CIR019" + }, + { + "dataSource": "CHV", + "id": "0000005877" + }, + { + "dataSource": "COSTAR", + "id": "U000338" + }, + { + "dataSource": "CSP", + "id": "1393-3587" + }, + { + "dataSource": "CST", + "id": "HEART FAIL" + }, + { + "dataSource": "HPO", + "id": "HP:0001635" + }, + { + "dataSource": "ICD10", + "id": "I50.9" + }, + { + "dataSource": "ICD10AM", + "id": "I50.9" + }, + { + "dataSource": "ICD10CM", + "id": "I50.9" + }, + { + "dataSource": "ICD9CM", + "id": "428.9" + }, + { + "dataSource": "ICPC", + "id": "K77" + }, + { + "dataSource": "ICPC2EENG", + "id": "K77" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU027668" + }, + { + "dataSource": "ICPC2P", + "id": "K77011" + }, + { + "dataSource": "LCH", + "id": "U005616" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059745" + }, + { + "dataSource": "LNC", + "id": "LP269421-6" + }, + { + "dataSource": "MDR", + "id": "10007554" + }, + { + "dataSource": "MEDCIN", + "id": "95724" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "199" + }, + { + "dataSource": "MSH", + "id": "D006333" + }, + { + "dataSource": "MTHICD9", + "id": "428.9" + }, + { + "dataSource": "NCI", + "id": "C50577" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10124" + }, + { + "dataSource": "NCI_FDA", + "id": "2206" + }, + { + "dataSource": "NCI_NICHD", + "id": "C50577" + }, + { + "dataSource": "OMIM", + "id": "MTHU009472" + }, + { + "dataSource": "RCD", + "id": "G58.." + }, + { + "dataSource": "SNM", + "id": "D-7050" + }, + { + "dataSource": "SNMI", + "id": "D3-16000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84114007" + }, + { + "dataSource": "WHO", + "id": "0496" + } + ] + } + ] + } + ], + "errors": [], + "modelVersion": "2020-09-03" + } + } + } + ], + "Variables": { + "RandomSeed": "1450670554", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json index e9ce9c00cb78d..ad00d6a02998e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json @@ -11,7 +11,7 @@ "Content-Length": "100", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-727a7de2c803724aa23a19bae1186378-7109c0f5764d4c4d-00", + "traceparent": "00-deefe562f917064a8f0a7823b176bf4e-315f895ba1ee5c43-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,18 +30,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "e7d5c967-f64e-4458-b47b-4a64dd9a3336", - "Date": "Tue, 03 Nov 2020 19:54:54 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2b33d234-2aaa-4569-b060-d2b49f6084ee", + "apim-request-id": "bf02a0b8-8c9f-47d1-9d71-1b688ec13967", + "Date": "Tue, 03 Nov 2020 20:16:59 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ad686c50-e3ad-483e-8be7-d6a7fb1de5e5", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "74" + "x-envoy-upstream-service-time": "87" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2b33d234-2aaa-4569-b060-d2b49f6084ee", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ad686c50-e3ad-483e-8be7-d6a7fb1de5e5", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -59,25 +59,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "671a4734-829e-4512-9e5b-e05e7cc4920f", + "apim-request-id": "73bea8fb-4f37-468a-a66f-7c29900adcb9", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:54 GMT", + "Date": "Tue, 03 Nov 2020 20:16:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { - "jobId": "2b33d234-2aaa-4569-b060-d2b49f6084ee", - "lastUpdateDateTime": "2020-11-03T19:54:55Z", - "createdDateTime": "2020-11-03T19:54:55Z", - "expirationDateTime": "2020-11-04T19:54:55Z", + "jobId": "ad686c50-e3ad-483e-8be7-d6a7fb1de5e5", + "lastUpdateDateTime": "2020-11-03T20:17:00Z", + "createdDateTime": "2020-11-03T20:16:59Z", + "expirationDateTime": "2020-11-04T20:16:59Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2b33d234-2aaa-4569-b060-d2b49f6084ee", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ad686c50-e3ad-483e-8be7-d6a7fb1de5e5", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -95,25 +95,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "72254b00-7f2e-4122-aee1-fed3c3e230d3", + "apim-request-id": "f7b300b4-8fd3-40f2-ac4b-4b1040d33923", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:56 GMT", + "Date": "Tue, 03 Nov 2020 20:17:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "2b33d234-2aaa-4569-b060-d2b49f6084ee", - "lastUpdateDateTime": "2020-11-03T19:54:55Z", - "createdDateTime": "2020-11-03T19:54:55Z", - "expirationDateTime": "2020-11-04T19:54:55Z", + "jobId": "ad686c50-e3ad-483e-8be7-d6a7fb1de5e5", + "lastUpdateDateTime": "2020-11-03T20:17:00Z", + "createdDateTime": "2020-11-03T20:16:59Z", + "expirationDateTime": "2020-11-04T20:16:59Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2b33d234-2aaa-4569-b060-d2b49f6084ee", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ad686c50-e3ad-483e-8be7-d6a7fb1de5e5", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -131,25 +131,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8ffee12e-cea2-4b34-b6c6-ea29056228dc", + "apim-request-id": "2794a6ea-6a83-4614-bc4b-1e572637241e", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:57 GMT", + "Date": "Tue, 03 Nov 2020 20:17:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "2b33d234-2aaa-4569-b060-d2b49f6084ee", - "lastUpdateDateTime": "2020-11-03T19:54:55Z", - "createdDateTime": "2020-11-03T19:54:55Z", - "expirationDateTime": "2020-11-04T19:54:55Z", + "jobId": "ad686c50-e3ad-483e-8be7-d6a7fb1de5e5", + "lastUpdateDateTime": "2020-11-03T20:17:00Z", + "createdDateTime": "2020-11-03T20:16:59Z", + "expirationDateTime": "2020-11-04T20:16:59Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2b33d234-2aaa-4569-b060-d2b49f6084ee", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ad686c50-e3ad-483e-8be7-d6a7fb1de5e5", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -167,25 +167,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9314a623-9c68-479f-bbbf-992c2d04e542", + "apim-request-id": "756cad3c-2540-4c3d-b33f-bc46efd3dc85", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:58 GMT", + "Date": "Tue, 03 Nov 2020 20:17:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "2b33d234-2aaa-4569-b060-d2b49f6084ee", - "lastUpdateDateTime": "2020-11-03T19:54:55Z", - "createdDateTime": "2020-11-03T19:54:55Z", - "expirationDateTime": "2020-11-04T19:54:55Z", + "jobId": "ad686c50-e3ad-483e-8be7-d6a7fb1de5e5", + "lastUpdateDateTime": "2020-11-03T20:17:00Z", + "createdDateTime": "2020-11-03T20:16:59Z", + "expirationDateTime": "2020-11-04T20:16:59Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2b33d234-2aaa-4569-b060-d2b49f6084ee", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ad686c50-e3ad-483e-8be7-d6a7fb1de5e5", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -203,25 +203,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4378a807-4936-44d5-879e-45182a565158", + "apim-request-id": "5bfd4d4d-1745-4068-9664-58865cc918cc", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:54:59 GMT", + "Date": "Tue, 03 Nov 2020 20:17:04 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": "6" }, "ResponseBody": { - "jobId": "2b33d234-2aaa-4569-b060-d2b49f6084ee", - "lastUpdateDateTime": "2020-11-03T19:54:55Z", - "createdDateTime": "2020-11-03T19:54:55Z", - "expirationDateTime": "2020-11-04T19:54:55Z", - "status": "notStarted", + "jobId": "ad686c50-e3ad-483e-8be7-d6a7fb1de5e5", + "lastUpdateDateTime": "2020-11-03T20:17:04Z", + "createdDateTime": "2020-11-03T20:16:59Z", + "expirationDateTime": "2020-11-04T20:16:59Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2b33d234-2aaa-4569-b060-d2b49f6084ee", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ad686c50-e3ad-483e-8be7-d6a7fb1de5e5", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -239,19 +239,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f4ced011-ea6c-474c-ab64-061d727bc1b3", + "apim-request-id": "ec742301-41a3-4fb4-85bc-6d953086fa8a", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:55:00 GMT", + "Date": "Tue, 03 Nov 2020 20:17:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { - "jobId": "2b33d234-2aaa-4569-b060-d2b49f6084ee", - "lastUpdateDateTime": "2020-11-03T19:54:59Z", - "createdDateTime": "2020-11-03T19:54:55Z", - "expirationDateTime": "2020-11-04T19:54:55Z", + "jobId": "ad686c50-e3ad-483e-8be7-d6a7fb1de5e5", + "lastUpdateDateTime": "2020-11-03T20:17:04Z", + "createdDateTime": "2020-11-03T20:16:59Z", + "expirationDateTime": "2020-11-04T20:16:59Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json new file mode 100644 index 0000000000000..b2710c008c3a9 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json @@ -0,0 +1,296 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "100", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-4463721b4babd644b9211d6c0bf12dad-d3084bef4850544e-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "acdb13842ca5b9295fa84adf0c4870a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Subject is taking 100mg of ibuprofen twice daily", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "40402ef9-19d2-410a-9dc6-ed374e6a71dc", + "Date": "Tue, 03 Nov 2020 20:18:12 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/77d9141b-19c4-4a9c-a9b4-a1ac6ca69aa9", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "111" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/77d9141b-19c4-4a9c-a9b4-a1ac6ca69aa9", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1181511460ff1ed085a4ba80632c2cfd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "433420c0-980a-4a5d-b668-311c4a28d2a0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:18:12 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": "77d9141b-19c4-4a9c-a9b4-a1ac6ca69aa9", + "lastUpdateDateTime": "2020-11-03T20:18:13Z", + "createdDateTime": "2020-11-03T20:18:13Z", + "expirationDateTime": "2020-11-04T20:18:13Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/77d9141b-19c4-4a9c-a9b4-a1ac6ca69aa9", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d0605b7dc709a544ca5e0c1b0401dc1e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7cdbad3d-1e87-4a86-89ff-a7db10844cd8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:18:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "jobId": "77d9141b-19c4-4a9c-a9b4-a1ac6ca69aa9", + "lastUpdateDateTime": "2020-11-03T20:18:14Z", + "createdDateTime": "2020-11-03T20:18:13Z", + "expirationDateTime": "2020-11-04T20:18:13Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "statistics": { + "charactersCount": 48, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 18, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 27, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 37, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0, + "isNegated": false + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/0", + "target": "#/results/documents/0/entities/1" + }, + { + "relationType": "FrequencyOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/2", + "target": "#/results/documents/0/entities/1" + } + ] + } + ], + "errors": [], + "modelVersion": "2020-09-03" + } + } + } + ], + "Variables": { + "RandomSeed": "1184190609", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json index ef0e3ecdaefcb..1410bee1b0e86 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json @@ -11,7 +11,7 @@ "Content-Length": "100", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f7ba619b4c5d15408d90d7dac13e1680-00597ec9a2683a46-00", + "traceparent": "00-f9453deb4f9d8c43b2d986e92913e601-243cca994f20654f-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,18 +30,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "ace5a914-6ed6-4063-ad58-44a4949ca373", - "Date": "Tue, 03 Nov 2020 19:58:05 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/64f02d1e-6b95-41ff-97d9-1a7b222db2fd", + "apim-request-id": "0870f224-4253-4f75-ac6c-f2c414a25b7f", + "Date": "Tue, 03 Nov 2020 20:17:05 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/293e5e5d-cece-4051-a284-e9884e2f702d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "91" + "x-envoy-upstream-service-time": "65" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/64f02d1e-6b95-41ff-97d9-1a7b222db2fd?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/293e5e5d-cece-4051-a284-e9884e2f702d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -59,25 +59,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bb3a371b-22b6-4cfc-82b0-2e7980c984d9", + "apim-request-id": "069bd675-6913-4051-9289-6feabdb0a341", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:58:05 GMT", + "Date": "Tue, 03 Nov 2020 20:17:05 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": "5" }, "ResponseBody": { - "jobId": "64f02d1e-6b95-41ff-97d9-1a7b222db2fd", - "lastUpdateDateTime": "2020-11-03T19:58:05Z", - "createdDateTime": "2020-11-03T19:58:04Z", - "expirationDateTime": "2020-11-04T19:58:04Z", + "jobId": "293e5e5d-cece-4051-a284-e9884e2f702d", + "lastUpdateDateTime": "2020-11-03T20:17:05Z", + "createdDateTime": "2020-11-03T20:17:05Z", + "expirationDateTime": "2020-11-04T20:17:05Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/64f02d1e-6b95-41ff-97d9-1a7b222db2fd?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/293e5e5d-cece-4051-a284-e9884e2f702d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -95,25 +95,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "85c3dfa4-c964-4241-8aac-f53063a28f36", + "apim-request-id": "4acc8b5d-b04c-476a-b112-55b4a364f5f6", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:58:06 GMT", + "Date": "Tue, 03 Nov 2020 20:17:06 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": "6" }, "ResponseBody": { - "jobId": "64f02d1e-6b95-41ff-97d9-1a7b222db2fd", - "lastUpdateDateTime": "2020-11-03T19:58:05Z", - "createdDateTime": "2020-11-03T19:58:04Z", - "expirationDateTime": "2020-11-04T19:58:04Z", + "jobId": "293e5e5d-cece-4051-a284-e9884e2f702d", + "lastUpdateDateTime": "2020-11-03T20:17:05Z", + "createdDateTime": "2020-11-03T20:17:05Z", + "expirationDateTime": "2020-11-04T20:17:05Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/64f02d1e-6b95-41ff-97d9-1a7b222db2fd?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/293e5e5d-cece-4051-a284-e9884e2f702d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -131,25 +131,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8ecff573-88c0-46a9-91b6-491089ccddfd", + "apim-request-id": "a6c5bab9-8fc0-4431-b1c1-b11d649dfa99", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:58:07 GMT", + "Date": "Tue, 03 Nov 2020 20:17:07 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": "64f02d1e-6b95-41ff-97d9-1a7b222db2fd", - "lastUpdateDateTime": "2020-11-03T19:58:05Z", - "createdDateTime": "2020-11-03T19:58:04Z", - "expirationDateTime": "2020-11-04T19:58:04Z", + "jobId": "293e5e5d-cece-4051-a284-e9884e2f702d", + "lastUpdateDateTime": "2020-11-03T20:17:05Z", + "createdDateTime": "2020-11-03T20:17:05Z", + "expirationDateTime": "2020-11-04T20:17:05Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/64f02d1e-6b95-41ff-97d9-1a7b222db2fd?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/293e5e5d-cece-4051-a284-e9884e2f702d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -167,19 +167,55 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dd3e6bf5-45e1-4d93-b7bf-ad7200ec7875", + "apim-request-id": "4048c283-15dc-4682-94c1-c52782bfdac9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:08 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": "293e5e5d-cece-4051-a284-e9884e2f702d", + "lastUpdateDateTime": "2020-11-03T20:17:05Z", + "createdDateTime": "2020-11-03T20:17:05Z", + "expirationDateTime": "2020-11-04T20:17:05Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/293e5e5d-cece-4051-a284-e9884e2f702d?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ac0adb67b502c15a3f4db5b5a873ae0e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f625a558-17c6-48e3-b663-f73e11b748c7", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:58:08 GMT", + "Date": "Tue, 03 Nov 2020 20:17:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { - "jobId": "64f02d1e-6b95-41ff-97d9-1a7b222db2fd", - "lastUpdateDateTime": "2020-11-03T19:58:07Z", - "createdDateTime": "2020-11-03T19:58:04Z", - "expirationDateTime": "2020-11-04T19:58:04Z", + "jobId": "293e5e5d-cece-4051-a284-e9884e2f702d", + "lastUpdateDateTime": "2020-11-03T20:17:09Z", + "createdDateTime": "2020-11-03T20:17:05Z", + "expirationDateTime": "2020-11-04T20:17:05Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json new file mode 100644 index 0000000000000..3d4775252ac60 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json @@ -0,0 +1,440 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "100", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-bee725831a9b3342bb37745a31fa89b9-58f663889df8454f-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ac50657e0564f29f4cf677ed0a13f18a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "Subject is taking 100mg of ibuprofen twice daily", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "676a713d-1dfc-478c-9ebb-d41bb16b5a05", + "Date": "Tue, 03 Nov 2020 20:17:44 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b70e23d3-dc51-4df2-8bab-4c8961b8e510", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "69" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b70e23d3-dc51-4df2-8bab-4c8961b8e510?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ee06e8ec9851bf144fa0b3348eac9147", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b9878659-0104-46b8-b32c-1513eaccaf83", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:44 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": "b70e23d3-dc51-4df2-8bab-4c8961b8e510", + "lastUpdateDateTime": "2020-11-03T20:17:44Z", + "createdDateTime": "2020-11-03T20:17:44Z", + "expirationDateTime": "2020-11-04T20:17:44Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b70e23d3-dc51-4df2-8bab-4c8961b8e510?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c56f00a8f06aed051c550a52700d0abf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "492e274f-44d2-4190-8488-bd48eb3b09e6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:45 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": "b70e23d3-dc51-4df2-8bab-4c8961b8e510", + "lastUpdateDateTime": "2020-11-03T20:17:44Z", + "createdDateTime": "2020-11-03T20:17:44Z", + "expirationDateTime": "2020-11-04T20:17:44Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b70e23d3-dc51-4df2-8bab-4c8961b8e510?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c9cabda7fe2ee58e51915dc3526b639f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "628ab94f-b08d-4975-a1b3-03253b285524", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:46 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": "b70e23d3-dc51-4df2-8bab-4c8961b8e510", + "lastUpdateDateTime": "2020-11-03T20:17:44Z", + "createdDateTime": "2020-11-03T20:17:44Z", + "expirationDateTime": "2020-11-04T20:17:44Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b70e23d3-dc51-4df2-8bab-4c8961b8e510?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "094430652ca3fb20e319d1fb8ec14f41", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cd1221c1-a615-40d8-a918-35efd2cea09a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:47 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": "b70e23d3-dc51-4df2-8bab-4c8961b8e510", + "lastUpdateDateTime": "2020-11-03T20:17:44Z", + "createdDateTime": "2020-11-03T20:17:44Z", + "expirationDateTime": "2020-11-04T20:17:44Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b70e23d3-dc51-4df2-8bab-4c8961b8e510?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d18df496c7e2aa18718a74d992419ab0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "78e619a9-78f9-42e9-95dc-fe66fa618ebd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:48 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": "b70e23d3-dc51-4df2-8bab-4c8961b8e510", + "lastUpdateDateTime": "2020-11-03T20:17:44Z", + "createdDateTime": "2020-11-03T20:17:44Z", + "expirationDateTime": "2020-11-04T20:17:44Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b70e23d3-dc51-4df2-8bab-4c8961b8e510?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3fed6bf200c87b1b9dcee6142c92568f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7c16ed5f-79d9-4e24-bef7-fbbbb73ae9c6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": { + "jobId": "b70e23d3-dc51-4df2-8bab-4c8961b8e510", + "lastUpdateDateTime": "2020-11-03T20:17:49Z", + "createdDateTime": "2020-11-03T20:17:44Z", + "expirationDateTime": "2020-11-04T20:17:44Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "statistics": { + "charactersCount": 48, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 18, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 27, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 37, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0, + "isNegated": false + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/0", + "target": "#/results/documents/0/entities/1" + }, + { + "relationType": "FrequencyOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/2", + "target": "#/results/documents/0/entities/1" + } + ] + } + ], + "errors": [], + "modelVersion": "2020-09-03" + } + } + } + ], + "Variables": { + "RandomSeed": "330150674", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json index 292a41db24a7c..f9850f8424220 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json @@ -11,7 +11,7 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-54cf9701da3e7a4a9a1065372193d0f2-55e3c63e1e98de44-00", + "traceparent": "00-f4c2bd570adc7a4681877a9f27d8bb4d-86e4abd508b6774a-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "9451696b-7359-4e64-8cff-521f578ba93b", - "Date": "Tue, 03 Nov 2020 19:57:37 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eedb899f-c3dd-42d8-a38a-b352adb3e567", + "apim-request-id": "4bceccbb-f57c-4f44-9613-c71f4524d753", + "Date": "Tue, 03 Nov 2020 20:17:09 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/9511092f-b01d-4a65-8f5a-8c23916e6010", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "99" + "x-envoy-upstream-service-time": "95" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eedb899f-c3dd-42d8-a38a-b352adb3e567?$skip=1\u0026showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/9511092f-b01d-4a65-8f5a-8c23916e6010?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "615d2400-05af-4490-ba3e-f3325ac86ddd", + "apim-request-id": "a46da24c-ac8d-4d27-8911-890f839581c9", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:57:37 GMT", + "Date": "Tue, 03 Nov 2020 20:17:09 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": "eedb899f-c3dd-42d8-a38a-b352adb3e567", - "lastUpdateDateTime": "2020-11-03T19:57:37Z", - "createdDateTime": "2020-11-03T19:57:37Z", - "expirationDateTime": "2020-11-04T19:57:37Z", + "jobId": "9511092f-b01d-4a65-8f5a-8c23916e6010", + "lastUpdateDateTime": "2020-11-03T20:17:09Z", + "createdDateTime": "2020-11-03T20:17:09Z", + "expirationDateTime": "2020-11-04T20:17:09Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eedb899f-c3dd-42d8-a38a-b352adb3e567?$skip=1\u0026showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/9511092f-b01d-4a65-8f5a-8c23916e6010?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6b82d1bf-395c-4c8f-a1c0-7846dd9c3e60", + "apim-request-id": "a0ef6655-2f87-46b5-9b30-6206202d32bc", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:57:39 GMT", + "Date": "Tue, 03 Nov 2020 20:17:10 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": "eedb899f-c3dd-42d8-a38a-b352adb3e567", - "lastUpdateDateTime": "2020-11-03T19:57:37Z", - "createdDateTime": "2020-11-03T19:57:37Z", - "expirationDateTime": "2020-11-04T19:57:37Z", + "jobId": "9511092f-b01d-4a65-8f5a-8c23916e6010", + "lastUpdateDateTime": "2020-11-03T20:17:09Z", + "createdDateTime": "2020-11-03T20:17:09Z", + "expirationDateTime": "2020-11-04T20:17:09Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eedb899f-c3dd-42d8-a38a-b352adb3e567?$skip=1\u0026showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/9511092f-b01d-4a65-8f5a-8c23916e6010?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -136,19 +136,127 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "71536451-e199-4b59-95a9-118f3df4cdef", + "apim-request-id": "512af097-1280-462e-82a5-1d3eddfdefb3", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:57:40 GMT", + "Date": "Tue, 03 Nov 2020 20:17:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "80" + "x-envoy-upstream-service-time": "6" + }, + "ResponseBody": { + "jobId": "9511092f-b01d-4a65-8f5a-8c23916e6010", + "lastUpdateDateTime": "2020-11-03T20:17:09Z", + "createdDateTime": "2020-11-03T20:17:09Z", + "expirationDateTime": "2020-11-04T20:17:09Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/9511092f-b01d-4a65-8f5a-8c23916e6010?$skip=1\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "38e04dbc073fd45c14a401c7e229e47f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6f94b20a-5b2a-4bda-a51b-74e5d9df988c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" + }, + "ResponseBody": { + "jobId": "9511092f-b01d-4a65-8f5a-8c23916e6010", + "lastUpdateDateTime": "2020-11-03T20:17:09Z", + "createdDateTime": "2020-11-03T20:17:09Z", + "expirationDateTime": "2020-11-04T20:17:09Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/9511092f-b01d-4a65-8f5a-8c23916e6010?$skip=1\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8286353c8dfe591a9d2a883e55713d94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "55f7bbd9-ffe0-4f2b-bd25-81b34d8be8c0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:13 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": "9511092f-b01d-4a65-8f5a-8c23916e6010", + "lastUpdateDateTime": "2020-11-03T20:17:09Z", + "createdDateTime": "2020-11-03T20:17:09Z", + "expirationDateTime": "2020-11-04T20:17:09Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/9511092f-b01d-4a65-8f5a-8c23916e6010?$skip=1\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "45d23bfcfa8eac4dd31f76540997be0c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "26a59acd-ea74-41d2-b521-cdcafca247ed", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" }, "ResponseBody": { - "jobId": "eedb899f-c3dd-42d8-a38a-b352adb3e567", - "lastUpdateDateTime": "2020-11-03T19:57:39Z", - "createdDateTime": "2020-11-03T19:57:37Z", - "expirationDateTime": "2020-11-04T19:57:37Z", + "jobId": "9511092f-b01d-4a65-8f5a-8c23916e6010", + "lastUpdateDateTime": "2020-11-03T20:17:14Z", + "createdDateTime": "2020-11-03T20:17:09Z", + "expirationDateTime": "2020-11-04T20:17:09Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json new file mode 100644 index 0000000000000..ee0b809f8f2c5 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json @@ -0,0 +1,1061 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "223", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-692c839a34143848bc70a3db0af3234b-de15a04f6db91b4b-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9e757d2d83ce1123a7e23fad5376473f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "Subject is taking 100mg of ibuprofen twice daily", + "language": "en" + }, + { + "id": "2", + "text": "Can cause rapid or irregular heartbeat, delirium, panic, psychosis, and heart failure.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "2f5ead30-20e7-4905-91ca-262dcc4661c4", + "Date": "Tue, 03 Nov 2020 20:17:50 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e0c5b126-8656-44a3-afcd-dc426be76ef7", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "125" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e0c5b126-8656-44a3-afcd-dc426be76ef7?$skip=1\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "68a7733fd31f0864ffb638781102da48", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ac05843f-f803-4053-842a-478c4e5cc2da", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:50 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": "e0c5b126-8656-44a3-afcd-dc426be76ef7", + "lastUpdateDateTime": "2020-11-03T20:17:50Z", + "createdDateTime": "2020-11-03T20:17:50Z", + "expirationDateTime": "2020-11-04T20:17:50Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e0c5b126-8656-44a3-afcd-dc426be76ef7?$skip=1\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "39eac04aaed6996e7ea6b9f62c4a8897", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d16e1129-44a5-4246-b484-597b44a18ab8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:51 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": "e0c5b126-8656-44a3-afcd-dc426be76ef7", + "lastUpdateDateTime": "2020-11-03T20:17:50Z", + "createdDateTime": "2020-11-03T20:17:50Z", + "expirationDateTime": "2020-11-04T20:17:50Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e0c5b126-8656-44a3-afcd-dc426be76ef7?$skip=1\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "eaa1ba814c8b59b1196c9f174baaffa5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d5c52943-4d59-4260-8a42-b8520332ec32", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:52 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": "e0c5b126-8656-44a3-afcd-dc426be76ef7", + "lastUpdateDateTime": "2020-11-03T20:17:50Z", + "createdDateTime": "2020-11-03T20:17:50Z", + "expirationDateTime": "2020-11-04T20:17:50Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e0c5b126-8656-44a3-afcd-dc426be76ef7?$skip=1\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9263f6070e8c9068040de978196ddcb4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1d3337c1-e494-4ec1-84e5-ae0d91595763", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:53 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": "e0c5b126-8656-44a3-afcd-dc426be76ef7", + "lastUpdateDateTime": "2020-11-03T20:17:50Z", + "createdDateTime": "2020-11-03T20:17:50Z", + "expirationDateTime": "2020-11-04T20:17:50Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e0c5b126-8656-44a3-afcd-dc426be76ef7?$skip=1\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "57f7a12eef60fdbd0f901f6a0f564dd4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a9829727-46be-4a61-8bbf-726b113a5cf3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:54 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": "e0c5b126-8656-44a3-afcd-dc426be76ef7", + "lastUpdateDateTime": "2020-11-03T20:17:54Z", + "createdDateTime": "2020-11-03T20:17:50Z", + "expirationDateTime": "2020-11-04T20:17:50Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e0c5b126-8656-44a3-afcd-dc426be76ef7?$skip=1\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "35ee13a7f6e7730b5210e57d63383fab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bafdbf4e-5702-40ba-8486-72ae862d85a4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "32" + }, + "ResponseBody": { + "jobId": "e0c5b126-8656-44a3-afcd-dc426be76ef7", + "lastUpdateDateTime": "2020-11-03T20:17:54Z", + "createdDateTime": "2020-11-03T20:17:50Z", + "expirationDateTime": "2020-11-04T20:17:50Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "2", + "statistics": { + "charactersCount": 86, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 10, + "length": 5, + "text": "rapid", + "category": "SymptomOrSign", + "confidenceScore": 0.98, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0456962" + }, + { + "dataSource": "AOD", + "id": "0000002744" + }, + { + "dataSource": "CHV", + "id": "0000034666" + }, + { + "dataSource": "LNC", + "id": "LA24868-4" + }, + { + "dataSource": "NCI", + "id": "C65069" + }, + { + "dataSource": "RCD", + "id": "X78xZ" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "255358001" + } + ] + }, + { + "offset": 19, + "length": 19, + "text": "irregular heartbeat", + "category": "SymptomOrSign", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0003811" + }, + { + "dataSource": "AOD", + "id": "0000005346" + }, + { + "dataSource": "BI", + "id": "BI00057" + }, + { + "dataSource": "CCPSS", + "id": "1017785" + }, + { + "dataSource": "CCS", + "id": "7.2.9" + }, + { + "dataSource": "CCSR_10", + "id": "CIR017" + }, + { + "dataSource": "CHV", + "id": "0000001440" + }, + { + "dataSource": "COSTAR", + "id": "153" + }, + { + "dataSource": "CSP", + "id": "1393-3277" + }, + { + "dataSource": "CST", + "id": "ARRHYTHMIA" + }, + { + "dataSource": "HPO", + "id": "HP:0011675" + }, + { + "dataSource": "ICD10", + "id": "I49.9" + }, + { + "dataSource": "ICD10AM", + "id": "I49.9" + }, + { + "dataSource": "ICD10CM", + "id": "I49.9" + }, + { + "dataSource": "ICD9CM", + "id": "427.9" + }, + { + "dataSource": "ICPC", + "id": "K80" + }, + { + "dataSource": "ICPC2EENG", + "id": "K80" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU033639" + }, + { + "dataSource": "ICPC2P", + "id": "K80012" + }, + { + "dataSource": "LCH", + "id": "U000359" + }, + { + "dataSource": "LCH_NW", + "id": "sh85007430" + }, + { + "dataSource": "LNC", + "id": "LA15419-7" + }, + { + "dataSource": "MDR", + "id": "10003119" + }, + { + "dataSource": "MEDCIN", + "id": "35851" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "147" + }, + { + "dataSource": "MSH", + "id": "D001145" + }, + { + "dataSource": "MTH", + "id": "153" + }, + { + "dataSource": "MTHICD9", + "id": "427.9" + }, + { + "dataSource": "NANDA-I", + "id": "00126" + }, + { + "dataSource": "NCI", + "id": "C2881" + }, + { + "dataSource": "NCI_FDA", + "id": "1721" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2881" + }, + { + "dataSource": "NOC", + "id": "040520" + }, + { + "dataSource": "OMIM", + "id": "115000" + }, + { + "dataSource": "PSY", + "id": "03790" + }, + { + "dataSource": "RCD", + "id": "X77BB" + }, + { + "dataSource": "SNM", + "id": "F-73102" + }, + { + "dataSource": "SNMI", + "id": "D3-30010" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "698247007" + }, + { + "dataSource": "WHO", + "id": "0433" + } + ] + }, + { + "offset": 40, + "length": 8, + "text": "delirium", + "category": "Diagnosis", + "confidenceScore": 0.99, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0011206" + }, + { + "dataSource": "AOD", + "id": "0000004328" + }, + { + "dataSource": "CCPSS", + "id": "1017884" + }, + { + "dataSource": "CHV", + "id": "0000003670" + }, + { + "dataSource": "COSTAR", + "id": "U000178" + }, + { + "dataSource": "CSP", + "id": "5003-0016" + }, + { + "dataSource": "CST", + "id": "DELIRIUM" + }, + { + "dataSource": "DSM-5", + "id": "780.09" + }, + { + "dataSource": "DXP", + "id": "U000937" + }, + { + "dataSource": "HPO", + "id": "HP:0031258" + }, + { + "dataSource": "ICD10", + "id": "F05.9" + }, + { + "dataSource": "ICD10AM", + "id": "F05.9" + }, + { + "dataSource": "ICD10CM", + "id": "R41.0" + }, + { + "dataSource": "ICNP", + "id": "10022091" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU022150" + }, + { + "dataSource": "LCH", + "id": "U001289" + }, + { + "dataSource": "LCH_NW", + "id": "sh85036579" + }, + { + "dataSource": "LNC", + "id": "LP89856-6" + }, + { + "dataSource": "MDR", + "id": "10012218" + }, + { + "dataSource": "MEDCIN", + "id": "677" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "5562" + }, + { + "dataSource": "MSH", + "id": "D003693" + }, + { + "dataSource": "NANDA-I", + "id": "02157" + }, + { + "dataSource": "NCI", + "id": "C2981" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E12898" + }, + { + "dataSource": "NCI_CTRP", + "id": "C2981" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000450100" + }, + { + "dataSource": "NCI_NICHD", + "id": "C2981" + }, + { + "dataSource": "NOC", + "id": "091213" + }, + { + "dataSource": "OMIM", + "id": "MTHU035152" + }, + { + "dataSource": "PDQ", + "id": "CDR0000042226" + }, + { + "dataSource": "PSY", + "id": "13360" + }, + { + "dataSource": "QMR", + "id": "Q0200089" + }, + { + "dataSource": "RCD", + "id": "XE1Xv" + }, + { + "dataSource": "SNM", + "id": "F-85720" + }, + { + "dataSource": "SNMI", + "id": "D9-20100" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "2776000" + }, + { + "dataSource": "WHO", + "id": "0099" + } + ] + }, + { + "offset": 50, + "length": 5, + "text": "panic", + "category": "Diagnosis", + "confidenceScore": 0.89, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0030318" + }, + { + "dataSource": "AOD", + "id": "0000023911" + }, + { + "dataSource": "CHV", + "id": "0000009234" + }, + { + "dataSource": "CST", + "id": "AGITATION" + }, + { + "dataSource": "ICD10CM", + "id": "F41.0" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU057222" + }, + { + "dataSource": "LCH", + "id": "U003458" + }, + { + "dataSource": "LCH_NW", + "id": "sh85097438" + }, + { + "dataSource": "MDR", + "id": "10033670" + }, + { + "dataSource": "MSH", + "id": "D010200" + }, + { + "dataSource": "MTH", + "id": "551" + }, + { + "dataSource": "MTHICD9", + "id": "300.01" + }, + { + "dataSource": "NCI", + "id": "C94438" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000454704" + }, + { + "dataSource": "NOC", + "id": "121346" + }, + { + "dataSource": "PSY", + "id": "36260" + }, + { + "dataSource": "RCD", + "id": "Xa3Vj" + }, + { + "dataSource": "SNM", + "id": "F-90880" + }, + { + "dataSource": "SNMI", + "id": "F-92560" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "79823003" + }, + { + "dataSource": "WHO", + "id": "0163" + } + ] + }, + { + "offset": 57, + "length": 9, + "text": "psychosis", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0033975" + }, + { + "dataSource": "AIR", + "id": "PSYCH" + }, + { + "dataSource": "AOD", + "id": "0000004324" + }, + { + "dataSource": "BI", + "id": "BI00688" + }, + { + "dataSource": "CCPSS", + "id": "1018204" + }, + { + "dataSource": "CHV", + "id": "0000010350" + }, + { + "dataSource": "COSTAR", + "id": "089" + }, + { + "dataSource": "CSP", + "id": "2484-8182" + }, + { + "dataSource": "CST", + "id": "PSYCHOSIS" + }, + { + "dataSource": "DXP", + "id": "U003257" + }, + { + "dataSource": "HPO", + "id": "HP:0000709" + }, + { + "dataSource": "ICD9CM", + "id": "298.9" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU070382" + }, + { + "dataSource": "ICPC2P", + "id": "P98004" + }, + { + "dataSource": "LCH_NW", + "id": "sh85108502" + }, + { + "dataSource": "LNC", + "id": "LA7534-6" + }, + { + "dataSource": "MDR", + "id": "10061920" + }, + { + "dataSource": "MEDCIN", + "id": "364298" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "4180" + }, + { + "dataSource": "MSH", + "id": "D011618" + }, + { + "dataSource": "MTH", + "id": "089" + }, + { + "dataSource": "MTHICD9", + "id": "298.9" + }, + { + "dataSource": "NANDA-I", + "id": "03128" + }, + { + "dataSource": "NCI", + "id": "C78576" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E12954" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000450115" + }, + { + "dataSource": "NCI_NICHD", + "id": "C78576" + }, + { + "dataSource": "NOC", + "id": "061619" + }, + { + "dataSource": "OMIM", + "id": "MTHU002910" + }, + { + "dataSource": "PSY", + "id": "41910" + }, + { + "dataSource": "QMR", + "id": "Q0200208" + }, + { + "dataSource": "RCD", + "id": "X00S6" + }, + { + "dataSource": "SNM", + "id": "D-9200" + }, + { + "dataSource": "SNMI", + "id": "D9-72000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "69322001" + }, + { + "dataSource": "WHO", + "id": "0193" + } + ] + }, + { + "offset": 72, + "length": 13, + "text": "heart failure", + "category": "Diagnosis", + "confidenceScore": 0.99, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0018801" + }, + { + "dataSource": "AOD", + "id": "0000005308" + }, + { + "dataSource": "BI", + "id": "BI00019" + }, + { + "dataSource": "CCPSS", + "id": "0017571" + }, + { + "dataSource": "CCS", + "id": "7.2.11.2" + }, + { + "dataSource": "CCSR_10", + "id": "CIR019" + }, + { + "dataSource": "CHV", + "id": "0000005877" + }, + { + "dataSource": "COSTAR", + "id": "U000338" + }, + { + "dataSource": "CSP", + "id": "1393-3587" + }, + { + "dataSource": "CST", + "id": "HEART FAIL" + }, + { + "dataSource": "HPO", + "id": "HP:0001635" + }, + { + "dataSource": "ICD10", + "id": "I50.9" + }, + { + "dataSource": "ICD10AM", + "id": "I50.9" + }, + { + "dataSource": "ICD10CM", + "id": "I50.9" + }, + { + "dataSource": "ICD9CM", + "id": "428.9" + }, + { + "dataSource": "ICPC", + "id": "K77" + }, + { + "dataSource": "ICPC2EENG", + "id": "K77" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU027668" + }, + { + "dataSource": "ICPC2P", + "id": "K77011" + }, + { + "dataSource": "LCH", + "id": "U005616" + }, + { + "dataSource": "LCH_NW", + "id": "sh85059745" + }, + { + "dataSource": "LNC", + "id": "LP269421-6" + }, + { + "dataSource": "MDR", + "id": "10007554" + }, + { + "dataSource": "MEDCIN", + "id": "95724" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "199" + }, + { + "dataSource": "MSH", + "id": "D006333" + }, + { + "dataSource": "MTHICD9", + "id": "428.9" + }, + { + "dataSource": "NCI", + "id": "C50577" + }, + { + "dataSource": "NCI_CTCAE", + "id": "E10124" + }, + { + "dataSource": "NCI_FDA", + "id": "2206" + }, + { + "dataSource": "NCI_NICHD", + "id": "C50577" + }, + { + "dataSource": "OMIM", + "id": "MTHU009472" + }, + { + "dataSource": "RCD", + "id": "G58.." + }, + { + "dataSource": "SNM", + "id": "D-7050" + }, + { + "dataSource": "SNMI", + "id": "D3-16000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "84114007" + }, + { + "dataSource": "WHO", + "id": "0496" + } + ] + } + ] + } + ], + "errors": [], + "modelVersion": "2020-09-03" + } + } + } + ], + "Variables": { + "RandomSeed": "448859439", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json index e24f6be5cf885..3b4196d632e62 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json @@ -11,7 +11,7 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5161141dfca6ae46b580d1907afad80f-f46d6144166ca642-00", + "traceparent": "00-927d1d9066eeda4ab7e1b24ecb57da01-f6605017002cb141-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "576921e3-bf0f-4205-916f-9b7eaaa71f50", - "Date": "Tue, 03 Nov 2020 19:56:52 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5ec0c31c-5d6d-4dee-b2b0-898462f25151", + "apim-request-id": "d245eb09-2ba0-46ca-921a-6f66695fb183", + "Date": "Tue, 03 Nov 2020 20:17:14 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/6a3332a7-707c-4f18-926f-1ffc7faf627c", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "78" + "x-envoy-upstream-service-time": "116" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5ec0c31c-5d6d-4dee-b2b0-898462f25151?$top=1\u0026$skip=0\u0026showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/6a3332a7-707c-4f18-926f-1ffc7faf627c?$top=1\u0026$skip=0\u0026showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5a69967f-5b8c-405a-a618-359bd5a057a8", + "apim-request-id": "73bd891b-9a29-4ad0-974b-1c32ce9702d0", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:56:52 GMT", + "Date": "Tue, 03 Nov 2020 20:17: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": "5ec0c31c-5d6d-4dee-b2b0-898462f25151", - "lastUpdateDateTime": "2020-11-03T19:56:52Z", - "createdDateTime": "2020-11-03T19:56:52Z", - "expirationDateTime": "2020-11-04T19:56:52Z", + "jobId": "6a3332a7-707c-4f18-926f-1ffc7faf627c", + "lastUpdateDateTime": "2020-11-03T20:17:14Z", + "createdDateTime": "2020-11-03T20:17:14Z", + "expirationDateTime": "2020-11-04T20:17:14Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5ec0c31c-5d6d-4dee-b2b0-898462f25151?$top=1\u0026$skip=0\u0026showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/6a3332a7-707c-4f18-926f-1ffc7faf627c?$top=1\u0026$skip=0\u0026showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "237536e3-95dd-477d-bc67-f020cf67b9b3", + "apim-request-id": "e295f761-a75e-4fa4-b9b2-097987eb83d0", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:56:54 GMT", + "Date": "Tue, 03 Nov 2020 20:17:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "5ec0c31c-5d6d-4dee-b2b0-898462f25151", - "lastUpdateDateTime": "2020-11-03T19:56:52Z", - "createdDateTime": "2020-11-03T19:56:52Z", - "expirationDateTime": "2020-11-04T19:56:52Z", + "jobId": "6a3332a7-707c-4f18-926f-1ffc7faf627c", + "lastUpdateDateTime": "2020-11-03T20:17:14Z", + "createdDateTime": "2020-11-03T20:17:14Z", + "expirationDateTime": "2020-11-04T20:17:14Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5ec0c31c-5d6d-4dee-b2b0-898462f25151?$top=1\u0026$skip=0\u0026showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/6a3332a7-707c-4f18-926f-1ffc7faf627c?$top=1\u0026$skip=0\u0026showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -136,19 +136,127 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c28738f5-cb9a-49e6-8fe4-982321d421cc", + "apim-request-id": "cc739c15-5890-41c8-8aef-9d7b2678bbcf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:17 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": "6a3332a7-707c-4f18-926f-1ffc7faf627c", + "lastUpdateDateTime": "2020-11-03T20:17:14Z", + "createdDateTime": "2020-11-03T20:17:14Z", + "expirationDateTime": "2020-11-04T20:17:14Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/6a3332a7-707c-4f18-926f-1ffc7faf627c?$top=1\u0026$skip=0\u0026showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "34876f37f3038fbdc3134f559df06d66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "43a046ff-33d1-4d28-b166-cd84b72adccd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:18 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": "6a3332a7-707c-4f18-926f-1ffc7faf627c", + "lastUpdateDateTime": "2020-11-03T20:17:14Z", + "createdDateTime": "2020-11-03T20:17:14Z", + "expirationDateTime": "2020-11-04T20:17:14Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/6a3332a7-707c-4f18-926f-1ffc7faf627c?$top=1\u0026$skip=0\u0026showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7be29f675ddb7243cafb10efab21972a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1441d414-cd93-4fe2-8e54-047507eb4296", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:19 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": "6a3332a7-707c-4f18-926f-1ffc7faf627c", + "lastUpdateDateTime": "2020-11-03T20:17:14Z", + "createdDateTime": "2020-11-03T20:17:14Z", + "expirationDateTime": "2020-11-04T20:17:14Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/6a3332a7-707c-4f18-926f-1ffc7faf627c?$top=1\u0026$skip=0\u0026showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "374c2c7b59710901ff1dc62a0af3714c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5c4ae7a2-1211-4548-8313-8c1dabba1afe", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 19:56:55 GMT", + "Date": "Tue, 03 Nov 2020 20:17:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { - "jobId": "5ec0c31c-5d6d-4dee-b2b0-898462f25151", - "lastUpdateDateTime": "2020-11-03T19:56:54Z", - "createdDateTime": "2020-11-03T19:56:52Z", - "expirationDateTime": "2020-11-04T19:56:52Z", + "jobId": "6a3332a7-707c-4f18-926f-1ffc7faf627c", + "lastUpdateDateTime": "2020-11-03T20:17:19Z", + "createdDateTime": "2020-11-03T20:17:14Z", + "expirationDateTime": "2020-11-04T20:17:14Z", "status": "succeeded", "errors": [], "results": { @@ -332,7 +440,7 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5ec0c31c-5d6d-4dee-b2b0-898462f25151?$skip=1\u0026$top=1" + "@nextLink": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/6a3332a7-707c-4f18-926f-1ffc7faf627c?$skip=1\u0026$top=1" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json new file mode 100644 index 0000000000000..75e4d543862c9 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json @@ -0,0 +1,416 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "223", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-dd56c7274ba1e442bad373bfc02af0ad-cb270b6c176a444f-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "724372daad48480e76510121b5839b2e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "1", + "text": "Subject is taking 100mg of ibuprofen twice daily", + "language": "en" + }, + { + "id": "2", + "text": "Can cause rapid or irregular heartbeat, delirium, panic, psychosis, and heart failure.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "41a5ce34-1346-4eca-b486-ce9985373da9", + "Date": "Tue, 03 Nov 2020 20:17:55 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/fcefa85e-dfdf-424a-b724-3fb13e4dd0fc", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "103" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/fcefa85e-dfdf-424a-b724-3fb13e4dd0fc?$top=1\u0026$skip=0\u0026showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "934d972f1ac830d592026d8c2beeac11", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1b6c8fc0-51da-4a47-857c-6acda1f4be2c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:55 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": "fcefa85e-dfdf-424a-b724-3fb13e4dd0fc", + "lastUpdateDateTime": "2020-11-03T20:17:55Z", + "createdDateTime": "2020-11-03T20:17:55Z", + "expirationDateTime": "2020-11-04T20:17:55Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/fcefa85e-dfdf-424a-b724-3fb13e4dd0fc?$top=1\u0026$skip=0\u0026showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ceb201b6e72887166038d111abceeca7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "828f0050-1411-4b2b-b4c7-d6e3d57e80f6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:56 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": "fcefa85e-dfdf-424a-b724-3fb13e4dd0fc", + "lastUpdateDateTime": "2020-11-03T20:17:55Z", + "createdDateTime": "2020-11-03T20:17:55Z", + "expirationDateTime": "2020-11-04T20:17:55Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/fcefa85e-dfdf-424a-b724-3fb13e4dd0fc?$top=1\u0026$skip=0\u0026showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9e71f8d80ef6c0f19d12df4640821c87", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2ef07567-d04c-4151-9fd4-6c1758bb5786", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:57 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": "fcefa85e-dfdf-424a-b724-3fb13e4dd0fc", + "lastUpdateDateTime": "2020-11-03T20:17:55Z", + "createdDateTime": "2020-11-03T20:17:55Z", + "expirationDateTime": "2020-11-04T20:17:55Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/fcefa85e-dfdf-424a-b724-3fb13e4dd0fc?$top=1\u0026$skip=0\u0026showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b36aefa4ccd1470681c5338f48c485c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8b2360d2-94f4-4d52-9c16-c8c640c23e28", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:58 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": "fcefa85e-dfdf-424a-b724-3fb13e4dd0fc", + "lastUpdateDateTime": "2020-11-03T20:17:55Z", + "createdDateTime": "2020-11-03T20:17:55Z", + "expirationDateTime": "2020-11-04T20:17:55Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/fcefa85e-dfdf-424a-b724-3fb13e4dd0fc?$top=1\u0026$skip=0\u0026showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "33b4c5160e7da71a10f1311508cf47de", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cf4a9082-79b7-4a1a-99ba-262bfe03f13b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 03 Nov 2020 20:17:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "31" + }, + "ResponseBody": { + "jobId": "fcefa85e-dfdf-424a-b724-3fb13e4dd0fc", + "lastUpdateDateTime": "2020-11-03T20:17:59Z", + "createdDateTime": "2020-11-03T20:17:55Z", + "expirationDateTime": "2020-11-04T20:17:55Z", + "status": "succeeded", + "errors": [], + "results": { + "statistics": { + "documentsCount": 2, + "validDocumentsCount": 2, + "erroneousDocumentsCount": 0, + "transactionsCount": 2 + }, + "documents": [ + { + "id": "1", + "statistics": { + "charactersCount": 48, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 18, + "length": 5, + "text": "100mg", + "category": "Dosage", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 27, + "length": 9, + "text": "ibuprofen", + "category": "MedicationName", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C0020740" + }, + { + "dataSource": "AOD", + "id": "0000019879" + }, + { + "dataSource": "ATC", + "id": "M01AE01" + }, + { + "dataSource": "CCPSS", + "id": "0046165" + }, + { + "dataSource": "CHV", + "id": "0000006519" + }, + { + "dataSource": "CSP", + "id": "2270-2077" + }, + { + "dataSource": "DRUGBANK", + "id": "DB01050" + }, + { + "dataSource": "GS", + "id": "1611" + }, + { + "dataSource": "LCH_NW", + "id": "sh97005926" + }, + { + "dataSource": "LNC", + "id": "LP16165-0" + }, + { + "dataSource": "MEDCIN", + "id": "40458" + }, + { + "dataSource": "MMSL", + "id": "d00015" + }, + { + "dataSource": "MSH", + "id": "D007052" + }, + { + "dataSource": "MTHSPL", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI", + "id": "C561" + }, + { + "dataSource": "NCI_CTRP", + "id": "C561" + }, + { + "dataSource": "NCI_DCP", + "id": "00803" + }, + { + "dataSource": "NCI_DTP", + "id": "NSC0256857" + }, + { + "dataSource": "NCI_FDA", + "id": "WK2XYI10QM" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000613511" + }, + { + "dataSource": "NDDF", + "id": "002377" + }, + { + "dataSource": "PDQ", + "id": "CDR0000040475" + }, + { + "dataSource": "RCD", + "id": "x02MO" + }, + { + "dataSource": "RXNORM", + "id": "5640" + }, + { + "dataSource": "SNM", + "id": "E-7772" + }, + { + "dataSource": "SNMI", + "id": "C-603C0" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "387207008" + }, + { + "dataSource": "USP", + "id": "m39860" + }, + { + "dataSource": "USPMG", + "id": "MTHU000060" + }, + { + "dataSource": "VANDF", + "id": "4017840" + } + ] + }, + { + "offset": 37, + "length": 11, + "text": "twice daily", + "category": "Frequency", + "confidenceScore": 1.0, + "isNegated": false + } + ], + "relations": [ + { + "relationType": "DosageOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/0", + "target": "#/results/documents/0/entities/1" + }, + { + "relationType": "FrequencyOfMedication", + "bidirectional": false, + "source": "#/results/documents/0/entities/2", + "target": "#/results/documents/0/entities/1" + } + ] + } + ], + "errors": [], + "modelVersion": "2020-09-03" + }, + "@nextLink": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/fcefa85e-dfdf-424a-b724-3fb13e4dd0fc?$skip=1\u0026$top=1" + } + } + ], + "Variables": { + "RandomSeed": "554796851", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file From 61e1083cfbb6bffd912da4af2e084cb5e0794581 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Tue, 3 Nov 2020 12:28:57 -0800 Subject: [PATCH 25/58] removed stringindextype customization --- .../src/EntitiesTaskParameters.cs | 3 ++- .../src/Generated/Models/EntitiesTask.cs | 2 -- .../Models/EntitiesTaskParameters.Serialization.cs | 2 +- .../src/Generated/Models/EntitiesTaskParameters.cs | 4 ++-- .../src/Generated/Models/StringIndexType.cs | 2 +- .../Azure.AI.TextAnalytics/src/StringIndexType.cs | 12 ------------ 6 files changed, 6 insertions(+), 19 deletions(-) delete mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexType.cs diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTaskParameters.cs index 6f17935f57318..75176f9b26199 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTaskParameters.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTaskParameters.cs @@ -1,9 +1,10 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +using Azure.AI.TextAnalytics.Models; using Azure.Core; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { /// /// EntitiesTaskParameters class. diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTask.cs index e7b5290a7b8be..c205b5eaa03ed 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTask.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTask.cs @@ -5,8 +5,6 @@ #nullable disable -using Azure.AI.TextAnalytics.Models; - namespace Azure.AI.TextAnalytics { /// The EntitiesTask. diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.Serialization.cs index 771a98e3fbb04..d032996d58f58 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.Serialization.cs @@ -8,7 +8,7 @@ using System.Text.Json; using Azure.Core; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { public partial class EntitiesTaskParameters : IUtf8JsonSerializable { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.cs index 94fada23dffc0..3069009c1086c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntitiesTaskParameters.cs @@ -5,9 +5,9 @@ #nullable disable -using Azure.AI.TextAnalytics; +using Azure.AI.TextAnalytics.Models; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { /// The EntitiesTaskParameters. public partial class EntitiesTaskParameters diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexType.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexType.cs index e2257f9533dae..79a05a844c1d5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexType.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexType.cs @@ -8,7 +8,7 @@ using System; using System.ComponentModel; -namespace Azure.AI.TextAnalytics +namespace Azure.AI.TextAnalytics.Models { /// The StringIndexType. public readonly partial struct StringIndexType : IEquatable diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexType.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexType.cs deleted file mode 100644 index 204a192ff0b0b..0000000000000 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexType.cs +++ /dev/null @@ -1,12 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -using Azure.Core; - -namespace Azure.AI.TextAnalytics -{ - [CodeGenModel("StringIndexType")] - public partial struct StringIndexType - { - } -} From 927697e82ddc228849551fc511d3c10deb629e8d Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Tue, 3 Nov 2020 13:29:52 -0800 Subject: [PATCH 26/58] removed exception methods --- .../src/ClientCommon.cs | 61 ------------------- .../src/HealthcareOperation.cs | 31 ++-------- .../tests/RecognizeHealthcareEntitiesTests.cs | 1 - 3 files changed, 6 insertions(+), 87 deletions(-) delete mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/ClientCommon.cs diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/ClientCommon.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/ClientCommon.cs deleted file mode 100644 index ce837f6af4b96..0000000000000 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/ClientCommon.cs +++ /dev/null @@ -1,61 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -using System; -using System.Collections.Generic; -using System.Threading.Tasks; -using Azure.AI.TextAnalytics.Models; -using Azure.Core; -using Azure.Core.Pipeline; - -namespace Azure.AI.TextAnalytics -{ - internal static class ClientCommon - { - public static async ValueTask CreateExceptionForFailedOperationAsync(bool async, ClientDiagnostics diagnostics, Response response, IReadOnlyList errors, string errorMessage = default) - { - string errorCode = default; - - if (errors.Count > 0) - { - errorCode = errors[0].Error.Code; - errorMessage ??= errors[0].Error.Message; - } - - var errorInfo = new Dictionary(); - int index = 0; - foreach (var error in errors) - { - errorInfo.Add($"error-{index}", $"{error.Error.Code}: {error.Error.Message}"); - index++; - } - - return async - ? await diagnostics.CreateRequestFailedExceptionAsync(response, errorMessage, errorCode, errorInfo).ConfigureAwait(false) - : diagnostics.CreateRequestFailedException(response, errorMessage, errorCode, errorInfo); - } - - public static async ValueTask CreateExceptionForFailedOperationAsync(bool async, ClientDiagnostics diagnostics, Response response, IReadOnlyList errors, string errorMessage = default) - { - string errorCode = default; - - if (errors.Count > 0) - { - errorCode = errors[0].Code; - errorMessage ??= errors[0].Message; - } - - var errorInfo = new Dictionary(); - int index = 0; - foreach (var error in errors) - { - errorInfo.Add($"error-{index}", $"{error.Code}: {error.Message}"); - index++; - } - - return async - ? await diagnostics.CreateRequestFailedExceptionAsync(response, errorMessage, errorCode, errorInfo).ConfigureAwait(false) - : diagnostics.CreateRequestFailedException(response, errorMessage, errorCode, errorInfo); - } - } -} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs index 2995da66e309e..3076bd3df6231 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs @@ -48,14 +48,7 @@ public override RecognizeHealthcareEntitiesResultCollection Value { get { - if (HasCompleted && !HasValue) -#pragma warning disable CA1065 // Do not raise exceptions in unexpected locations - throw _requestFailedException; -#pragma warning restore CA1065 // Do not raise exceptions in unexpected locations - else - { - return OperationHelpers.GetValue(ref _value); - } + return OperationHelpers.GetValue(ref _value); } } @@ -67,8 +60,6 @@ public override RecognizeHealthcareEntitiesResultCollection Value /// public override bool HasCompleted => _hasCompleted; - private RequestFailedException _requestFailedException; - /// The last HTTP response received from the server. null until the first response is received. private Response _response; @@ -203,21 +194,11 @@ private async ValueTask UpdateStatusAsync(bool async, CancellationToke _response = update.GetRawResponse(); - if (update.Value.Status == JobStatus.Succeeded) - { - // we need to first assign a vaue and then mark the operation as completed to avoid race conditions - _value = Transforms.ConvertToRecognizeHealthcareEntitiesResultCollection(update.Value.Results); - - NextLink = update.Value.NextLink; - _hasCompleted = true; - } - else if (update.Value.Status == JobStatus.Failed) - { - _requestFailedException = await ClientCommon.CreateExceptionForFailedOperationAsync(async, _diagnostics, _response, update.Value.Results.Errors) - .ConfigureAwait(false); - _hasCompleted = true; - throw _requestFailedException; - } + // we need to first assign a value and then mark the operation as completed to avoid race conditions + _value = Transforms.ConvertToRecognizeHealthcareEntitiesResultCollection(update.Value.Results); + + NextLink = update.Value.NextLink; + _hasCompleted = true; } catch (Exception e) { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeHealthcareEntitiesTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeHealthcareEntitiesTests.cs index 8f12e10ff1129..64a83e99c0ca0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeHealthcareEntitiesTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeHealthcareEntitiesTests.cs @@ -1,7 +1,6 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. -using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; From 2fd3b11158e3426810ba7aaa74aa4686250946aa Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Wed, 4 Nov 2020 06:01:39 -0800 Subject: [PATCH 27/58] added more tests and updated samples --- .../src/DocumentHealthcareResult.cs | 17 +- .../src/EntitiesTaskParameters.cs | 2 +- .../HealthcareJobState.Serialization.cs | 19 +- .../Generated/Models/HealthcareJobState.cs | 8 +- .../src/HealthcareOperation.cs | 30 +- .../src/HealthcareRelation.cs | 2 +- .../src/PiiTaskParameters.cs | 2 +- ...gnizeHealthcareEntitiesResultCollection.cs | 2 +- .../src/RecognizeHealthcareEntititesResult.cs | 42 - .../src/TextAnalyticsClient.cs | 34 +- .../Azure.AI.TextAnalytics/src/Transforms.cs | 13 +- .../Azure.AI.TextAnalytics/src/swagger.json | 8 +- .../tests/RecognizeHealthcareEntitiesTests.cs | 82 +- ...ealthcareEntitiesBatchConvenienceTest.json | 122 +- ...careEntitiesBatchConvenienceTestAsync.json | 132 +- ...iesBatchConvenienceWithStatisticsTest.json | 138 +- ...tchConvenienceWithStatisticsTestAsync.json | 118 +- .../RecognizeHealthcareEntitiesBatchTest.json | 136 +- ...gnizeHealthcareEntitiesBatchTestAsync.json | 132 +- ...eHealthcareEntitiesBatchWithErrorTest.json | 116 +- ...thcareEntitiesBatchWithErrorTestAsync.json | 118 +- ...HealthcareEntitiesBatchWithPagination.json | 3253 ++++++++++++++++ ...hcareEntitiesBatchWithPaginationAsync.json | 3289 +++++++++++++++++ ...thcareEntitiesBatchWithStatisticsTest.json | 152 +- ...eEntitiesBatchWithStatisticsTestAsync.json | 118 +- .../RecognizeHealthcareEntitiesTest.json | 122 +- .../RecognizeHealthcareEntitiesTestAsync.json | 190 +- ...izeHealthcareEntitiesWithLanguageTest.json | 134 +- ...althcareEntitiesWithLanguageTestAsync.json | 134 +- ...zeHealthcareEntitiesWithSkipParameter.json | 138 +- ...lthcareEntitiesWithSkipParameterAsync.json | 118 +- ...izeHealthcareEntitiesWithTopParameter.json | 126 +- ...althcareEntitiesWithTopParameterAsync.json | 144 +- .../tests/samples/Sample_Healthcare.cs | 10 +- .../tests/samples/Sample_HealthcareAsync.cs | 10 +- .../Sample_HealthcareAsync_Cancellation.cs | 10 +- .../Sample_HealthcareAsync_Pagination.cs | 62 +- .../Sample_HealthcareAsync_ShowStats.cs | 20 +- .../samples/Sample_Healthcare_Cancellation.cs | 10 +- .../samples/Sample_Healthcare_ShowStats.cs | 8 +- 40 files changed, 8002 insertions(+), 1319 deletions(-) delete mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntititesResult.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPagination.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPaginationAsync.json diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareResult.cs index aec07a8d9b86c..9df950294c8dc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareResult.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareResult.cs @@ -18,9 +18,10 @@ public partial class DocumentHealthcareResult internal DocumentHealthcareResult(DocumentHealthcareEntitiesInternal documentHealthcareEntities) { Entities = documentHealthcareEntities.Entities; - Relations = documentHealthcareEntities.Relations != null ? ResolveHealthcareRelations(documentHealthcareEntities.Entities, documentHealthcareEntities.Relations) : null; + Relations = ResolveHealthcareRelations(documentHealthcareEntities.Entities, documentHealthcareEntities.Relations); Id = documentHealthcareEntities.Id; - Warnings = documentHealthcareEntities.Warnings != null ? Transforms.ConvertToWarnings(documentHealthcareEntities.Warnings) : null; + Warnings = Transforms.ConvertToWarnings(documentHealthcareEntities.Warnings); + Statistics = documentHealthcareEntities.Statistics; } /// @@ -37,6 +38,12 @@ public DocumentHealthcareResult(string id, TextAnalyticsError textAnalyticsError internal static IReadOnlyList ResolveHealthcareRelations(IEnumerable entities, IEnumerable relations) { List list = new List(); + + if (relations == null) + { + return list; + } + foreach (HealthcareRelationInternal relation in relations) { list.Add(new HealthcareRelation(relation.RelationType, @@ -53,10 +60,10 @@ internal static IReadOnlyList ResolveHealthcareRelations(IEn /// Healthcare entities. public IReadOnlyList Entities { get; } /// Healthcare entity relations. - public IReadOnlyList Relations { get; } + public IReadOnlyList Relations { get; } = new List(); /// Warnings encountered while processing document. - public IReadOnlyList Warnings { get; } - /// if showStats=true was specified in the request this field will contain information about the document payload. + public IReadOnlyList Warnings { get; } = new List(); + /// if IncludeStatistics=true was specified in the request this field will contain information about the document payload. public TextDocumentStatistics? Statistics { get; } /// TextAnalyticsError. diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTaskParameters.cs index 75176f9b26199..1c033dbef0a8c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTaskParameters.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTaskParameters.cs @@ -20,7 +20,7 @@ public partial class EntitiesTaskParameters /// /// StringIndexType /// - public StringIndexType? StringIndexType { get; set; } + internal StringIndexType? StringIndexType { get; set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.Serialization.cs index 90ac459bed3cb..5c4d0a562d8c2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.Serialization.cs @@ -6,6 +6,7 @@ #nullable disable using System; +using System.Collections.Generic; using System.Text.Json; using Azure.AI.TextAnalytics; using Azure.Core; @@ -17,6 +18,7 @@ internal partial class HealthcareJobState internal static HealthcareJobState DeserializeHealthcareJobState(JsonElement element) { Optional results = default; + Optional> errors = default; Optional nextLink = default; DateTimeOffset createdDateTime = default; Optional displayName = default; @@ -36,6 +38,21 @@ internal static HealthcareJobState DeserializeHealthcareJobState(JsonElement ele results = HealthcareResult.DeserializeHealthcareResult(property.Value); continue; } + if (property.NameEquals("errors")) + { + if (property.Value.ValueKind == JsonValueKind.Null) + { + property.ThrowNonNullablePropertyIsNull(); + continue; + } + List array = new List(); + foreach (var item in property.Value.EnumerateArray()) + { + array.Add(TextAnalyticsErrorInternal.DeserializeTextAnalyticsErrorInternal(item)); + } + errors = array; + continue; + } if (property.NameEquals("@nextLink")) { nextLink = property.Value.GetString(); @@ -77,7 +94,7 @@ internal static HealthcareJobState DeserializeHealthcareJobState(JsonElement ele continue; } } - return new HealthcareJobState(createdDateTime, displayName.Value, Optional.ToNullable(expirationDateTime), jobId, lastUpdateDateTime, status, results.Value, nextLink.Value); + return new HealthcareJobState(createdDateTime, displayName.Value, Optional.ToNullable(expirationDateTime), jobId, lastUpdateDateTime, status, results.Value, Optional.ToList(errors), nextLink.Value); } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.cs index de628ab51f11d..4de6fa960ac6f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.cs @@ -6,7 +6,9 @@ #nullable disable using System; +using System.Collections.Generic; using Azure.AI.TextAnalytics; +using Azure.Core; namespace Azure.AI.TextAnalytics.Models { @@ -20,6 +22,7 @@ internal partial class HealthcareJobState : JobMetadata /// . internal HealthcareJobState(DateTimeOffset createdDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, JobStatus status) : base(createdDateTime, jobId, lastUpdateDateTime, status) { + Errors = new ChangeTrackingList(); } /// Initializes a new instance of HealthcareJobState. @@ -30,14 +33,17 @@ internal HealthcareJobState(DateTimeOffset createdDateTime, Guid jobId, DateTime /// . /// . /// . + /// . /// . - internal HealthcareJobState(DateTimeOffset createdDateTime, string displayName, DateTimeOffset? expirationDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, JobStatus status, HealthcareResult results, string nextLink) : base(createdDateTime, displayName, expirationDateTime, jobId, lastUpdateDateTime, status) + internal HealthcareJobState(DateTimeOffset createdDateTime, string displayName, DateTimeOffset? expirationDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, JobStatus status, HealthcareResult results, IReadOnlyList errors, string nextLink) : base(createdDateTime, displayName, expirationDateTime, jobId, lastUpdateDateTime, status) { Results = results; + Errors = errors; NextLink = nextLink; } public HealthcareResult Results { get; } + public IReadOnlyList Errors { get; } public string NextLink { get; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs index 3076bd3df6231..0cc84bf5cb4de 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs @@ -48,7 +48,14 @@ public override RecognizeHealthcareEntitiesResultCollection Value { get { - return OperationHelpers.GetValue(ref _value); + if (HasCompleted && !HasValue) +#pragma warning disable CA1065 // Do not raise exceptions in unexpected locations + throw _requestFailedException; +#pragma warning restore CA1065 // Do not raise exceptions in unexpected locations + else + { + return OperationHelpers.GetValue(ref _value); + } } } @@ -60,6 +67,8 @@ public override RecognizeHealthcareEntitiesResultCollection Value /// public override bool HasCompleted => _hasCompleted; + private RequestFailedException _requestFailedException; + /// The last HTTP response received from the server. null until the first response is received. private Response _response; @@ -194,11 +203,20 @@ private async ValueTask UpdateStatusAsync(bool async, CancellationToke _response = update.GetRawResponse(); - // we need to first assign a value and then mark the operation as completed to avoid race conditions - _value = Transforms.ConvertToRecognizeHealthcareEntitiesResultCollection(update.Value.Results); - - NextLink = update.Value.NextLink; - _hasCompleted = true; + if (update.Value.Status == JobStatus.Succeeded) + { + // we need to first assign a vaue and then mark the operation as completed to avoid race conditions + _value = Transforms.ConvertToRecognizeHealthcareEntitiesResultCollection(update.Value.Results); + + NextLink = update.Value.NextLink; + _hasCompleted = true; + } + else if (update.Value.Status == JobStatus.Failed) + { + _hasCompleted = true; + _requestFailedException = new RequestFailedException("Request Failed Exception:" + update.Value.Results.Errors.ToString()); + throw _requestFailedException; + } } catch (Exception e) { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareRelation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareRelation.cs index b4181cec47a80..113020aa67be0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareRelation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareRelation.cs @@ -11,7 +11,7 @@ namespace Azure.AI.TextAnalytics public partial class HealthcareRelation { /// Initializes a new instance of HealthcareRelation. - /// Type of relation. Examples include: `DosageOfMedication` or 'FrequencyOfMedication', etc. + /// Type of relation. Examples include: `DosageOfMedication` or `FrequencyOfMedication`, etc. /// If true the relation between the entities is bidirectional, otherwise directionality is source to target. /// Reference link to the source entity. /// Reference link to the target entity. diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParameters.cs index 1d0b79e94a057..02a3503bb52c5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParameters.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParameters.cs @@ -20,7 +20,7 @@ public partial class PiiTaskParameters /// /// StringIndexType /// - public StringIndexType? StringIndexType { get; set; } + internal StringIndexType? StringIndexType { get; set; } /// /// PiiTaskParametersDomain diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntitiesResultCollection.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntitiesResultCollection.cs index fe5fcd98620b6..bf6e7f7631cc6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntitiesResultCollection.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntitiesResultCollection.cs @@ -8,7 +8,7 @@ namespace Azure.AI.TextAnalytics { /// - /// Collection of objects corresponding + /// Collection of objects corresponding /// to a batch of documents, and information about the batch operation. /// public class RecognizeHealthcareEntitiesResultCollection : ReadOnlyCollection diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntititesResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntititesResult.cs deleted file mode 100644 index 24b91d1f748e4..0000000000000 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/RecognizeHealthcareEntititesResult.cs +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. - -using System; - -namespace Azure.AI.TextAnalytics -{ - /// - /// The result of the recognize healthcare entities in a document, - /// containing a collection of the objects - /// identified in that document. - /// - public class RecognizeHealthcareEntititesResult : TextAnalyticsResult - { - private readonly DocumentHealthcareResult _result; - - internal RecognizeHealthcareEntititesResult(string id, TextDocumentStatistics statistics, DocumentHealthcareResult result) - : base(id, statistics) - { - _result = result; - } - - internal RecognizeHealthcareEntititesResult(string id, TextAnalyticsError error) : base(id, error) { } - - /// - /// Gets the collection of named entities identified in the document. - /// - public DocumentHealthcareResult Result - { - get - { - if (HasError) - { -#pragma warning disable CA1065 // Do not raise exceptions in unexpected locations - throw new InvalidOperationException($"Cannot access result for document {Id}, due to error {Error.ErrorCode}: {Error.Message}"); -#pragma warning restore CA1065 // Do not raise exceptions in unexpected locations - } - return _result; - } - } - } -} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index 5e101a9425b34..2e58e79ecf377 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -7,7 +7,9 @@ using System; using System.Collections.Generic; using System.ComponentModel; +using System.Data; using System.Linq; +using System.Text.RegularExpressions; using System.Threading; using System.Threading.Tasks; @@ -2300,11 +2302,9 @@ private async Task StartHealthcareBatchAsync(MultiLanguageB /// operation. /// The cancellation token to use. // Look for other alternatives of operation cancellation - #pragma warning disable AZC0003 // DO make service methods virtual. #pragma warning disable AZC0015 // Unexpected client method return type. public virtual async Task StartCancelHealthJobAsync(HealthcareOperation operation, CancellationToken cancellationToken = default) #pragma warning restore AZC0015 // Unexpected client method return type. - #pragma warning restore AZC0003 // DO make service methods virtual. { using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartCancelHealthJobAsync)}"); scope.Start(); @@ -2326,11 +2326,9 @@ public virtual async Task StartCancelHealthJobAsync(HealthcareOperation /// Cancel healthcare prediction job. /// Job ID. /// The cancellation token to use. - #pragma warning disable AZC0003 // DO make service methods virtual. #pragma warning disable AZC0015 // Unexpected client method return type. public virtual string StartCancelHealthJob(HealthcareOperation operation, CancellationToken cancellationToken = default) #pragma warning restore AZC0015 // Unexpected client method return type. - #pragma warning restore AZC0003 // DO make service methods virtual. { using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartCancelHealthJobAsync)}"); scope.Start(); @@ -2381,10 +2379,32 @@ async Task> NextPageFunc(string nextLink, int? pa try { - Response response = await operation.WaitForCompletionAsync().ConfigureAwait(false); + int top = 1; + int skip = 1; + string[] nextLinkSplit = nextLink.Split('/'); - RecognizeHealthcareEntitiesResultCollection result = operation.Value; - return Page.FromValues(result.AsEnumerable(), operation.NextLink, response.GetRawResponse()); + string[] jobIdParams = nextLinkSplit.Last().Split('?'); + + string jobId = jobIdParams[0]; + + string[] parameters = jobIdParams[1].Split('&'); + + foreach (string paramater in parameters) + { + if (paramater.Contains("top")) + { + _ = int.TryParse(paramater.Split('=')[1], out top); + } + if (paramater.Contains("skip")) + { + _ = int.TryParse(paramater.Split('=')[1], out skip); + } + } + + Response jobState = await _serviceRestClient.HealthStatusAsync(new Guid(jobId), top, skip).ConfigureAwait(false); + + RecognizeHealthcareEntitiesResultCollection result = Transforms.ConvertToRecognizeHealthcareEntitiesResultCollection(jobState.Value.Results); + return Page.FromValues(result.AsEnumerable(), jobState.Value.NextLink, jobState.GetRawResponse()); } catch (Exception e) { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs index 6290f943183b1..ab4797c73e8c6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs @@ -30,6 +30,12 @@ internal static TextAnalyticsError ConvertToError(TextAnalyticsErrorInternal err internal static List ConvertToWarnings(IReadOnlyList internalWarnings) { var warnings = new List(); + + if (internalWarnings == null) + { + return warnings; + } + foreach (TextAnalyticsWarningInternal warning in internalWarnings) { warnings.Add(new TextAnalyticsWarning(warning)); @@ -227,16 +233,15 @@ internal static RecognizeHealthcareEntitiesResultCollection ConvertToRecognizeHe var healthcareEntititesResults = new List(); //Read errors - foreach (DocumentError error in results.Errors) + foreach (DocumentError error in results?.Errors) { healthcareEntititesResults.Add(new DocumentHealthcareResult(error.Id, ConvertToError(error.Error))); } //Read entities - foreach (DocumentHealthcareEntitiesInternal documentHealthcareEntities in results.Documents) + foreach (DocumentHealthcareEntitiesInternal documentHealthcareEntities in results?.Documents) { - healthcareEntititesResults.Add( - new DocumentHealthcareResult(documentHealthcareEntities)); + healthcareEntititesResults.Add(new DocumentHealthcareResult(documentHealthcareEntities)); } return new RecognizeHealthcareEntitiesResultCollection(healthcareEntititesResults, results.Statistics, results.ModelVersion); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/swagger.json b/sdk/textanalytics/Azure.AI.TextAnalytics/src/swagger.json index 46810c3364d42..bb9d44f77dd9c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/swagger.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/swagger.json @@ -1670,10 +1670,16 @@ "properties": { "results": { "$ref": "#/definitions/HealthcareResult" + }, + "errors": { + "items": { + "$ref": "#/definitions/TextAnalyticsError" + }, + "type": "array" } }, "type": "object" - }, + }, { "$ref": "#/definitions/Pagination" } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeHealthcareEntitiesTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeHealthcareEntitiesTests.cs index 64a83e99c0ca0..b3ef13253bb59 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeHealthcareEntitiesTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeHealthcareEntitiesTests.cs @@ -46,12 +46,43 @@ public async Task RecognizeHealthcareEntitiesTest() Assert.AreEqual(1, resultCollection.Count); + DocumentHealthcareResult result = resultCollection.Single(); + var entitiesList = new List { "100mg", "ibuprofen", "twice daily" }; - foreach (DocumentHealthcareResult result in resultCollection) + + Assert.AreEqual(3, result.Entities.Count); + Assert.IsNotNull(result.Id); + Assert.AreEqual("0", result.Id); + + foreach (HealthcareEntity entity in result.Entities) + { + Assert.IsTrue(entitiesList.Contains(entity.Text)); + + if (entity.Text == "ibuprofen") + { + var linksList = new List { "UMLS", "AOD", "ATC", "CCPSS", "CHV", "CSP", "DRUGBANK", "GS", "LCH_NW", "LNC", "MEDCIN", "MMSL", "MSH", "MTHSPL", "NCI", "NCI_CTRP", "NCI_DCP", "NCI_DTP", "NCI_FDA", "NCI_NCI-GLOSS", "NDDF", "PDQ", "RCD", "RXNORM", "SNM", "SNMI", "SNOMEDCT_US", "USP", "USPMG", "VANDF" }; + + foreach (HealthcareEntityLink link in entity.Links) + Assert.IsTrue(linksList.Contains(link.DataSource)); + } + } + + foreach (HealthcareRelation relation in result.Relations) { - foreach (HealthcareEntity entity in result.Entities) + if (relation.RelationType == "DosageOfMedication") { - Assert.IsTrue(entitiesList.Contains(entity.Text)); + Assert.AreEqual(relation.Source.Text, "100mg"); + Assert.AreEqual(relation.Source.Category, "Dosage"); + Assert.AreEqual(relation.Source.ConfidenceScore, 1); + Assert.AreEqual(relation.Source.Length, 5); + Assert.AreEqual(relation.Source.Offset, 18); + + + Assert.AreEqual(relation.Target.Text, "ibuprofen"); + Assert.AreEqual(relation.Target.Category, "MedicationName"); + Assert.AreEqual(relation.Target.ConfidenceScore, 1); + Assert.AreEqual(relation.Target.Length, 9); + Assert.AreEqual(relation.Target.Offset, 27); } } } @@ -82,9 +113,7 @@ public async Task RecognizeHealthcareEntitiesWithTopParameter() HealthcareOptions options = new HealthcareOptions() { - Top = 1, - Skip = 0, - IncludeStatistics = true + Top = 1 }; HealthcareOperation operation = await client.StartHealthcareBatchAsync(batchDocuments, options); @@ -96,6 +125,7 @@ public async Task RecognizeHealthcareEntitiesWithTopParameter() Assert.AreEqual(1, resultCollection.Count); Assert.AreEqual(3, resultCollection[0].Entities.Count); Assert.IsNotNull(resultCollection[0].Id); + Assert.AreEqual("1", resultCollection[0].Id); Assert.AreEqual("100mg", resultCollection[0].Entities.FirstOrDefault().Text); Assert.AreEqual("Dosage", resultCollection[0].Entities.FirstOrDefault().Category); } @@ -116,9 +146,11 @@ public async Task RecognizeHealthcareEntitiesWithSkipParameter() RecognizeHealthcareEntitiesResultCollection resultCollection = operation.Value; + Assert.IsNotNull(resultCollection[0].Warnings); Assert.AreEqual(1, resultCollection.Count); Assert.AreEqual(6, resultCollection[0].Entities.Count); Assert.IsNotNull(resultCollection[0].Id); + Assert.AreEqual("2", resultCollection[0].Id); Assert.AreEqual("rapid", resultCollection[0].Entities.FirstOrDefault().Text); Assert.AreEqual("SymptomOrSign", resultCollection[0].Entities.FirstOrDefault().Category); } @@ -158,7 +190,7 @@ public async Task RecognizeHealthcareEntitiesBatchConvenienceTest() RecognizeHealthcareEntitiesResultCollection resultCollection = operation.Value; - Assert.AreEqual(resultCollection.Count(), 2); + Assert.AreEqual(resultCollection.Count, 2); } [Test] @@ -178,12 +210,16 @@ public async Task RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest( RecognizeHealthcareEntitiesResultCollection resultCollection = operation.Value; - Assert.GreaterOrEqual(resultCollection.Count(), 2); + Assert.AreEqual(documents.Count, resultCollection.Statistics.DocumentCount); + + Assert.AreEqual(48, resultCollection[0].Statistics.Value.CharacterCount); + Assert.AreEqual(1, resultCollection[0].Statistics.Value.TransactionCount); Assert.Greater(resultCollection.Statistics.DocumentCount, 0); Assert.AreEqual(2, resultCollection.Statistics.DocumentCount); Assert.AreEqual(2, resultCollection.Statistics.TransactionCount); Assert.AreEqual(0, resultCollection.Statistics.InvalidDocumentCount); + Assert.AreEqual(2, resultCollection.Statistics.ValidDocumentCount); } [Test] @@ -198,7 +234,7 @@ public async Task RecognizeHealthcareEntitiesBatchTest() RecognizeHealthcareEntitiesResultCollection resultCollection = operation.Value; - Assert.GreaterOrEqual(resultCollection.Count(), 2); + Assert.GreaterOrEqual(resultCollection.Count, 2); } [Test] @@ -218,12 +254,38 @@ public async Task RecognizeHealthcareEntitiesBatchWithStatisticsTest() RecognizeHealthcareEntitiesResultCollection resultCollection = operation.Value; - Assert.GreaterOrEqual(resultCollection.Count(), 2); + Assert.GreaterOrEqual(resultCollection.Count, 2); Assert.Greater(resultCollection.Statistics.DocumentCount, 0); Assert.AreEqual(2, resultCollection.Statistics.DocumentCount); Assert.AreEqual(2, resultCollection.Statistics.TransactionCount); Assert.AreEqual(0, resultCollection.Statistics.InvalidDocumentCount); } + + [Test] + public async Task RecognizeHealthcareEntitiesBatchWithPagination() + { + TextAnalyticsClient client = GetClient(); + string document = @"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE."; + + var list = new List(); + + for (int i = 0; i < 23; i++) + { + list.Add(document); + }; + + HealthcareOperation healthOperation = await client.StartHealthcareBatchAsync(list); + + AsyncPageable results = client.GetHealthcareEntities(healthOperation); + + int resultCount = 0; + await foreach (DocumentHealthcareResult result in results) + { + resultCount += 1; + } + + Assert.AreEqual(resultCount, 23); + } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json index 07ebc352de962..17c79fefce9d3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e55e880f3ba52c41bde4a3572ccca04e-34b96d4705d8544a-00", + "traceparent": "00-6fbdd9e6f4ed784d95f1f05a79acf964-186ae1782f2d4e45-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1d7c0f7df9a5be46a7bf1d0b574c6095", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "f3f4f384-2876-4569-8a58-bdc41892e689", - "Date": "Tue, 03 Nov 2020 20:16:34 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5797fb6e-4cc4-4d53-9568-9c534fc4c1a5", + "apim-request-id": "74a99a56-fbc6-45ad-8a20-b088f745240e", + "Date": "Wed, 04 Nov 2020 13:53:36 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/01c3f532-9d57-41f6-95c7-ef5e94784433", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "204" + "x-envoy-upstream-service-time": "107" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5797fb6e-4cc4-4d53-9568-9c534fc4c1a5?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/01c3f532-9d57-41f6-95c7-ef5e94784433?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9441bfd5d8fa13e75ab79017f0dbec22", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a470f20c-8881-42e1-a1a0-dbc7a92894c3", + "apim-request-id": "f1de1043-f1fb-4501-bacd-7f87ae80634b", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:34 GMT", + "Date": "Wed, 04 Nov 2020 13:53:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "5797fb6e-4cc4-4d53-9568-9c534fc4c1a5", - "lastUpdateDateTime": "2020-11-03T20:16:34Z", - "createdDateTime": "2020-11-03T20:16:34Z", - "expirationDateTime": "2020-11-04T20:16:34Z", + "jobId": "01c3f532-9d57-41f6-95c7-ef5e94784433", + "lastUpdateDateTime": "2020-11-04T13:53:36Z", + "createdDateTime": "2020-11-04T13:53:36Z", + "expirationDateTime": "2020-11-05T13:53:36Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5797fb6e-4cc4-4d53-9568-9c534fc4c1a5?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/01c3f532-9d57-41f6-95c7-ef5e94784433?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1f1476b4f8decd8416de12a15e37d599", @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4da96516-1e02-4b56-875c-f2ffa4e94c94", + "apim-request-id": "282b788e-7a05-4f41-b2b5-16c604a91c70", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:35 GMT", + "Date": "Wed, 04 Nov 2020 13:53:37 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": "6" }, "ResponseBody": { - "jobId": "5797fb6e-4cc4-4d53-9568-9c534fc4c1a5", - "lastUpdateDateTime": "2020-11-03T20:16:34Z", - "createdDateTime": "2020-11-03T20:16:34Z", - "expirationDateTime": "2020-11-04T20:16:34Z", + "jobId": "01c3f532-9d57-41f6-95c7-ef5e94784433", + "lastUpdateDateTime": "2020-11-04T13:53:36Z", + "createdDateTime": "2020-11-04T13:53:36Z", + "expirationDateTime": "2020-11-05T13:53:36Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5797fb6e-4cc4-4d53-9568-9c534fc4c1a5?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/01c3f532-9d57-41f6-95c7-ef5e94784433?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -127,7 +127,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9fb8c34e36bba5c72869c2ed682ecdcc", @@ -136,25 +136,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e9326c7a-8021-4212-b99d-5ae3ea006d59", + "apim-request-id": "48694de8-aef5-4a5e-9463-743a2b84b1f7", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:36 GMT", + "Date": "Wed, 04 Nov 2020 13:53:38 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": "6" }, "ResponseBody": { - "jobId": "5797fb6e-4cc4-4d53-9568-9c534fc4c1a5", - "lastUpdateDateTime": "2020-11-03T20:16:34Z", - "createdDateTime": "2020-11-03T20:16:34Z", - "expirationDateTime": "2020-11-04T20:16:34Z", + "jobId": "01c3f532-9d57-41f6-95c7-ef5e94784433", + "lastUpdateDateTime": "2020-11-04T13:53:36Z", + "createdDateTime": "2020-11-04T13:53:36Z", + "expirationDateTime": "2020-11-05T13:53:36Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5797fb6e-4cc4-4d53-9568-9c534fc4c1a5?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/01c3f532-9d57-41f6-95c7-ef5e94784433?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -163,7 +163,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e057fbd34137dcb63a747e1bc545b423", @@ -172,25 +172,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "163a8cec-447e-434c-8a52-a633a4d39a97", + "apim-request-id": "c7dc2561-ae5c-40a9-ba1f-eb33d4182ac7", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:37 GMT", + "Date": "Wed, 04 Nov 2020 13:53:39 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": "10" }, "ResponseBody": { - "jobId": "5797fb6e-4cc4-4d53-9568-9c534fc4c1a5", - "lastUpdateDateTime": "2020-11-03T20:16:34Z", - "createdDateTime": "2020-11-03T20:16:34Z", - "expirationDateTime": "2020-11-04T20:16:34Z", + "jobId": "01c3f532-9d57-41f6-95c7-ef5e94784433", + "lastUpdateDateTime": "2020-11-04T13:53:36Z", + "createdDateTime": "2020-11-04T13:53:36Z", + "expirationDateTime": "2020-11-05T13:53:36Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5797fb6e-4cc4-4d53-9568-9c534fc4c1a5?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/01c3f532-9d57-41f6-95c7-ef5e94784433?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -199,7 +199,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2dc9f6e14c227d66ae6ff775359664e7", @@ -208,25 +208,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7dd86c9f-c0f4-41a3-b16c-6787d05b623d", + "apim-request-id": "6cd9d375-d4ba-4e64-a647-b0d80479e58b", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:38 GMT", + "Date": "Wed, 04 Nov 2020 13:53:40 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": "6" }, "ResponseBody": { - "jobId": "5797fb6e-4cc4-4d53-9568-9c534fc4c1a5", - "lastUpdateDateTime": "2020-11-03T20:16:34Z", - "createdDateTime": "2020-11-03T20:16:34Z", - "expirationDateTime": "2020-11-04T20:16:34Z", - "status": "notStarted", + "jobId": "01c3f532-9d57-41f6-95c7-ef5e94784433", + "lastUpdateDateTime": "2020-11-04T13:53:40Z", + "createdDateTime": "2020-11-04T13:53:36Z", + "expirationDateTime": "2020-11-05T13:53:36Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5797fb6e-4cc4-4d53-9568-9c534fc4c1a5?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/01c3f532-9d57-41f6-95c7-ef5e94784433?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -235,7 +235,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "63ce4611f5e00d620cdb6447b8abdfe2", @@ -244,19 +244,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dc9213d1-eda2-4249-9bfe-3061d6fff0cf", + "apim-request-id": "5412b06f-7158-4e58-aadd-cb18dc06f6f7", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:39 GMT", + "Date": "Wed, 04 Nov 2020 13:53:41 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": "40" }, "ResponseBody": { - "jobId": "5797fb6e-4cc4-4d53-9568-9c534fc4c1a5", - "lastUpdateDateTime": "2020-11-03T20:16:39Z", - "createdDateTime": "2020-11-03T20:16:34Z", - "expirationDateTime": "2020-11-04T20:16:34Z", + "jobId": "01c3f532-9d57-41f6-95c7-ef5e94784433", + "lastUpdateDateTime": "2020-11-04T13:53:40Z", + "createdDateTime": "2020-11-04T13:53:36Z", + "expirationDateTime": "2020-11-05T13:53:36Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json index 82c8ce9f04424..a2f0f210a67d1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-41e7cf6744415c4281b26fffd81930e9-ce1b43879c22484c-00", + "traceparent": "00-b83af6fee1db7c4787930e248db6e651-7bbf8c1cffcb4a46-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "99aaf08b1c844fb2d7a9025199ec97e4", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "1631d2d9-76d0-4b6a-a42f-eb9b0c6d9c5a", - "Date": "Tue, 03 Nov 2020 20:17:20 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/946df61d-c7ad-467a-a786-c726d7bdd754", + "apim-request-id": "b68aca03-c275-4e12-a909-d98b4952028f", + "Date": "Wed, 04 Nov 2020 13:54:26 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/613690e6-0b13-4993-89e1-f4c84df6c1ff", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "125" + "x-envoy-upstream-service-time": "101" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/946df61d-c7ad-467a-a786-c726d7bdd754?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/613690e6-0b13-4993-89e1-f4c84df6c1ff?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a6eb27012d3e0231e64179d6488bf525", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "48370ae0-50ea-4656-89a4-49ca8cebaa6b", + "apim-request-id": "66fd9795-21e8-4b6e-9ac6-3da1328dafbb", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:20 GMT", + "Date": "Wed, 04 Nov 2020 13:54:26 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": "946df61d-c7ad-467a-a786-c726d7bdd754", - "lastUpdateDateTime": "2020-11-03T20:17:20Z", - "createdDateTime": "2020-11-03T20:17:20Z", - "expirationDateTime": "2020-11-04T20:17:20Z", + "jobId": "613690e6-0b13-4993-89e1-f4c84df6c1ff", + "lastUpdateDateTime": "2020-11-04T13:54:26Z", + "createdDateTime": "2020-11-04T13:54:26Z", + "expirationDateTime": "2020-11-05T13:54:26Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/946df61d-c7ad-467a-a786-c726d7bdd754?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/613690e6-0b13-4993-89e1-f4c84df6c1ff?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4d12280124119b66ed27d10225884cad", @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "53de0463-ddc4-4c3e-b3f7-8aa89224a8fa", + "apim-request-id": "2d36bc43-ce2f-46b4-af3b-08c3a8b9ac3f", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:21 GMT", + "Date": "Wed, 04 Nov 2020 13:54:27 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": "946df61d-c7ad-467a-a786-c726d7bdd754", - "lastUpdateDateTime": "2020-11-03T20:17:20Z", - "createdDateTime": "2020-11-03T20:17:20Z", - "expirationDateTime": "2020-11-04T20:17:20Z", + "jobId": "613690e6-0b13-4993-89e1-f4c84df6c1ff", + "lastUpdateDateTime": "2020-11-04T13:54:26Z", + "createdDateTime": "2020-11-04T13:54:26Z", + "expirationDateTime": "2020-11-05T13:54:26Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/946df61d-c7ad-467a-a786-c726d7bdd754?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/613690e6-0b13-4993-89e1-f4c84df6c1ff?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -127,7 +127,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c1281b11742f5d97bfa8b242a2dc074b", @@ -136,25 +136,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7bda572d-9844-4213-965b-29b4677df90f", + "apim-request-id": "0e0c5f48-02a5-4a20-96d0-1606381a5e17", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:22 GMT", + "Date": "Wed, 04 Nov 2020 13:54:28 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": "946df61d-c7ad-467a-a786-c726d7bdd754", - "lastUpdateDateTime": "2020-11-03T20:17:20Z", - "createdDateTime": "2020-11-03T20:17:20Z", - "expirationDateTime": "2020-11-04T20:17:20Z", + "jobId": "613690e6-0b13-4993-89e1-f4c84df6c1ff", + "lastUpdateDateTime": "2020-11-04T13:54:26Z", + "createdDateTime": "2020-11-04T13:54:26Z", + "expirationDateTime": "2020-11-05T13:54:26Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/946df61d-c7ad-467a-a786-c726d7bdd754?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/613690e6-0b13-4993-89e1-f4c84df6c1ff?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -163,7 +163,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "714fdcb449dadcd2c04fb8165b2fdd5d", @@ -172,25 +172,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7f56f6a5-796f-48c5-94e5-5da29a250fb6", + "apim-request-id": "35f80bbd-f717-470d-99b2-7a9e6972f0c1", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:23 GMT", + "Date": "Wed, 04 Nov 2020 13:54:29 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": "6" }, "ResponseBody": { - "jobId": "946df61d-c7ad-467a-a786-c726d7bdd754", - "lastUpdateDateTime": "2020-11-03T20:17:20Z", - "createdDateTime": "2020-11-03T20:17:20Z", - "expirationDateTime": "2020-11-04T20:17:20Z", + "jobId": "613690e6-0b13-4993-89e1-f4c84df6c1ff", + "lastUpdateDateTime": "2020-11-04T13:54:26Z", + "createdDateTime": "2020-11-04T13:54:26Z", + "expirationDateTime": "2020-11-05T13:54:26Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/946df61d-c7ad-467a-a786-c726d7bdd754?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/613690e6-0b13-4993-89e1-f4c84df6c1ff?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -199,7 +199,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2cc4ccf534638cf591b48e697223f811", @@ -208,19 +208,55 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "64d52ae3-1aff-4677-8554-8a4d08a5a0ee", + "apim-request-id": "7e7b8f20-32ad-4dff-9f88-c8d7ea4a44f6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 04 Nov 2020 13:54:30 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": "613690e6-0b13-4993-89e1-f4c84df6c1ff", + "lastUpdateDateTime": "2020-11-04T13:54:26Z", + "createdDateTime": "2020-11-04T13:54:26Z", + "expirationDateTime": "2020-11-05T13:54:26Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/613690e6-0b13-4993-89e1-f4c84df6c1ff?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "484d851fdb38c8d2494b00dfbc80018f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2bd55af6-7bf7-4d2d-a8d5-6efb1f256150", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:24 GMT", + "Date": "Wed, 04 Nov 2020 13:54:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { - "jobId": "946df61d-c7ad-467a-a786-c726d7bdd754", - "lastUpdateDateTime": "2020-11-03T20:17:24Z", - "createdDateTime": "2020-11-03T20:17:20Z", - "expirationDateTime": "2020-11-04T20:17:20Z", + "jobId": "613690e6-0b13-4993-89e1-f4c84df6c1ff", + "lastUpdateDateTime": "2020-11-04T13:54:30Z", + "createdDateTime": "2020-11-04T13:54:26Z", + "expirationDateTime": "2020-11-05T13:54:26Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json index 85694df484345..c88fbcef48421 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0533742608055a4db0c18a6b0869458e-088ebd3f90844d42-00", + "traceparent": "00-4a17dece2c9de142b5cc74655ce9c889-663a8d12bfc27b49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "87697e405fe3a2c8182b48340c37e5c5", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "e1577668-d536-4ddd-a4cb-3458d7a4144d", - "Date": "Tue, 03 Nov 2020 20:16:39 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e8efc64f-695f-4456-9f16-1b1f259bbd6f", + "apim-request-id": "27a9c9d9-b063-4e80-ae0f-15ff31e1e91f", + "Date": "Wed, 04 Nov 2020 13:53:41 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/9afb17d5-d908-4c4b-a2ac-adc701231882", "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": "91" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e8efc64f-695f-4456-9f16-1b1f259bbd6f?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/9afb17d5-d908-4c4b-a2ac-adc701231882?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f1abd77b68195cb092c7f20f1aa7cc84", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c1ded920-6eba-411e-b8b2-616351c54841", + "apim-request-id": "0c1d0847-7d3b-4df4-9de7-ba6cb8aefa02", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:39 GMT", + "Date": "Wed, 04 Nov 2020 13:53:41 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": "6" }, "ResponseBody": { - "jobId": "e8efc64f-695f-4456-9f16-1b1f259bbd6f", - "lastUpdateDateTime": "2020-11-03T20:16:39Z", - "createdDateTime": "2020-11-03T20:16:39Z", - "expirationDateTime": "2020-11-04T20:16:39Z", + "jobId": "9afb17d5-d908-4c4b-a2ac-adc701231882", + "lastUpdateDateTime": "2020-11-04T13:53:41Z", + "createdDateTime": "2020-11-04T13:53:41Z", + "expirationDateTime": "2020-11-05T13:53:41Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e8efc64f-695f-4456-9f16-1b1f259bbd6f?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/9afb17d5-d908-4c4b-a2ac-adc701231882?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "be37acebd508d7a1d3d78987b19e23cf", @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d8dd3942-a332-4028-b541-b0ffdc5c6613", + "apim-request-id": "1280122a-24b6-42ed-85ee-f780b5f87984", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:40 GMT", + "Date": "Wed, 04 Nov 2020 13:53:43 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": "e8efc64f-695f-4456-9f16-1b1f259bbd6f", - "lastUpdateDateTime": "2020-11-03T20:16:39Z", - "createdDateTime": "2020-11-03T20:16:39Z", - "expirationDateTime": "2020-11-04T20:16:39Z", + "jobId": "9afb17d5-d908-4c4b-a2ac-adc701231882", + "lastUpdateDateTime": "2020-11-04T13:53:41Z", + "createdDateTime": "2020-11-04T13:53:41Z", + "expirationDateTime": "2020-11-05T13:53:41Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e8efc64f-695f-4456-9f16-1b1f259bbd6f?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/9afb17d5-d908-4c4b-a2ac-adc701231882?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -127,7 +127,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b34190e23bc3d86ecd0cf51c6cb88870", @@ -136,25 +136,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2eee357c-b68b-4680-a767-23d385ea53f3", + "apim-request-id": "ff77a876-a692-48a7-8ffb-33abbb56f42b", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:41 GMT", + "Date": "Wed, 04 Nov 2020 13:53:44 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": "6" }, "ResponseBody": { - "jobId": "e8efc64f-695f-4456-9f16-1b1f259bbd6f", - "lastUpdateDateTime": "2020-11-03T20:16:39Z", - "createdDateTime": "2020-11-03T20:16:39Z", - "expirationDateTime": "2020-11-04T20:16:39Z", + "jobId": "9afb17d5-d908-4c4b-a2ac-adc701231882", + "lastUpdateDateTime": "2020-11-04T13:53:41Z", + "createdDateTime": "2020-11-04T13:53:41Z", + "expirationDateTime": "2020-11-05T13:53:41Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e8efc64f-695f-4456-9f16-1b1f259bbd6f?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/9afb17d5-d908-4c4b-a2ac-adc701231882?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -163,7 +163,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6048c45f2600a6bd35d41e41de29aaf3", @@ -172,25 +172,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "19841f9e-d9a2-4efb-878a-7154c562addc", + "apim-request-id": "55915270-4152-4ce4-b70c-17dcade997e7", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:42 GMT", + "Date": "Wed, 04 Nov 2020 13:53:45 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": "11" }, "ResponseBody": { - "jobId": "e8efc64f-695f-4456-9f16-1b1f259bbd6f", - "lastUpdateDateTime": "2020-11-03T20:16:39Z", - "createdDateTime": "2020-11-03T20:16:39Z", - "expirationDateTime": "2020-11-04T20:16:39Z", + "jobId": "9afb17d5-d908-4c4b-a2ac-adc701231882", + "lastUpdateDateTime": "2020-11-04T13:53:41Z", + "createdDateTime": "2020-11-04T13:53:41Z", + "expirationDateTime": "2020-11-05T13:53:41Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e8efc64f-695f-4456-9f16-1b1f259bbd6f?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/9afb17d5-d908-4c4b-a2ac-adc701231882?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -199,7 +199,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "892d23a31966b0c03e5ff0fbdf856a1a", @@ -208,55 +208,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e378fa2c-9a95-4a33-a9f2-e3a52c3f5e5c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:43 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": "e8efc64f-695f-4456-9f16-1b1f259bbd6f", - "lastUpdateDateTime": "2020-11-03T20:16:39Z", - "createdDateTime": "2020-11-03T20:16:39Z", - "expirationDateTime": "2020-11-04T20:16:39Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e8efc64f-695f-4456-9f16-1b1f259bbd6f?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ed28194fc355bbcfd39b7def1d2cf9a4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a2b70745-de73-4eab-baba-17efa481cd21", + "apim-request-id": "13b1b97b-ae36-40a8-90b8-6ceab63085ab", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:45 GMT", + "Date": "Wed, 04 Nov 2020 13:53:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { - "jobId": "e8efc64f-695f-4456-9f16-1b1f259bbd6f", - "lastUpdateDateTime": "2020-11-03T20:16:44Z", - "createdDateTime": "2020-11-03T20:16:39Z", - "expirationDateTime": "2020-11-04T20:16:39Z", + "jobId": "9afb17d5-d908-4c4b-a2ac-adc701231882", + "lastUpdateDateTime": "2020-11-04T13:53:45Z", + "createdDateTime": "2020-11-04T13:53:41Z", + "expirationDateTime": "2020-11-05T13:53:41Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json index 9db3b9e1e5484..33811800e1271 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-173043deb521c1479635ef068e708916-12ab0e191df61a4e-00", + "traceparent": "00-8424976a90aae440a8dd28ed12a90b42-6ff16f52760a2a46-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "da8d96a331a03c42a6c41c2d9f512b98", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "03de062a-ffa8-423c-aeb9-b1ac87c5e223", - "Date": "Tue, 03 Nov 2020 20:17:24 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/21f09aab-d4bf-473b-a565-58a7c973d22c", + "apim-request-id": "e88c09b6-caf0-48b2-997a-482944f253e3", + "Date": "Wed, 04 Nov 2020 13:54:31 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e5a0ed8b-54f5-4db4-b532-7e2ed57c4c9a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "85" + "x-envoy-upstream-service-time": "76" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/21f09aab-d4bf-473b-a565-58a7c973d22c?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e5a0ed8b-54f5-4db4-b532-7e2ed57c4c9a?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a36dbbc9f92b427287ffda298bd01507", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0043553b-216e-4a6f-928d-9aa50d31c7d5", + "apim-request-id": "c8491965-fd4f-4c7a-92aa-da95ae80bd21", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:24 GMT", + "Date": "Wed, 04 Nov 2020 13:54:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "21f09aab-d4bf-473b-a565-58a7c973d22c", - "lastUpdateDateTime": "2020-11-03T20:17:24Z", - "createdDateTime": "2020-11-03T20:17:24Z", - "expirationDateTime": "2020-11-04T20:17:24Z", + "jobId": "e5a0ed8b-54f5-4db4-b532-7e2ed57c4c9a", + "lastUpdateDateTime": "2020-11-04T13:54:31Z", + "createdDateTime": "2020-11-04T13:54:31Z", + "expirationDateTime": "2020-11-05T13:54:31Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/21f09aab-d4bf-473b-a565-58a7c973d22c?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e5a0ed8b-54f5-4db4-b532-7e2ed57c4c9a?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "86c4abbaba50d8ace0d0fc3795e01d2c", @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a7574116-5c0c-41b8-bdbe-de4f36c92e65", + "apim-request-id": "e9610d67-8f40-45dd-b3e6-866d94c46ab0", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:25 GMT", + "Date": "Wed, 04 Nov 2020 13:54: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": "21f09aab-d4bf-473b-a565-58a7c973d22c", - "lastUpdateDateTime": "2020-11-03T20:17:24Z", - "createdDateTime": "2020-11-03T20:17:24Z", - "expirationDateTime": "2020-11-04T20:17:24Z", + "jobId": "e5a0ed8b-54f5-4db4-b532-7e2ed57c4c9a", + "lastUpdateDateTime": "2020-11-04T13:54:31Z", + "createdDateTime": "2020-11-04T13:54:31Z", + "expirationDateTime": "2020-11-05T13:54:31Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/21f09aab-d4bf-473b-a565-58a7c973d22c?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e5a0ed8b-54f5-4db4-b532-7e2ed57c4c9a?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -127,7 +127,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "97afe1fd518fa965244a53a05719b0d6", @@ -136,25 +136,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "741950f9-3940-414a-b99f-a413edf288b6", + "apim-request-id": "b151e81c-dd48-49ba-976e-28c44184043f", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:26 GMT", + "Date": "Wed, 04 Nov 2020 13:54:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "21f09aab-d4bf-473b-a565-58a7c973d22c", - "lastUpdateDateTime": "2020-11-03T20:17:24Z", - "createdDateTime": "2020-11-03T20:17:24Z", - "expirationDateTime": "2020-11-04T20:17:24Z", + "jobId": "e5a0ed8b-54f5-4db4-b532-7e2ed57c4c9a", + "lastUpdateDateTime": "2020-11-04T13:54:31Z", + "createdDateTime": "2020-11-04T13:54:31Z", + "expirationDateTime": "2020-11-05T13:54:31Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/21f09aab-d4bf-473b-a565-58a7c973d22c?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e5a0ed8b-54f5-4db4-b532-7e2ed57c4c9a?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -163,7 +163,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f47314aea48d0f480e95c35afd3bada6", @@ -172,25 +172,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3e3a76f2-e83c-4e16-aab9-1e51b2dd132b", + "apim-request-id": "bdb7af70-6077-40f4-873b-42bcb69ff099", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:27 GMT", + "Date": "Wed, 04 Nov 2020 13:54:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "21f09aab-d4bf-473b-a565-58a7c973d22c", - "lastUpdateDateTime": "2020-11-03T20:17:24Z", - "createdDateTime": "2020-11-03T20:17:24Z", - "expirationDateTime": "2020-11-04T20:17:24Z", + "jobId": "e5a0ed8b-54f5-4db4-b532-7e2ed57c4c9a", + "lastUpdateDateTime": "2020-11-04T13:54:31Z", + "createdDateTime": "2020-11-04T13:54:31Z", + "expirationDateTime": "2020-11-05T13:54:31Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/21f09aab-d4bf-473b-a565-58a7c973d22c?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e5a0ed8b-54f5-4db4-b532-7e2ed57c4c9a?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -199,7 +199,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a92baee17e216978451a6205660b80c6", @@ -208,25 +208,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "75d8a926-a0f4-4de9-98b7-dda06f6eafe0", + "apim-request-id": "8598f764-bff1-4817-94d2-1195abca49ed", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:28 GMT", + "Date": "Wed, 04 Nov 2020 13:54:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "21f09aab-d4bf-473b-a565-58a7c973d22c", - "lastUpdateDateTime": "2020-11-03T20:17:24Z", - "createdDateTime": "2020-11-03T20:17:24Z", - "expirationDateTime": "2020-11-04T20:17:24Z", - "status": "notStarted", + "jobId": "e5a0ed8b-54f5-4db4-b532-7e2ed57c4c9a", + "lastUpdateDateTime": "2020-11-04T13:54:35Z", + "createdDateTime": "2020-11-04T13:54:31Z", + "expirationDateTime": "2020-11-05T13:54:31Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/21f09aab-d4bf-473b-a565-58a7c973d22c?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e5a0ed8b-54f5-4db4-b532-7e2ed57c4c9a?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -235,7 +235,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8088261f296d589f999f88f98d0bace8", @@ -244,19 +244,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "72251d6b-4788-48b1-8fd9-ce4377031b39", + "apim-request-id": "1c787ae5-46d8-4a4b-a85d-70a0e6ca580c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:29 GMT", + "Date": "Wed, 04 Nov 2020 13:54:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "39" }, "ResponseBody": { - "jobId": "21f09aab-d4bf-473b-a565-58a7c973d22c", - "lastUpdateDateTime": "2020-11-03T20:17:29Z", - "createdDateTime": "2020-11-03T20:17:24Z", - "expirationDateTime": "2020-11-04T20:17:24Z", + "jobId": "e5a0ed8b-54f5-4db4-b532-7e2ed57c4c9a", + "lastUpdateDateTime": "2020-11-04T13:54:35Z", + "createdDateTime": "2020-11-04T13:54:31Z", + "expirationDateTime": "2020-11-05T13:54:31Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json index 21a2e18d3166c..c357520abb16a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-71c2d9fb38812943af57866982b5b729-51c859dce1d3b64b-00", + "traceparent": "00-6a380a8fc20109429fdb916373ca2898-aad17095766b0548-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0d63e53cea7530898179e7904fedbae6", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "87091d36-b045-4781-9572-3127de0d9028", - "Date": "Tue, 03 Nov 2020 20:16:45 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/d59bd359-781e-4362-9d83-b59c4ee3e61d", + "apim-request-id": "595fc748-7dad-4e34-989a-cdabca19cb5e", + "Date": "Wed, 04 Nov 2020 13:53:46 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/4e6acaca-fb35-47c6-8ade-33562dc54a87", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "99" + "x-envoy-upstream-service-time": "156" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/d59bd359-781e-4362-9d83-b59c4ee3e61d?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/4e6acaca-fb35-47c6-8ade-33562dc54a87?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7a482533d010f661d7a330e46a9c020c", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "662192e6-9937-460f-b052-5ca49ded23e4", + "apim-request-id": "819a0039-83de-432a-a68a-44f6d64d1a3c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:45 GMT", + "Date": "Wed, 04 Nov 2020 13:53:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "d59bd359-781e-4362-9d83-b59c4ee3e61d", - "lastUpdateDateTime": "2020-11-03T20:16:45Z", - "createdDateTime": "2020-11-03T20:16:45Z", - "expirationDateTime": "2020-11-04T20:16:45Z", + "jobId": "4e6acaca-fb35-47c6-8ade-33562dc54a87", + "lastUpdateDateTime": "2020-11-04T13:53:46Z", + "createdDateTime": "2020-11-04T13:53:46Z", + "expirationDateTime": "2020-11-05T13:53:46Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/d59bd359-781e-4362-9d83-b59c4ee3e61d?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/4e6acaca-fb35-47c6-8ade-33562dc54a87?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d4480f3cd87c0175cc930cf584ae8a9b", @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c63cf99c-1cf9-4d4f-81cc-bdb590de394a", + "apim-request-id": "0a0a2808-75ed-4323-927b-703207e71ffe", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:46 GMT", + "Date": "Wed, 04 Nov 2020 13:53:47 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": "d59bd359-781e-4362-9d83-b59c4ee3e61d", - "lastUpdateDateTime": "2020-11-03T20:16:45Z", - "createdDateTime": "2020-11-03T20:16:45Z", - "expirationDateTime": "2020-11-04T20:16:45Z", + "jobId": "4e6acaca-fb35-47c6-8ade-33562dc54a87", + "lastUpdateDateTime": "2020-11-04T13:53:46Z", + "createdDateTime": "2020-11-04T13:53:46Z", + "expirationDateTime": "2020-11-05T13:53:46Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/d59bd359-781e-4362-9d83-b59c4ee3e61d?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/4e6acaca-fb35-47c6-8ade-33562dc54a87?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -127,7 +127,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "00da5d97d0326c02836c36d1baa4c6e5", @@ -136,25 +136,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5d3b6b53-a536-477b-8ed3-657d13f84c78", + "apim-request-id": "009fa0d6-2fbf-409f-98fc-74c1ea0ea450", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:47 GMT", + "Date": "Wed, 04 Nov 2020 13:53:48 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": "d59bd359-781e-4362-9d83-b59c4ee3e61d", - "lastUpdateDateTime": "2020-11-03T20:16:45Z", - "createdDateTime": "2020-11-03T20:16:45Z", - "expirationDateTime": "2020-11-04T20:16:45Z", + "jobId": "4e6acaca-fb35-47c6-8ade-33562dc54a87", + "lastUpdateDateTime": "2020-11-04T13:53:46Z", + "createdDateTime": "2020-11-04T13:53:46Z", + "expirationDateTime": "2020-11-05T13:53:46Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/d59bd359-781e-4362-9d83-b59c4ee3e61d?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/4e6acaca-fb35-47c6-8ade-33562dc54a87?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -163,7 +163,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4053da77e5a55a69b046ae7dc36c7228", @@ -172,25 +172,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "480249b0-24d1-4679-9654-9ef156fcf704", + "apim-request-id": "5149df51-efac-4943-b47a-82dc2fd4a5d3", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:48 GMT", + "Date": "Wed, 04 Nov 2020 13:53:49 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": "d59bd359-781e-4362-9d83-b59c4ee3e61d", - "lastUpdateDateTime": "2020-11-03T20:16:45Z", - "createdDateTime": "2020-11-03T20:16:45Z", - "expirationDateTime": "2020-11-04T20:16:45Z", + "jobId": "4e6acaca-fb35-47c6-8ade-33562dc54a87", + "lastUpdateDateTime": "2020-11-04T13:53:46Z", + "createdDateTime": "2020-11-04T13:53:46Z", + "expirationDateTime": "2020-11-05T13:53:46Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/d59bd359-781e-4362-9d83-b59c4ee3e61d?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/4e6acaca-fb35-47c6-8ade-33562dc54a87?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -199,7 +199,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0d4c941902c16cda0cdb5110a2a34728", @@ -208,19 +208,55 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e569323b-584a-4c7e-a83a-70be9994996f", + "apim-request-id": "a74f0c0f-4488-4698-afe8-02e112486954", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 04 Nov 2020 13:53:50 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": "4e6acaca-fb35-47c6-8ade-33562dc54a87", + "lastUpdateDateTime": "2020-11-04T13:53:46Z", + "createdDateTime": "2020-11-04T13:53:46Z", + "expirationDateTime": "2020-11-05T13:53:46Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/4e6acaca-fb35-47c6-8ade-33562dc54a87?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a97e27cc4a5bb1f5f37f4feb2184a817", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9c8bfd2e-8218-44a6-9b88-9f238f5cf2d0", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:49 GMT", + "Date": "Wed, 04 Nov 2020 13:53:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { - "jobId": "d59bd359-781e-4362-9d83-b59c4ee3e61d", - "lastUpdateDateTime": "2020-11-03T20:16:49Z", - "createdDateTime": "2020-11-03T20:16:45Z", - "expirationDateTime": "2020-11-04T20:16:45Z", + "jobId": "4e6acaca-fb35-47c6-8ade-33562dc54a87", + "lastUpdateDateTime": "2020-11-04T13:53:50Z", + "createdDateTime": "2020-11-04T13:53:46Z", + "expirationDateTime": "2020-11-05T13:53:46Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json index 7c3728d013956..123332d53fb0e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-720f9024913c184aaff3dc6f569499cb-86d3dc24a843c148-00", + "traceparent": "00-30d5f8db67f0154a8f0fd7e29a98ae05-b1c04160ea99f24a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "17e898e3099143136b2e35c82964efd9", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "3dac64bd-8f96-4577-bc33-b87ecd5de52a", - "Date": "Tue, 03 Nov 2020 20:17:29 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85f36137-56ab-4f4b-a273-e402ba8557e1", + "apim-request-id": "ec5bc238-0771-4e1f-bb1b-81d7689a39fa", + "Date": "Wed, 04 Nov 2020 13:54:36 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b57b1c7d-3b74-45ea-b3d0-e2cb4503cf71", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "96" + "x-envoy-upstream-service-time": "77" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85f36137-56ab-4f4b-a273-e402ba8557e1?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b57b1c7d-3b74-45ea-b3d0-e2cb4503cf71?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7dd0fa2b947b788e4d51b90a9e064f06", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "70b23e7b-8d0c-4085-bee6-25fcaa3f015b", + "apim-request-id": "9cf0f854-78c7-4ad9-8b91-a79474055e15", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:29 GMT", + "Date": "Wed, 04 Nov 2020 13:54:36 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": "85f36137-56ab-4f4b-a273-e402ba8557e1", - "lastUpdateDateTime": "2020-11-03T20:17:29Z", - "createdDateTime": "2020-11-03T20:17:29Z", - "expirationDateTime": "2020-11-04T20:17:29Z", + "jobId": "b57b1c7d-3b74-45ea-b3d0-e2cb4503cf71", + "lastUpdateDateTime": "2020-11-04T13:54:36Z", + "createdDateTime": "2020-11-04T13:54:36Z", + "expirationDateTime": "2020-11-05T13:54:36Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85f36137-56ab-4f4b-a273-e402ba8557e1?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b57b1c7d-3b74-45ea-b3d0-e2cb4503cf71?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ddd7cae644b1aa3bb79fb4ecc872f743", @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6bac08f1-dc5b-45e2-89e1-36fa2eafade2", + "apim-request-id": "8ca3a89d-08a7-4b02-bda2-e1ef00ff340a", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:30 GMT", + "Date": "Wed, 04 Nov 2020 13:54:38 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": "85f36137-56ab-4f4b-a273-e402ba8557e1", - "lastUpdateDateTime": "2020-11-03T20:17:29Z", - "createdDateTime": "2020-11-03T20:17:29Z", - "expirationDateTime": "2020-11-04T20:17:29Z", + "jobId": "b57b1c7d-3b74-45ea-b3d0-e2cb4503cf71", + "lastUpdateDateTime": "2020-11-04T13:54:36Z", + "createdDateTime": "2020-11-04T13:54:36Z", + "expirationDateTime": "2020-11-05T13:54:36Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85f36137-56ab-4f4b-a273-e402ba8557e1?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b57b1c7d-3b74-45ea-b3d0-e2cb4503cf71?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -127,7 +127,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3c1db919135b4f3e0970ca3f4f09a565", @@ -136,25 +136,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ca3a8620-207a-4cc2-8750-c3725a63789f", + "apim-request-id": "a6f84e8d-b7bd-499d-920d-fc2bfd7af8d4", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:31 GMT", + "Date": "Wed, 04 Nov 2020 13:54:39 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": "12" }, "ResponseBody": { - "jobId": "85f36137-56ab-4f4b-a273-e402ba8557e1", - "lastUpdateDateTime": "2020-11-03T20:17:29Z", - "createdDateTime": "2020-11-03T20:17:29Z", - "expirationDateTime": "2020-11-04T20:17:29Z", + "jobId": "b57b1c7d-3b74-45ea-b3d0-e2cb4503cf71", + "lastUpdateDateTime": "2020-11-04T13:54:36Z", + "createdDateTime": "2020-11-04T13:54:36Z", + "expirationDateTime": "2020-11-05T13:54:36Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85f36137-56ab-4f4b-a273-e402ba8557e1?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b57b1c7d-3b74-45ea-b3d0-e2cb4503cf71?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -163,7 +163,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5fe22edf128ce627be26c6dcdfa2b0da", @@ -172,25 +172,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2b6a2e77-daf3-46fd-bacf-245990bfbc86", + "apim-request-id": "c0931721-99dc-44ea-913a-9435babb502d", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:32 GMT", + "Date": "Wed, 04 Nov 2020 13:54:40 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": "10" }, "ResponseBody": { - "jobId": "85f36137-56ab-4f4b-a273-e402ba8557e1", - "lastUpdateDateTime": "2020-11-03T20:17:29Z", - "createdDateTime": "2020-11-03T20:17:29Z", - "expirationDateTime": "2020-11-04T20:17:29Z", + "jobId": "b57b1c7d-3b74-45ea-b3d0-e2cb4503cf71", + "lastUpdateDateTime": "2020-11-04T13:54:36Z", + "createdDateTime": "2020-11-04T13:54:36Z", + "expirationDateTime": "2020-11-05T13:54:36Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85f36137-56ab-4f4b-a273-e402ba8557e1?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b57b1c7d-3b74-45ea-b3d0-e2cb4503cf71?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -199,7 +199,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e4f1765912e9d2ab8c88d3417afc5bae", @@ -208,55 +208,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e717a8fb-6ae3-4aaf-be2a-9243438305a0", + "apim-request-id": "956b6590-fa02-4fae-8c82-fc50d56124f5", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17: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": "85f36137-56ab-4f4b-a273-e402ba8557e1", - "lastUpdateDateTime": "2020-11-03T20:17:29Z", - "createdDateTime": "2020-11-03T20:17:29Z", - "expirationDateTime": "2020-11-04T20:17:29Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/85f36137-56ab-4f4b-a273-e402ba8557e1?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "990c4ffa988f06b791367e354d616f67", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "52313cb5-00e6-4afd-b026-07657856fa89", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:35 GMT", + "Date": "Wed, 04 Nov 2020 13:54:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "40" }, "ResponseBody": { - "jobId": "85f36137-56ab-4f4b-a273-e402ba8557e1", - "lastUpdateDateTime": "2020-11-03T20:17:34Z", - "createdDateTime": "2020-11-03T20:17:29Z", - "expirationDateTime": "2020-11-04T20:17:29Z", + "jobId": "b57b1c7d-3b74-45ea-b3d0-e2cb4503cf71", + "lastUpdateDateTime": "2020-11-04T13:54:40Z", + "createdDateTime": "2020-11-04T13:54:36Z", + "expirationDateTime": "2020-11-05T13:54:36Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json index f2a982708486c..e8c2dd30d1829 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json @@ -11,9 +11,9 @@ "Content-Length": "260", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c9c14f735f069140b9fe63d4e22d4c63-ed0a2f5a5537a440-00", + "traceparent": "00-bd0b2da30e629f4faf7192d4845af552-f0a311d868157f49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ed679d93c08fe171a9b236aaa757046a", @@ -40,18 +40,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "08e682b3-cbcf-460f-b206-4e18942c508e", - "Date": "Tue, 03 Nov 2020 20:16:49 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5e2fcad4-1920-45dd-b829-601d77c78e71", + "apim-request-id": "219de4ed-36e6-4c1e-8e56-871322a3fa5f", + "Date": "Wed, 04 Nov 2020 13:53:51 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ba4e2aae-4662-475d-81c5-f2d735bb154e", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "102" + "x-envoy-upstream-service-time": "111" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5e2fcad4-1920-45dd-b829-601d77c78e71?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ba4e2aae-4662-475d-81c5-f2d735bb154e?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -60,7 +60,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8ac7fae8cf64a9249598acb3531ad44c", @@ -69,25 +69,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3715ecd6-2044-4d73-870b-1a42ddeef52a", + "apim-request-id": "9eec6de7-5cfc-40fb-8c2e-10a7d8f47062", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:49 GMT", + "Date": "Wed, 04 Nov 2020 13:53:51 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": "5" }, "ResponseBody": { - "jobId": "5e2fcad4-1920-45dd-b829-601d77c78e71", - "lastUpdateDateTime": "2020-11-03T20:16:49Z", - "createdDateTime": "2020-11-03T20:16:49Z", - "expirationDateTime": "2020-11-04T20:16:49Z", + "jobId": "ba4e2aae-4662-475d-81c5-f2d735bb154e", + "lastUpdateDateTime": "2020-11-04T13:53:51Z", + "createdDateTime": "2020-11-04T13:53:51Z", + "expirationDateTime": "2020-11-05T13:53:51Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5e2fcad4-1920-45dd-b829-601d77c78e71?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ba4e2aae-4662-475d-81c5-f2d735bb154e?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -96,7 +96,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e1e35bcd7fe4ca895c5026b1fcf89877", @@ -105,25 +105,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "58ccac35-0d1b-449d-bbe9-fc2f0d738043", + "apim-request-id": "e51c7a55-eded-4dff-bf91-100f96ee09a6", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:50 GMT", + "Date": "Wed, 04 Nov 2020 13:53:52 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": "5e2fcad4-1920-45dd-b829-601d77c78e71", - "lastUpdateDateTime": "2020-11-03T20:16:49Z", - "createdDateTime": "2020-11-03T20:16:49Z", - "expirationDateTime": "2020-11-04T20:16:49Z", + "jobId": "ba4e2aae-4662-475d-81c5-f2d735bb154e", + "lastUpdateDateTime": "2020-11-04T13:53:51Z", + "createdDateTime": "2020-11-04T13:53:51Z", + "expirationDateTime": "2020-11-05T13:53:51Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5e2fcad4-1920-45dd-b829-601d77c78e71?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ba4e2aae-4662-475d-81c5-f2d735bb154e?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -132,7 +132,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "42e053ff1beac39b78bd58f714be8d8f", @@ -141,25 +141,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f9770069-8e6e-4883-866e-8ed36cf5cd08", + "apim-request-id": "bc5f05fc-cc1b-4bc1-abda-8d7ad873cead", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:51 GMT", + "Date": "Wed, 04 Nov 2020 13:53:53 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": "5e2fcad4-1920-45dd-b829-601d77c78e71", - "lastUpdateDateTime": "2020-11-03T20:16:49Z", - "createdDateTime": "2020-11-03T20:16:49Z", - "expirationDateTime": "2020-11-04T20:16:49Z", + "jobId": "ba4e2aae-4662-475d-81c5-f2d735bb154e", + "lastUpdateDateTime": "2020-11-04T13:53:51Z", + "createdDateTime": "2020-11-04T13:53:51Z", + "expirationDateTime": "2020-11-05T13:53:51Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5e2fcad4-1920-45dd-b829-601d77c78e71?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ba4e2aae-4662-475d-81c5-f2d735bb154e?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -168,7 +168,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4bddeade2273698670fd2d14a873ad9c", @@ -177,25 +177,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1e94c173-a8e8-4d72-a058-2d05b039018b", + "apim-request-id": "e702cdb6-1e65-4218-9cd8-036e683eca8d", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:52 GMT", + "Date": "Wed, 04 Nov 2020 13:53:54 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": "5e2fcad4-1920-45dd-b829-601d77c78e71", - "lastUpdateDateTime": "2020-11-03T20:16:49Z", - "createdDateTime": "2020-11-03T20:16:49Z", - "expirationDateTime": "2020-11-04T20:16:49Z", + "jobId": "ba4e2aae-4662-475d-81c5-f2d735bb154e", + "lastUpdateDateTime": "2020-11-04T13:53:51Z", + "createdDateTime": "2020-11-04T13:53:51Z", + "expirationDateTime": "2020-11-05T13:53:51Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5e2fcad4-1920-45dd-b829-601d77c78e71?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ba4e2aae-4662-475d-81c5-f2d735bb154e?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -204,7 +204,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ffb435ff9139b161bf1f68262691b59e", @@ -213,25 +213,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "182ed438-5196-4708-8af6-a0f50afbe17e", + "apim-request-id": "4de054c0-2a59-47b5-90a5-368f8a31feab", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:53 GMT", + "Date": "Wed, 04 Nov 2020 13:53:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "5e2fcad4-1920-45dd-b829-601d77c78e71", - "lastUpdateDateTime": "2020-11-03T20:16:49Z", - "createdDateTime": "2020-11-03T20:16:49Z", - "expirationDateTime": "2020-11-04T20:16:49Z", - "status": "notStarted", + "jobId": "ba4e2aae-4662-475d-81c5-f2d735bb154e", + "lastUpdateDateTime": "2020-11-04T13:53:55Z", + "createdDateTime": "2020-11-04T13:53:51Z", + "expirationDateTime": "2020-11-05T13:53:51Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/5e2fcad4-1920-45dd-b829-601d77c78e71?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ba4e2aae-4662-475d-81c5-f2d735bb154e?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -240,7 +240,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "11d297c24c1bdc03cd77d1edee871a04", @@ -249,19 +249,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f046152a-4463-4b1d-8cb2-a871e498905c", + "apim-request-id": "de43c7ba-6b07-4fff-b900-93233e717e37", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:54 GMT", + "Date": "Wed, 04 Nov 2020 13:53:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { - "jobId": "5e2fcad4-1920-45dd-b829-601d77c78e71", - "lastUpdateDateTime": "2020-11-03T20:16:54Z", - "createdDateTime": "2020-11-03T20:16:49Z", - "expirationDateTime": "2020-11-04T20:16:49Z", + "jobId": "ba4e2aae-4662-475d-81c5-f2d735bb154e", + "lastUpdateDateTime": "2020-11-04T13:53:55Z", + "createdDateTime": "2020-11-04T13:53:51Z", + "expirationDateTime": "2020-11-05T13:53:51Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json index 8fd98ac8c1c80..b9dea8587be0a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "260", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-74ab9d9c3e561c45bf351bc0bb84f739-7feda4e6e6a5a742-00", + "traceparent": "00-9e39149444919c4f9e6a7d71505e2849-f901cbdb759d0f4d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4352d8dd6e2ff74a3743e20989f20949", @@ -40,18 +40,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "813c3288-b87f-491e-8587-39512af66aa5", - "Date": "Tue, 03 Nov 2020 20:17:35 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/7b193690-25cb-48df-a4f7-c3df7a191e78", + "apim-request-id": "fc34547c-d220-47c7-93eb-6104d7dbae5e", + "Date": "Wed, 04 Nov 2020 13:54:41 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/8e31c99f-1f4c-4e83-b58e-1242b857781d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "107" + "x-envoy-upstream-service-time": "105" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/7b193690-25cb-48df-a4f7-c3df7a191e78?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/8e31c99f-1f4c-4e83-b58e-1242b857781d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -60,7 +60,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b850713105701863d1b6a799a800b67b", @@ -69,25 +69,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0b237780-a98c-45c4-8965-c047352d349a", + "apim-request-id": "1403190a-c5a8-4d0f-ad0f-2601abebd25d", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:35 GMT", + "Date": "Wed, 04 Nov 2020 13:54:41 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": "7b193690-25cb-48df-a4f7-c3df7a191e78", - "lastUpdateDateTime": "2020-11-03T20:17:35Z", - "createdDateTime": "2020-11-03T20:17:35Z", - "expirationDateTime": "2020-11-04T20:17:35Z", + "jobId": "8e31c99f-1f4c-4e83-b58e-1242b857781d", + "lastUpdateDateTime": "2020-11-04T13:54:41Z", + "createdDateTime": "2020-11-04T13:54:41Z", + "expirationDateTime": "2020-11-05T13:54:41Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/7b193690-25cb-48df-a4f7-c3df7a191e78?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/8e31c99f-1f4c-4e83-b58e-1242b857781d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -96,7 +96,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7b6997a8eb08a1c0115e8728d43fe710", @@ -105,25 +105,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c3dec0e0-0cc3-4f75-a3d5-dd9b74ef821e", + "apim-request-id": "c7b2e557-10cd-4a93-a8ba-e307a81b1c6e", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:36 GMT", + "Date": "Wed, 04 Nov 2020 13:54:42 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": "7b193690-25cb-48df-a4f7-c3df7a191e78", - "lastUpdateDateTime": "2020-11-03T20:17:35Z", - "createdDateTime": "2020-11-03T20:17:35Z", - "expirationDateTime": "2020-11-04T20:17:35Z", + "jobId": "8e31c99f-1f4c-4e83-b58e-1242b857781d", + "lastUpdateDateTime": "2020-11-04T13:54:41Z", + "createdDateTime": "2020-11-04T13:54:41Z", + "expirationDateTime": "2020-11-05T13:54:41Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/7b193690-25cb-48df-a4f7-c3df7a191e78?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/8e31c99f-1f4c-4e83-b58e-1242b857781d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -132,7 +132,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c4c517d3dcd1d7de74397279c7b14e37", @@ -141,25 +141,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8ec5ae51-149b-4f8c-b087-4eff79cfd829", + "apim-request-id": "a2c6cce4-1eee-4103-bbb3-2d30ec4d1e9d", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:37 GMT", + "Date": "Wed, 04 Nov 2020 13:54:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "7b193690-25cb-48df-a4f7-c3df7a191e78", - "lastUpdateDateTime": "2020-11-03T20:17:35Z", - "createdDateTime": "2020-11-03T20:17:35Z", - "expirationDateTime": "2020-11-04T20:17:35Z", + "jobId": "8e31c99f-1f4c-4e83-b58e-1242b857781d", + "lastUpdateDateTime": "2020-11-04T13:54:41Z", + "createdDateTime": "2020-11-04T13:54:41Z", + "expirationDateTime": "2020-11-05T13:54:41Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/7b193690-25cb-48df-a4f7-c3df7a191e78?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/8e31c99f-1f4c-4e83-b58e-1242b857781d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -168,7 +168,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f260678d8d894640b1aea7117e3b4491", @@ -177,25 +177,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dfaf82c4-dc28-411b-a422-80b75b050b09", + "apim-request-id": "46453f64-83d3-49f8-ae00-730c4b018157", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:38 GMT", + "Date": "Wed, 04 Nov 2020 13:54:44 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": "9" }, "ResponseBody": { - "jobId": "7b193690-25cb-48df-a4f7-c3df7a191e78", - "lastUpdateDateTime": "2020-11-03T20:17:35Z", - "createdDateTime": "2020-11-03T20:17:35Z", - "expirationDateTime": "2020-11-04T20:17:35Z", + "jobId": "8e31c99f-1f4c-4e83-b58e-1242b857781d", + "lastUpdateDateTime": "2020-11-04T13:54:41Z", + "createdDateTime": "2020-11-04T13:54:41Z", + "expirationDateTime": "2020-11-05T13:54:41Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/7b193690-25cb-48df-a4f7-c3df7a191e78?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/8e31c99f-1f4c-4e83-b58e-1242b857781d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -204,7 +204,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "90c597cef13bcca9b99106ce7947da60", @@ -213,25 +213,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "90e4f232-d1b0-4ddd-9ed6-bb67b79f30c3", + "apim-request-id": "e7f02443-2e54-442c-a7ec-d18fe63242f4", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:39 GMT", + "Date": "Wed, 04 Nov 2020 13:54:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "7b193690-25cb-48df-a4f7-c3df7a191e78", - "lastUpdateDateTime": "2020-11-03T20:17:39Z", - "createdDateTime": "2020-11-03T20:17:35Z", - "expirationDateTime": "2020-11-04T20:17:35Z", - "status": "running", + "jobId": "8e31c99f-1f4c-4e83-b58e-1242b857781d", + "lastUpdateDateTime": "2020-11-04T13:54:41Z", + "createdDateTime": "2020-11-04T13:54:41Z", + "expirationDateTime": "2020-11-05T13:54:41Z", + "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/7b193690-25cb-48df-a4f7-c3df7a191e78?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/8e31c99f-1f4c-4e83-b58e-1242b857781d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -240,7 +240,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6d9a5010f4de4587d67e132334cc5939", @@ -249,19 +249,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5bbb665a-8f4c-41fd-ae61-cbd9a28f2297", + "apim-request-id": "3194a3cd-b92a-457f-a303-1fca727b76f2", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:40 GMT", + "Date": "Wed, 04 Nov 2020 13:54:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { - "jobId": "7b193690-25cb-48df-a4f7-c3df7a191e78", - "lastUpdateDateTime": "2020-11-03T20:17:39Z", - "createdDateTime": "2020-11-03T20:17:35Z", - "expirationDateTime": "2020-11-04T20:17:35Z", + "jobId": "8e31c99f-1f4c-4e83-b58e-1242b857781d", + "lastUpdateDateTime": "2020-11-04T13:54:45Z", + "createdDateTime": "2020-11-04T13:54:41Z", + "expirationDateTime": "2020-11-05T13:54:41Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPagination.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPagination.json new file mode 100644 index 0000000000000..45f5b11ec70f4 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPagination.json @@ -0,0 +1,3253 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "3202", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-31e4ed013b24644e8defb009b1762197-d2f0c837fa4ad947-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3d690e65097214462e3994d44b026896", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "1", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "2", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "3", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "4", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "5", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "6", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "7", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "8", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "9", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "10", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "11", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "12", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "13", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "14", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "15", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "16", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "17", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "18", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "19", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "20", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "21", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "22", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "38fb7746-79f7-461b-876b-7ea024840559", + "Date": "Wed, 04 Nov 2020 13:53:56 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/18a55557-4615-4e61-83ec-3bd176879f7c", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "382" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/18a55557-4615-4e61-83ec-3bd176879f7c?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "60014c42eec829d6c5965295103c077f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "30fa34db-bb45-4839-915b-056fa39a0d5c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 04 Nov 2020 13:53:56 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": "18a55557-4615-4e61-83ec-3bd176879f7c", + "lastUpdateDateTime": "2020-11-04T13:53:57Z", + "createdDateTime": "2020-11-04T13:53:56Z", + "expirationDateTime": "2020-11-05T13:53:56Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/18a55557-4615-4e61-83ec-3bd176879f7c?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e6e71e1943fddaaba6e9191ddcfc8d38", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a9495b0e-0157-46bd-a94e-5cfc70a486d9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 04 Nov 2020 13:53:58 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": "18a55557-4615-4e61-83ec-3bd176879f7c", + "lastUpdateDateTime": "2020-11-04T13:53:57Z", + "createdDateTime": "2020-11-04T13:53:56Z", + "expirationDateTime": "2020-11-05T13:53:56Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/18a55557-4615-4e61-83ec-3bd176879f7c?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "6bedcd03a2427620384078dbb7b003f2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ec729b1c-16e3-4753-b974-37d2705f9f06", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 04 Nov 2020 13:53:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "22" + }, + "ResponseBody": { + "jobId": "18a55557-4615-4e61-83ec-3bd176879f7c", + "lastUpdateDateTime": "2020-11-04T13:53:57Z", + "createdDateTime": "2020-11-04T13:53:56Z", + "expirationDateTime": "2020-11-05T13:53:56Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/18a55557-4615-4e61-83ec-3bd176879f7c?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2cba1531821bff99a027b9ded5b94dc9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b9e16146-ae7e-4915-a7f3-b689468eaed0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 04 Nov 2020 13:54:00 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": "18a55557-4615-4e61-83ec-3bd176879f7c", + "lastUpdateDateTime": "2020-11-04T13:53:57Z", + "createdDateTime": "2020-11-04T13:53:56Z", + "expirationDateTime": "2020-11-05T13:53:56Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/18a55557-4615-4e61-83ec-3bd176879f7c?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "439219099c4e763dfe70aebdcbcf23f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c5132152-59bb-41ab-bcb2-5654832c4b57", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 04 Nov 2020 13:54:01 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": "18a55557-4615-4e61-83ec-3bd176879f7c", + "lastUpdateDateTime": "2020-11-04T13:54:01Z", + "createdDateTime": "2020-11-04T13:53:56Z", + "expirationDateTime": "2020-11-05T13:53:56Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/18a55557-4615-4e61-83ec-3bd176879f7c?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c6eb26e66141811d33eeca1ae941a17e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a30e0e5f-1812-4466-9481-7f14dfb8be85", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 04 Nov 2020 13:54:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "170" + }, + "ResponseBody": { + "jobId": "18a55557-4615-4e61-83ec-3bd176879f7c", + "lastUpdateDateTime": "2020-11-04T13:54:02Z", + "createdDateTime": "2020-11-04T13:53:56Z", + "expirationDateTime": "2020-11-05T13:53:56Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/0/entities/0", + "target": "#/results/documents/0/entities/1" + } + ] + }, + { + "id": "1", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/1/entities/0", + "target": "#/results/documents/1/entities/1" + } + ] + }, + { + "id": "2", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/2/entities/0", + "target": "#/results/documents/2/entities/1" + } + ] + }, + { + "id": "3", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/3/entities/0", + "target": "#/results/documents/3/entities/1" + } + ] + }, + { + "id": "4", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/4/entities/0", + "target": "#/results/documents/4/entities/1" + } + ] + }, + { + "id": "5", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/5/entities/0", + "target": "#/results/documents/5/entities/1" + } + ] + }, + { + "id": "6", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/6/entities/0", + "target": "#/results/documents/6/entities/1" + } + ] + }, + { + "id": "7", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/7/entities/0", + "target": "#/results/documents/7/entities/1" + } + ] + }, + { + "id": "8", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/8/entities/0", + "target": "#/results/documents/8/entities/1" + } + ] + }, + { + "id": "9", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/9/entities/0", + "target": "#/results/documents/9/entities/1" + } + ] + }, + { + "id": "10", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/10/entities/0", + "target": "#/results/documents/10/entities/1" + } + ] + }, + { + "id": "11", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/11/entities/0", + "target": "#/results/documents/11/entities/1" + } + ] + }, + { + "id": "12", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/12/entities/0", + "target": "#/results/documents/12/entities/1" + } + ] + }, + { + "id": "13", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/13/entities/0", + "target": "#/results/documents/13/entities/1" + } + ] + }, + { + "id": "14", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/14/entities/0", + "target": "#/results/documents/14/entities/1" + } + ] + }, + { + "id": "15", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/15/entities/0", + "target": "#/results/documents/15/entities/1" + } + ] + }, + { + "id": "16", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/16/entities/0", + "target": "#/results/documents/16/entities/1" + } + ] + }, + { + "id": "17", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/17/entities/0", + "target": "#/results/documents/17/entities/1" + } + ] + }, + { + "id": "18", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/18/entities/0", + "target": "#/results/documents/18/entities/1" + } + ] + }, + { + "id": "19", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/19/entities/0", + "target": "#/results/documents/19/entities/1" + } + ] + } + ], + "errors": [], + "modelVersion": "2020-09-03" + }, + "@nextLink": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/18a55557-4615-4e61-83ec-3bd176879f7c?$skip=20\u0026$top=3" + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/18a55557-4615-4e61-83ec-3bd176879f7c?$top=3\u0026$skip=20", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9dd2aef2c01e95a3d8442daad3dc33d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "10e10433-0118-404b-80b4-9307c9f1856d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 04 Nov 2020 13:54:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "50" + }, + "ResponseBody": { + "jobId": "18a55557-4615-4e61-83ec-3bd176879f7c", + "lastUpdateDateTime": "2020-11-04T13:54:02Z", + "createdDateTime": "2020-11-04T13:53:56Z", + "expirationDateTime": "2020-11-05T13:53:56Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "20", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/0/entities/0", + "target": "#/results/documents/0/entities/1" + } + ] + }, + { + "id": "21", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/1/entities/0", + "target": "#/results/documents/1/entities/1" + } + ] + }, + { + "id": "22", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/2/entities/0", + "target": "#/results/documents/2/entities/1" + } + ] + } + ], + "errors": [], + "modelVersion": "2020-09-03" + } + } + } + ], + "Variables": { + "RandomSeed": "1357450788", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPaginationAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPaginationAsync.json new file mode 100644 index 0000000000000..09206b5fa92f4 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPaginationAsync.json @@ -0,0 +1,3289 @@ +{ + "Entries": [ + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "3202", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-7eaf008dc0ad02439e84b78af03b8976-d8190e78134cdd44-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f142919ab8153bebc5d9f5272ba0209d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "documents": [ + { + "id": "0", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "1", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "2", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "3", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "4", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "5", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "6", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "7", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "8", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "9", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "10", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "11", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "12", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "13", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "14", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "15", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "16", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "17", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "18", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "19", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "20", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "21", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + }, + { + "id": "22", + "text": "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE.", + "language": "en" + } + ] + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "a04ee059-a920-4469-9044-4fe3a95ab99b", + "Date": "Wed, 04 Nov 2020 13:54:46 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eaf23bc9-9e4c-414b-88f5-4061313a5e47", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "392" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eaf23bc9-9e4c-414b-88f5-4061313a5e47?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "abea9627e0cd843f9974ee5faa963225", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5d37844e-9f73-4da6-9344-97979f3a9de6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 04 Nov 2020 13:54:46 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": "eaf23bc9-9e4c-414b-88f5-4061313a5e47", + "lastUpdateDateTime": "2020-11-04T13:54:46Z", + "createdDateTime": "2020-11-04T13:54:46Z", + "expirationDateTime": "2020-11-05T13:54:46Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eaf23bc9-9e4c-414b-88f5-4061313a5e47?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "29e58cf2b8b376a1d7b53c264371cd5a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8f99f643-4665-4127-a846-0d4b40ebb588", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 04 Nov 2020 13:54:47 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": "eaf23bc9-9e4c-414b-88f5-4061313a5e47", + "lastUpdateDateTime": "2020-11-04T13:54:46Z", + "createdDateTime": "2020-11-04T13:54:46Z", + "expirationDateTime": "2020-11-05T13:54:46Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eaf23bc9-9e4c-414b-88f5-4061313a5e47?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ebc37c63c42eb92852bd57a0ca8c902e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "36da7781-17d4-4479-9ebe-c3150c065a3f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 04 Nov 2020 13:54:48 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": "eaf23bc9-9e4c-414b-88f5-4061313a5e47", + "lastUpdateDateTime": "2020-11-04T13:54:46Z", + "createdDateTime": "2020-11-04T13:54:46Z", + "expirationDateTime": "2020-11-05T13:54:46Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eaf23bc9-9e4c-414b-88f5-4061313a5e47?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9f34cfa6f7bb6feaf474d418a4184128", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "002fbcf5-aa6d-4f91-88fc-1e7769b7c458", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 04 Nov 2020 13:54:50 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": "eaf23bc9-9e4c-414b-88f5-4061313a5e47", + "lastUpdateDateTime": "2020-11-04T13:54:46Z", + "createdDateTime": "2020-11-04T13:54:46Z", + "expirationDateTime": "2020-11-05T13:54:46Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eaf23bc9-9e4c-414b-88f5-4061313a5e47?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2efb93a746d22ef7642bd7f66001ab4b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "628ec05e-12ae-41a0-a72b-8ba626695480", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 04 Nov 2020 13:54:51 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": "eaf23bc9-9e4c-414b-88f5-4061313a5e47", + "lastUpdateDateTime": "2020-11-04T13:54:50Z", + "createdDateTime": "2020-11-04T13:54:46Z", + "expirationDateTime": "2020-11-05T13:54:46Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eaf23bc9-9e4c-414b-88f5-4061313a5e47?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "747f0d242e3c6c9f9253f6b9ef0f1539", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2b2c8521-f0dd-41bc-8d0d-6987988451c1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 04 Nov 2020 13:54:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "21" + }, + "ResponseBody": { + "jobId": "eaf23bc9-9e4c-414b-88f5-4061313a5e47", + "lastUpdateDateTime": "2020-11-04T13:54:51Z", + "createdDateTime": "2020-11-04T13:54:46Z", + "expirationDateTime": "2020-11-05T13:54:46Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eaf23bc9-9e4c-414b-88f5-4061313a5e47?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "36f82f7c62905f5bd8053a8f1ff30ef3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1e54bb3e-49e3-4a7b-acf7-8c8780650451", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 04 Nov 2020 13:54:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "176" + }, + "ResponseBody": { + "jobId": "eaf23bc9-9e4c-414b-88f5-4061313a5e47", + "lastUpdateDateTime": "2020-11-04T13:54:52Z", + "createdDateTime": "2020-11-04T13:54:46Z", + "expirationDateTime": "2020-11-05T13:54:46Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "0", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/0/entities/0", + "target": "#/results/documents/0/entities/1" + } + ] + }, + { + "id": "1", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/1/entities/0", + "target": "#/results/documents/1/entities/1" + } + ] + }, + { + "id": "2", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/2/entities/0", + "target": "#/results/documents/2/entities/1" + } + ] + }, + { + "id": "3", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/3/entities/0", + "target": "#/results/documents/3/entities/1" + } + ] + }, + { + "id": "4", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/4/entities/0", + "target": "#/results/documents/4/entities/1" + } + ] + }, + { + "id": "5", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/5/entities/0", + "target": "#/results/documents/5/entities/1" + } + ] + }, + { + "id": "6", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/6/entities/0", + "target": "#/results/documents/6/entities/1" + } + ] + }, + { + "id": "7", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/7/entities/0", + "target": "#/results/documents/7/entities/1" + } + ] + }, + { + "id": "8", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/8/entities/0", + "target": "#/results/documents/8/entities/1" + } + ] + }, + { + "id": "9", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/9/entities/0", + "target": "#/results/documents/9/entities/1" + } + ] + }, + { + "id": "10", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/10/entities/0", + "target": "#/results/documents/10/entities/1" + } + ] + }, + { + "id": "11", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/11/entities/0", + "target": "#/results/documents/11/entities/1" + } + ] + }, + { + "id": "12", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/12/entities/0", + "target": "#/results/documents/12/entities/1" + } + ] + }, + { + "id": "13", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/13/entities/0", + "target": "#/results/documents/13/entities/1" + } + ] + }, + { + "id": "14", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/14/entities/0", + "target": "#/results/documents/14/entities/1" + } + ] + }, + { + "id": "15", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/15/entities/0", + "target": "#/results/documents/15/entities/1" + } + ] + }, + { + "id": "16", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/16/entities/0", + "target": "#/results/documents/16/entities/1" + } + ] + }, + { + "id": "17", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/17/entities/0", + "target": "#/results/documents/17/entities/1" + } + ] + }, + { + "id": "18", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/18/entities/0", + "target": "#/results/documents/18/entities/1" + } + ] + }, + { + "id": "19", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/19/entities/0", + "target": "#/results/documents/19/entities/1" + } + ] + } + ], + "errors": [], + "modelVersion": "2020-09-03" + }, + "@nextLink": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eaf23bc9-9e4c-414b-88f5-4061313a5e47?$skip=20\u0026$top=3" + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eaf23bc9-9e4c-414b-88f5-4061313a5e47?$top=3\u0026$skip=20", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "96f489c8cc9879ebf48f9c7e4f3d3e54", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0bd341fb-bc4f-41aa-9fcf-cb4d81b06bf3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 04 Nov 2020 13:54:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "47" + }, + "ResponseBody": { + "jobId": "eaf23bc9-9e4c-414b-88f5-4061313a5e47", + "lastUpdateDateTime": "2020-11-04T13:54:52Z", + "createdDateTime": "2020-11-04T13:54:46Z", + "expirationDateTime": "2020-11-05T13:54:46Z", + "status": "succeeded", + "errors": [], + "results": { + "documents": [ + { + "id": "20", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/0/entities/0", + "target": "#/results/documents/0/entities/1" + } + ] + }, + { + "id": "21", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/1/entities/0", + "target": "#/results/documents/1/entities/1" + } + ] + }, + { + "id": "22", + "statistics": { + "charactersCount": 101, + "transactionsCount": 1 + }, + "entities": [ + { + "offset": 63, + "length": 11, + "text": "12:00:00 AM", + "category": "Time", + "confidenceScore": 1.0, + "isNegated": false + }, + { + "offset": 77, + "length": 23, + "text": "CORONARY ARTERY DISEASE", + "category": "Diagnosis", + "confidenceScore": 1.0, + "isNegated": false, + "links": [ + { + "dataSource": "UMLS", + "id": "C1956346" + }, + { + "dataSource": "AOD", + "id": "0000005327" + }, + { + "dataSource": "BI", + "id": "BI00010" + }, + { + "dataSource": "CCPSS", + "id": "0037465" + }, + { + "dataSource": "CSP", + "id": "1393-3397" + }, + { + "dataSource": "CST", + "id": "CORONARY ART DIS" + }, + { + "dataSource": "DXP", + "id": "U000871" + }, + { + "dataSource": "HPO", + "id": "HP:0001677" + }, + { + "dataSource": "ICPC2ICD10ENG", + "id": "MTHU019520" + }, + { + "dataSource": "ICPC2P", + "id": "K76003" + }, + { + "dataSource": "LNC", + "id": "LP90122-0" + }, + { + "dataSource": "MDR", + "id": "10011078" + }, + { + "dataSource": "MEDCIN", + "id": "35988" + }, + { + "dataSource": "MEDLINEPLUS", + "id": "1276" + }, + { + "dataSource": "MSH", + "id": "D003324" + }, + { + "dataSource": "NCI", + "id": "C26732" + }, + { + "dataSource": "NCI_NCI-GLOSS", + "id": "CDR0000439400" + }, + { + "dataSource": "OMIM", + "id": "MTHU002067" + }, + { + "dataSource": "RCD", + "id": "XE2uV" + }, + { + "dataSource": "SNMI", + "id": "D3-13000" + }, + { + "dataSource": "SNOMEDCT_US", + "id": "414024009" + }, + { + "dataSource": "WHO", + "id": "0426" + } + ] + } + ], + "relations": [ + { + "relationType": "TimeOfCondition", + "bidirectional": false, + "source": "#/results/documents/2/entities/0", + "target": "#/results/documents/2/entities/1" + } + ] + } + ], + "errors": [], + "modelVersion": "2020-09-03" + } + } + } + ], + "Variables": { + "RandomSeed": "386709158", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json index 7c07698d07c0e..88b65956eef6f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-719c12ee76a6644ead5a77dbb4f601a3-59dcb13da8f82c48-00", + "traceparent": "00-e59c10e9c290344391473391b8e1b74b-07fd4f903063b947-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8ec3c90b7880bba55b75abdb84a19321", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "7fbd40b9-4dea-41b5-ab31-4b4259823d77", - "Date": "Tue, 03 Nov 2020 20:16:54 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2667ec97-5371-45de-9d8b-c98da3244a74", + "apim-request-id": "b46c4f61-fbe8-4870-8739-a06b29cd92a0", + "Date": "Wed, 04 Nov 2020 13:54:02 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/7252c380-e5d4-45db-8d76-39d23dfebb12", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "76" + "x-envoy-upstream-service-time": "146" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2667ec97-5371-45de-9d8b-c98da3244a74?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/7252c380-e5d4-45db-8d76-39d23dfebb12?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "56fe48ebb003114e437c6f5c1a23295d", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "76e43535-f8ac-4b68-8560-08159689fbc0", + "apim-request-id": "03e006c8-1941-47ae-ac33-8bfef7a79591", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:54 GMT", + "Date": "Wed, 04 Nov 2020 13:54:02 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": "2667ec97-5371-45de-9d8b-c98da3244a74", - "lastUpdateDateTime": "2020-11-03T20:16:54Z", - "createdDateTime": "2020-11-03T20:16:54Z", - "expirationDateTime": "2020-11-04T20:16:54Z", + "jobId": "7252c380-e5d4-45db-8d76-39d23dfebb12", + "lastUpdateDateTime": "2020-11-04T13:54:02Z", + "createdDateTime": "2020-11-04T13:54:02Z", + "expirationDateTime": "2020-11-05T13:54:02Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2667ec97-5371-45de-9d8b-c98da3244a74?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/7252c380-e5d4-45db-8d76-39d23dfebb12?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e2f12bb5a78a8d006ec8d88886d7049c", @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b007d272-9cbe-472b-8886-c5e726e7064a", + "apim-request-id": "86f52efe-1684-4e3b-ac28-ad472898d821", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:55 GMT", + "Date": "Wed, 04 Nov 2020 13:54:03 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": "2667ec97-5371-45de-9d8b-c98da3244a74", - "lastUpdateDateTime": "2020-11-03T20:16:54Z", - "createdDateTime": "2020-11-03T20:16:54Z", - "expirationDateTime": "2020-11-04T20:16:54Z", + "jobId": "7252c380-e5d4-45db-8d76-39d23dfebb12", + "lastUpdateDateTime": "2020-11-04T13:54:02Z", + "createdDateTime": "2020-11-04T13:54:02Z", + "expirationDateTime": "2020-11-05T13:54:02Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2667ec97-5371-45de-9d8b-c98da3244a74?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/7252c380-e5d4-45db-8d76-39d23dfebb12?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -127,7 +127,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c7d5601dc12e5b3c7ab14a040948a137", @@ -136,25 +136,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "05d4b305-641f-4b8c-9434-3e28c2fa6ca2", + "apim-request-id": "ca37174c-a583-48d7-9b3b-41c9b099a404", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:56 GMT", + "Date": "Wed, 04 Nov 2020 13:54:04 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": "2667ec97-5371-45de-9d8b-c98da3244a74", - "lastUpdateDateTime": "2020-11-03T20:16:54Z", - "createdDateTime": "2020-11-03T20:16:54Z", - "expirationDateTime": "2020-11-04T20:16:54Z", + "jobId": "7252c380-e5d4-45db-8d76-39d23dfebb12", + "lastUpdateDateTime": "2020-11-04T13:54:02Z", + "createdDateTime": "2020-11-04T13:54:02Z", + "expirationDateTime": "2020-11-05T13:54:02Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2667ec97-5371-45de-9d8b-c98da3244a74?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/7252c380-e5d4-45db-8d76-39d23dfebb12?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -163,7 +163,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "59254d4cb0b043964770e83ad7c68b6c", @@ -172,91 +172,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9fd361c5-21d2-4624-be46-d26700f5e1c8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:57 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": "2667ec97-5371-45de-9d8b-c98da3244a74", - "lastUpdateDateTime": "2020-11-03T20:16:54Z", - "createdDateTime": "2020-11-03T20:16:54Z", - "expirationDateTime": "2020-11-04T20:16:54Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2667ec97-5371-45de-9d8b-c98da3244a74?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b93fd277614ef42fee9567d95dfc8425", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8bd0916d-4232-40b4-a403-2b968b91ad5a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:58 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": "2667ec97-5371-45de-9d8b-c98da3244a74", - "lastUpdateDateTime": "2020-11-03T20:16:54Z", - "createdDateTime": "2020-11-03T20:16:54Z", - "expirationDateTime": "2020-11-04T20:16:54Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/2667ec97-5371-45de-9d8b-c98da3244a74?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "383ba127abb16cecc99180bdd90184b4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ad67c49c-71dc-42db-8dce-bbe0c6956421", + "apim-request-id": "4e1321f3-1211-4034-8060-25c5e73d0469", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:59 GMT", + "Date": "Wed, 04 Nov 2020 13:54:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { - "jobId": "2667ec97-5371-45de-9d8b-c98da3244a74", - "lastUpdateDateTime": "2020-11-03T20:16:59Z", - "createdDateTime": "2020-11-03T20:16:54Z", - "expirationDateTime": "2020-11-04T20:16:54Z", + "jobId": "7252c380-e5d4-45db-8d76-39d23dfebb12", + "lastUpdateDateTime": "2020-11-04T13:54:05Z", + "createdDateTime": "2020-11-04T13:54:02Z", + "expirationDateTime": "2020-11-05T13:54:02Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json index 2d0be2c1ff1cb..d901294bea021 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8855f46a6a6e7f4f826e67958575ab88-a4653a0b355ac244-00", + "traceparent": "00-3e948dec09896f4f8c6c4ec73b12a2f0-5dccaedfb3e65847-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cb820fc464b79dcc9212329646bf509a", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "0f4b8d78-8df3-4074-bf68-bfa4eb69cd22", - "Date": "Tue, 03 Nov 2020 20:17:40 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/c1a5a704-444e-4b36-8685-dbab8bf459ea", + "apim-request-id": "7b65cecb-5c90-45b7-91c7-ce1922b32b41", + "Date": "Wed, 04 Nov 2020 13:54:53 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/597e568d-9a51-4c84-a414-81794acb40aa", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "78" + "x-envoy-upstream-service-time": "122" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/c1a5a704-444e-4b36-8685-dbab8bf459ea?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/597e568d-9a51-4c84-a414-81794acb40aa?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "08d18cd76fa1ba75ad5e5758b7de00e4", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d8912d30-489c-4d45-8e26-6960f0304061", + "apim-request-id": "b02479dd-d238-465e-adf4-ec4ccf0e1bcd", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:40 GMT", + "Date": "Wed, 04 Nov 2020 13:54:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "c1a5a704-444e-4b36-8685-dbab8bf459ea", - "lastUpdateDateTime": "2020-11-03T20:17:40Z", - "createdDateTime": "2020-11-03T20:17:40Z", - "expirationDateTime": "2020-11-04T20:17:40Z", + "jobId": "597e568d-9a51-4c84-a414-81794acb40aa", + "lastUpdateDateTime": "2020-11-04T13:54:53Z", + "createdDateTime": "2020-11-04T13:54:53Z", + "expirationDateTime": "2020-11-05T13:54:53Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/c1a5a704-444e-4b36-8685-dbab8bf459ea?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/597e568d-9a51-4c84-a414-81794acb40aa?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2ac480b3f6758c758bf3f8f60a589915", @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fa2de576-6cf7-4179-a9c9-c303b973eb02", + "apim-request-id": "20bf0a7c-1fd9-4fdf-b815-a8e29474086a", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:41 GMT", + "Date": "Wed, 04 Nov 2020 13:54:54 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": "c1a5a704-444e-4b36-8685-dbab8bf459ea", - "lastUpdateDateTime": "2020-11-03T20:17:40Z", - "createdDateTime": "2020-11-03T20:17:40Z", - "expirationDateTime": "2020-11-04T20:17:40Z", + "jobId": "597e568d-9a51-4c84-a414-81794acb40aa", + "lastUpdateDateTime": "2020-11-04T13:54:53Z", + "createdDateTime": "2020-11-04T13:54:53Z", + "expirationDateTime": "2020-11-05T13:54:53Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/c1a5a704-444e-4b36-8685-dbab8bf459ea?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/597e568d-9a51-4c84-a414-81794acb40aa?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -127,7 +127,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4456bc1eb361546e99c71e580d73e5b3", @@ -136,25 +136,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bda49f65-013c-4c54-a75e-a27e3c2c5b0f", + "apim-request-id": "6a84acf2-b614-4743-a07c-9e49955c4337", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:42 GMT", + "Date": "Wed, 04 Nov 2020 13:54:55 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": "16" }, "ResponseBody": { - "jobId": "c1a5a704-444e-4b36-8685-dbab8bf459ea", - "lastUpdateDateTime": "2020-11-03T20:17:40Z", - "createdDateTime": "2020-11-03T20:17:40Z", - "expirationDateTime": "2020-11-04T20:17:40Z", + "jobId": "597e568d-9a51-4c84-a414-81794acb40aa", + "lastUpdateDateTime": "2020-11-04T13:54:53Z", + "createdDateTime": "2020-11-04T13:54:53Z", + "expirationDateTime": "2020-11-05T13:54:53Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/c1a5a704-444e-4b36-8685-dbab8bf459ea?showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/597e568d-9a51-4c84-a414-81794acb40aa?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -163,7 +163,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c5e24e1225fae02416447dad777faf54", @@ -172,55 +172,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9cb9bcc0-8c7f-4c09-8c72-b65145150455", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:43 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": "c1a5a704-444e-4b36-8685-dbab8bf459ea", - "lastUpdateDateTime": "2020-11-03T20:17:40Z", - "createdDateTime": "2020-11-03T20:17:40Z", - "expirationDateTime": "2020-11-04T20:17:40Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/c1a5a704-444e-4b36-8685-dbab8bf459ea?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "fa3a41c5bb88ff82117090aed71d7e17", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3e0725bb-2bd9-4757-a08a-163a5ae72156", + "apim-request-id": "ed6ece4d-5948-4fe8-aa2e-c0653d15f9cf", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:44 GMT", + "Date": "Wed, 04 Nov 2020 13:54:56 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": "42" }, "ResponseBody": { - "jobId": "c1a5a704-444e-4b36-8685-dbab8bf459ea", - "lastUpdateDateTime": "2020-11-03T20:17:44Z", - "createdDateTime": "2020-11-03T20:17:40Z", - "expirationDateTime": "2020-11-04T20:17:40Z", + "jobId": "597e568d-9a51-4c84-a414-81794acb40aa", + "lastUpdateDateTime": "2020-11-04T13:54:55Z", + "createdDateTime": "2020-11-04T13:54:53Z", + "expirationDateTime": "2020-11-05T13:54:53Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json index ad00d6a02998e..8ad711c8adb63 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json @@ -11,9 +11,9 @@ "Content-Length": "100", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-deefe562f917064a8f0a7823b176bf4e-315f895ba1ee5c43-00", + "traceparent": "00-66e2914212b33f4b94b915544858c3e4-03ef1afe56d9ed48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e51cbf87a321df02032925de5e6708b4", @@ -30,18 +30,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "bf02a0b8-8c9f-47d1-9d71-1b688ec13967", - "Date": "Tue, 03 Nov 2020 20:16:59 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ad686c50-e3ad-483e-8be7-d6a7fb1de5e5", + "apim-request-id": "1b452f00-26d4-4511-a46a-b7dfd85d90df", + "Date": "Wed, 04 Nov 2020 13:54:06 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/97f1a4df-b0df-4e32-8add-392dea8d6d9d", "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": "80" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ad686c50-e3ad-483e-8be7-d6a7fb1de5e5", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/97f1a4df-b0df-4e32-8add-392dea8d6d9d", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -50,7 +50,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2cdb69530701f208f175aa6a97e2593b", @@ -59,25 +59,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "73bea8fb-4f37-468a-a66f-7c29900adcb9", + "apim-request-id": "41d42260-b1fe-4a5c-a4db-e450f8fcdc37", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:16:59 GMT", + "Date": "Wed, 04 Nov 2020 13:54:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "ad686c50-e3ad-483e-8be7-d6a7fb1de5e5", - "lastUpdateDateTime": "2020-11-03T20:17:00Z", - "createdDateTime": "2020-11-03T20:16:59Z", - "expirationDateTime": "2020-11-04T20:16:59Z", + "jobId": "97f1a4df-b0df-4e32-8add-392dea8d6d9d", + "lastUpdateDateTime": "2020-11-04T13:54:06Z", + "createdDateTime": "2020-11-04T13:54:06Z", + "expirationDateTime": "2020-11-05T13:54:06Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ad686c50-e3ad-483e-8be7-d6a7fb1de5e5", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/97f1a4df-b0df-4e32-8add-392dea8d6d9d", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -86,7 +86,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a701cb20bb11a529608aebe12f36a48e", @@ -95,25 +95,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f7b300b4-8fd3-40f2-ac4b-4b1040d33923", + "apim-request-id": "ef6e332f-e4a5-40b7-84b4-92e1ee72ad99", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:01 GMT", + "Date": "Wed, 04 Nov 2020 13:54:07 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": "ad686c50-e3ad-483e-8be7-d6a7fb1de5e5", - "lastUpdateDateTime": "2020-11-03T20:17:00Z", - "createdDateTime": "2020-11-03T20:16:59Z", - "expirationDateTime": "2020-11-04T20:16:59Z", + "jobId": "97f1a4df-b0df-4e32-8add-392dea8d6d9d", + "lastUpdateDateTime": "2020-11-04T13:54:06Z", + "createdDateTime": "2020-11-04T13:54:06Z", + "expirationDateTime": "2020-11-05T13:54:06Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ad686c50-e3ad-483e-8be7-d6a7fb1de5e5", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/97f1a4df-b0df-4e32-8add-392dea8d6d9d", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -122,7 +122,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "03c09e10ea8d7fc1b629f4abf8984821", @@ -131,25 +131,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2794a6ea-6a83-4614-bc4b-1e572637241e", + "apim-request-id": "7525ef71-cb1c-480b-a189-12162966609b", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:02 GMT", + "Date": "Wed, 04 Nov 2020 13:54:08 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": "ad686c50-e3ad-483e-8be7-d6a7fb1de5e5", - "lastUpdateDateTime": "2020-11-03T20:17:00Z", - "createdDateTime": "2020-11-03T20:16:59Z", - "expirationDateTime": "2020-11-04T20:16:59Z", + "jobId": "97f1a4df-b0df-4e32-8add-392dea8d6d9d", + "lastUpdateDateTime": "2020-11-04T13:54:06Z", + "createdDateTime": "2020-11-04T13:54:06Z", + "expirationDateTime": "2020-11-05T13:54:06Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ad686c50-e3ad-483e-8be7-d6a7fb1de5e5", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/97f1a4df-b0df-4e32-8add-392dea8d6d9d", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -158,7 +158,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "93bde9d0616598a24035cb771c26c3ba", @@ -167,25 +167,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "756cad3c-2540-4c3d-b33f-bc46efd3dc85", + "apim-request-id": "26114e95-736f-4f4e-b5f7-bcf9373b61b4", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:03 GMT", + "Date": "Wed, 04 Nov 2020 13:54:09 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": "ad686c50-e3ad-483e-8be7-d6a7fb1de5e5", - "lastUpdateDateTime": "2020-11-03T20:17:00Z", - "createdDateTime": "2020-11-03T20:16:59Z", - "expirationDateTime": "2020-11-04T20:16:59Z", + "jobId": "97f1a4df-b0df-4e32-8add-392dea8d6d9d", + "lastUpdateDateTime": "2020-11-04T13:54:06Z", + "createdDateTime": "2020-11-04T13:54:06Z", + "expirationDateTime": "2020-11-05T13:54:06Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ad686c50-e3ad-483e-8be7-d6a7fb1de5e5", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/97f1a4df-b0df-4e32-8add-392dea8d6d9d", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -194,7 +194,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f8591cd0562136ad0a82f0e8c77dacc7", @@ -203,25 +203,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5bfd4d4d-1745-4068-9664-58865cc918cc", + "apim-request-id": "6ad1d741-80bb-485c-b61b-b4cf5640df80", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:04 GMT", + "Date": "Wed, 04 Nov 2020 13:54:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "ad686c50-e3ad-483e-8be7-d6a7fb1de5e5", - "lastUpdateDateTime": "2020-11-03T20:17:04Z", - "createdDateTime": "2020-11-03T20:16:59Z", - "expirationDateTime": "2020-11-04T20:16:59Z", - "status": "running", + "jobId": "97f1a4df-b0df-4e32-8add-392dea8d6d9d", + "lastUpdateDateTime": "2020-11-04T13:54:06Z", + "createdDateTime": "2020-11-04T13:54:06Z", + "expirationDateTime": "2020-11-05T13:54:06Z", + "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ad686c50-e3ad-483e-8be7-d6a7fb1de5e5", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/97f1a4df-b0df-4e32-8add-392dea8d6d9d", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -230,7 +230,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4511ca421179ae28fc28c2571f4a628f", @@ -239,19 +239,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ec742301-41a3-4fb4-85bc-6d953086fa8a", + "apim-request-id": "b5eec320-0696-4b37-8134-1db3d3fc1515", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:05 GMT", + "Date": "Wed, 04 Nov 2020 13:54:11 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": "77" }, "ResponseBody": { - "jobId": "ad686c50-e3ad-483e-8be7-d6a7fb1de5e5", - "lastUpdateDateTime": "2020-11-03T20:17:04Z", - "createdDateTime": "2020-11-03T20:16:59Z", - "expirationDateTime": "2020-11-04T20:16:59Z", + "jobId": "97f1a4df-b0df-4e32-8add-392dea8d6d9d", + "lastUpdateDateTime": "2020-11-04T13:54:10Z", + "createdDateTime": "2020-11-04T13:54:06Z", + "expirationDateTime": "2020-11-05T13:54:06Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json index b2710c008c3a9..8068fe193d203 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "100", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4463721b4babd644b9211d6c0bf12dad-d3084bef4850544e-00", + "traceparent": "00-5000d6b6c115ec4281975c272dc0ebe0-1272cb570cc5cf4b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "acdb13842ca5b9295fa84adf0c4870a8", @@ -30,18 +30,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "40402ef9-19d2-410a-9dc6-ed374e6a71dc", - "Date": "Tue, 03 Nov 2020 20:18:12 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/77d9141b-19c4-4a9c-a9b4-a1ac6ca69aa9", + "apim-request-id": "0b6ac987-6c44-4757-919a-27f3da800512", + "Date": "Wed, 04 Nov 2020 13:54:56 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/31423846-9118-482c-a16f-6dcdf40201eb", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "111" + "x-envoy-upstream-service-time": "70" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/77d9141b-19c4-4a9c-a9b4-a1ac6ca69aa9", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/31423846-9118-482c-a16f-6dcdf40201eb", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -50,7 +50,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1181511460ff1ed085a4ba80632c2cfd", @@ -59,25 +59,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "433420c0-980a-4a5d-b668-311c4a28d2a0", + "apim-request-id": "4242ea96-f419-4ab2-8375-ec8686b4493e", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:18:12 GMT", + "Date": "Wed, 04 Nov 2020 13:54:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "77d9141b-19c4-4a9c-a9b4-a1ac6ca69aa9", - "lastUpdateDateTime": "2020-11-03T20:18:13Z", - "createdDateTime": "2020-11-03T20:18:13Z", - "expirationDateTime": "2020-11-04T20:18:13Z", + "jobId": "31423846-9118-482c-a16f-6dcdf40201eb", + "lastUpdateDateTime": "2020-11-04T13:54:56Z", + "createdDateTime": "2020-11-04T13:54:56Z", + "expirationDateTime": "2020-11-05T13:54:56Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/77d9141b-19c4-4a9c-a9b4-a1ac6ca69aa9", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/31423846-9118-482c-a16f-6dcdf40201eb", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -86,7 +86,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d0605b7dc709a544ca5e0c1b0401dc1e", @@ -95,19 +95,163 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7cdbad3d-1e87-4a86-89ff-a7db10844cd8", + "apim-request-id": "bcaadd8b-e6a3-4270-99d1-0123b0f428b6", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:18:14 GMT", + "Date": "Wed, 04 Nov 2020 13:54:57 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": "31423846-9118-482c-a16f-6dcdf40201eb", + "lastUpdateDateTime": "2020-11-04T13:54:56Z", + "createdDateTime": "2020-11-04T13:54:56Z", + "expirationDateTime": "2020-11-05T13:54:56Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/31423846-9118-482c-a16f-6dcdf40201eb", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b5e59345e53b24c743bd270071a85633", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2b3ee81e-5c7d-4c74-8875-f70b8b721f17", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 04 Nov 2020 13:54:58 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": "31423846-9118-482c-a16f-6dcdf40201eb", + "lastUpdateDateTime": "2020-11-04T13:54:56Z", + "createdDateTime": "2020-11-04T13:54:56Z", + "expirationDateTime": "2020-11-05T13:54:56Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/31423846-9118-482c-a16f-6dcdf40201eb", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b0624d7ba0e84c9f0cdc46a153b41a84", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6297f13a-4602-4f71-a434-bed9393b77ab", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 04 Nov 2020 13:54:59 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": "31423846-9118-482c-a16f-6dcdf40201eb", + "lastUpdateDateTime": "2020-11-04T13:54:56Z", + "createdDateTime": "2020-11-04T13:54:56Z", + "expirationDateTime": "2020-11-05T13:54:56Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/31423846-9118-482c-a16f-6dcdf40201eb", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d03b9cc7774697c2943b8c4ca0433322", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c2af7a81-ef50-4cb3-90f2-f7a2ae368968", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 04 Nov 2020 13:55:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "32" + }, + "ResponseBody": { + "jobId": "31423846-9118-482c-a16f-6dcdf40201eb", + "lastUpdateDateTime": "2020-11-04T13:55:00Z", + "createdDateTime": "2020-11-04T13:54:56Z", + "expirationDateTime": "2020-11-05T13:54:56Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/31423846-9118-482c-a16f-6dcdf40201eb", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b79fd9072b9ea435f498a85e9e26d18e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bb0e62ff-7ba5-41a6-b94c-5bf9ebca1b5a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 04 Nov 2020 13:55:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "34" }, "ResponseBody": { - "jobId": "77d9141b-19c4-4a9c-a9b4-a1ac6ca69aa9", - "lastUpdateDateTime": "2020-11-03T20:18:14Z", - "createdDateTime": "2020-11-03T20:18:13Z", - "expirationDateTime": "2020-11-04T20:18:13Z", + "jobId": "31423846-9118-482c-a16f-6dcdf40201eb", + "lastUpdateDateTime": "2020-11-04T13:55:00Z", + "createdDateTime": "2020-11-04T13:54:56Z", + "expirationDateTime": "2020-11-05T13:54:56Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json index 1410bee1b0e86..a9246703aa2b3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json @@ -11,9 +11,9 @@ "Content-Length": "100", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f9453deb4f9d8c43b2d986e92913e601-243cca994f20654f-00", + "traceparent": "00-3ff17d440a6a0b43ac45f763388865c8-4d84a95438cfd145-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0e649e128b084513c9c62e584c5f813b", @@ -30,18 +30,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "0870f224-4253-4f75-ac6c-f2c414a25b7f", - "Date": "Tue, 03 Nov 2020 20:17:05 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/293e5e5d-cece-4051-a284-e9884e2f702d", + "apim-request-id": "d2c5b6fb-f648-40ff-bea3-17bb246991bb", + "Date": "Wed, 04 Nov 2020 13:54:11 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/1c594951-c54a-44c6-ad34-2367ed5cc44a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "65" + "x-envoy-upstream-service-time": "74" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/293e5e5d-cece-4051-a284-e9884e2f702d?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/1c594951-c54a-44c6-ad34-2367ed5cc44a?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -50,7 +50,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "796705c1528f3adf8bba34f0a8f2bd37", @@ -59,25 +59,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "069bd675-6913-4051-9289-6feabdb0a341", + "apim-request-id": "793c2a20-157d-40d3-abb9-4fb38bb33be9", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:05 GMT", + "Date": "Wed, 04 Nov 2020 13:54:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "5" }, "ResponseBody": { - "jobId": "293e5e5d-cece-4051-a284-e9884e2f702d", - "lastUpdateDateTime": "2020-11-03T20:17:05Z", - "createdDateTime": "2020-11-03T20:17:05Z", - "expirationDateTime": "2020-11-04T20:17:05Z", + "jobId": "1c594951-c54a-44c6-ad34-2367ed5cc44a", + "lastUpdateDateTime": "2020-11-04T13:54:11Z", + "createdDateTime": "2020-11-04T13:54:11Z", + "expirationDateTime": "2020-11-05T13:54:11Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/293e5e5d-cece-4051-a284-e9884e2f702d?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/1c594951-c54a-44c6-ad34-2367ed5cc44a?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -86,7 +86,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "740ea8ad2ce006c130b149d1ae645358", @@ -95,25 +95,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4acc8b5d-b04c-476a-b112-55b4a364f5f6", + "apim-request-id": "92fdd494-b28a-492f-9c58-2555b051a232", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:06 GMT", + "Date": "Wed, 04 Nov 2020 13:54:12 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": "293e5e5d-cece-4051-a284-e9884e2f702d", - "lastUpdateDateTime": "2020-11-03T20:17:05Z", - "createdDateTime": "2020-11-03T20:17:05Z", - "expirationDateTime": "2020-11-04T20:17:05Z", + "jobId": "1c594951-c54a-44c6-ad34-2367ed5cc44a", + "lastUpdateDateTime": "2020-11-04T13:54:11Z", + "createdDateTime": "2020-11-04T13:54:11Z", + "expirationDateTime": "2020-11-05T13:54:11Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/293e5e5d-cece-4051-a284-e9884e2f702d?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/1c594951-c54a-44c6-ad34-2367ed5cc44a?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -122,7 +122,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "07effce6ecdcc068be2a834d57229cd7", @@ -131,25 +131,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a6c5bab9-8fc0-4431-b1c1-b11d649dfa99", + "apim-request-id": "6923f6ed-2e99-4c64-b098-1902a9a0606e", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:07 GMT", + "Date": "Wed, 04 Nov 2020 13:54:13 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": "6" }, "ResponseBody": { - "jobId": "293e5e5d-cece-4051-a284-e9884e2f702d", - "lastUpdateDateTime": "2020-11-03T20:17:05Z", - "createdDateTime": "2020-11-03T20:17:05Z", - "expirationDateTime": "2020-11-04T20:17:05Z", + "jobId": "1c594951-c54a-44c6-ad34-2367ed5cc44a", + "lastUpdateDateTime": "2020-11-04T13:54:11Z", + "createdDateTime": "2020-11-04T13:54:11Z", + "expirationDateTime": "2020-11-05T13:54:11Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/293e5e5d-cece-4051-a284-e9884e2f702d?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/1c594951-c54a-44c6-ad34-2367ed5cc44a?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -158,7 +158,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a4abf7090d51955a436148dd080e8c26", @@ -167,25 +167,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4048c283-15dc-4682-94c1-c52782bfdac9", + "apim-request-id": "dd077f20-b8d0-451a-839f-cc2ed3d8a743", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:08 GMT", + "Date": "Wed, 04 Nov 2020 13:54:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "293e5e5d-cece-4051-a284-e9884e2f702d", - "lastUpdateDateTime": "2020-11-03T20:17:05Z", - "createdDateTime": "2020-11-03T20:17:05Z", - "expirationDateTime": "2020-11-04T20:17:05Z", + "jobId": "1c594951-c54a-44c6-ad34-2367ed5cc44a", + "lastUpdateDateTime": "2020-11-04T13:54:11Z", + "createdDateTime": "2020-11-04T13:54:11Z", + "expirationDateTime": "2020-11-05T13:54:11Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/293e5e5d-cece-4051-a284-e9884e2f702d?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/1c594951-c54a-44c6-ad34-2367ed5cc44a?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -194,7 +194,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ac0adb67b502c15a3f4db5b5a873ae0e", @@ -203,19 +203,55 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f625a558-17c6-48e3-b663-f73e11b748c7", + "apim-request-id": "a4a44d08-bc70-4bba-9845-ef68c5dfeb8b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 04 Nov 2020 13:54:15 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": "1c594951-c54a-44c6-ad34-2367ed5cc44a", + "lastUpdateDateTime": "2020-11-04T13:54:11Z", + "createdDateTime": "2020-11-04T13:54:11Z", + "expirationDateTime": "2020-11-05T13:54:11Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/1c594951-c54a-44c6-ad34-2367ed5cc44a?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b6c77215aeb9d807a159c37ba38bb7b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e3d91200-a6bf-4878-a266-dd0691415cd5", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:09 GMT", + "Date": "Wed, 04 Nov 2020 13:54:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { - "jobId": "293e5e5d-cece-4051-a284-e9884e2f702d", - "lastUpdateDateTime": "2020-11-03T20:17:09Z", - "createdDateTime": "2020-11-03T20:17:05Z", - "expirationDateTime": "2020-11-04T20:17:05Z", + "jobId": "1c594951-c54a-44c6-ad34-2367ed5cc44a", + "lastUpdateDateTime": "2020-11-04T13:54:15Z", + "createdDateTime": "2020-11-04T13:54:11Z", + "expirationDateTime": "2020-11-05T13:54:11Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json index 3d4775252ac60..184a80bafe4ba 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "100", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bee725831a9b3342bb37745a31fa89b9-58f663889df8454f-00", + "traceparent": "00-753cde7bdfc75c4dbdc8dc617deccc3a-bf53216a87705542-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ac50657e0564f29f4cf677ed0a13f18a", @@ -30,18 +30,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "676a713d-1dfc-478c-9ebb-d41bb16b5a05", - "Date": "Tue, 03 Nov 2020 20:17:44 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b70e23d3-dc51-4df2-8bab-4c8961b8e510", + "apim-request-id": "d2b40481-6f27-4f73-86fe-81f8b485017f", + "Date": "Wed, 04 Nov 2020 13:55:01 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/608ec3b3-9d73-4273-b85d-aad9bd11bf0c", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "69" + "x-envoy-upstream-service-time": "66" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b70e23d3-dc51-4df2-8bab-4c8961b8e510?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/608ec3b3-9d73-4273-b85d-aad9bd11bf0c?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -50,7 +50,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ee06e8ec9851bf144fa0b3348eac9147", @@ -59,25 +59,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b9878659-0104-46b8-b32c-1513eaccaf83", + "apim-request-id": "79ef1955-8d97-4037-a331-37257047c2eb", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:44 GMT", + "Date": "Wed, 04 Nov 2020 13:55: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": "7" }, "ResponseBody": { - "jobId": "b70e23d3-dc51-4df2-8bab-4c8961b8e510", - "lastUpdateDateTime": "2020-11-03T20:17:44Z", - "createdDateTime": "2020-11-03T20:17:44Z", - "expirationDateTime": "2020-11-04T20:17:44Z", + "jobId": "608ec3b3-9d73-4273-b85d-aad9bd11bf0c", + "lastUpdateDateTime": "2020-11-04T13:55:02Z", + "createdDateTime": "2020-11-04T13:55:01Z", + "expirationDateTime": "2020-11-05T13:55:01Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b70e23d3-dc51-4df2-8bab-4c8961b8e510?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/608ec3b3-9d73-4273-b85d-aad9bd11bf0c?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -86,7 +86,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c56f00a8f06aed051c550a52700d0abf", @@ -95,25 +95,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "492e274f-44d2-4190-8488-bd48eb3b09e6", + "apim-request-id": "5d5c41ce-5730-4730-a55c-758625da0d5e", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:45 GMT", + "Date": "Wed, 04 Nov 2020 13:55:03 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": "b70e23d3-dc51-4df2-8bab-4c8961b8e510", - "lastUpdateDateTime": "2020-11-03T20:17:44Z", - "createdDateTime": "2020-11-03T20:17:44Z", - "expirationDateTime": "2020-11-04T20:17:44Z", + "jobId": "608ec3b3-9d73-4273-b85d-aad9bd11bf0c", + "lastUpdateDateTime": "2020-11-04T13:55:02Z", + "createdDateTime": "2020-11-04T13:55:01Z", + "expirationDateTime": "2020-11-05T13:55:01Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b70e23d3-dc51-4df2-8bab-4c8961b8e510?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/608ec3b3-9d73-4273-b85d-aad9bd11bf0c?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -122,7 +122,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c9cabda7fe2ee58e51915dc3526b639f", @@ -131,25 +131,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "628ab94f-b08d-4975-a1b3-03253b285524", + "apim-request-id": "a3bdc80a-1545-4360-b437-854c401f4e26", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:46 GMT", + "Date": "Wed, 04 Nov 2020 13:55:04 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": "b70e23d3-dc51-4df2-8bab-4c8961b8e510", - "lastUpdateDateTime": "2020-11-03T20:17:44Z", - "createdDateTime": "2020-11-03T20:17:44Z", - "expirationDateTime": "2020-11-04T20:17:44Z", + "jobId": "608ec3b3-9d73-4273-b85d-aad9bd11bf0c", + "lastUpdateDateTime": "2020-11-04T13:55:02Z", + "createdDateTime": "2020-11-04T13:55:01Z", + "expirationDateTime": "2020-11-05T13:55:01Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b70e23d3-dc51-4df2-8bab-4c8961b8e510?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/608ec3b3-9d73-4273-b85d-aad9bd11bf0c?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -158,7 +158,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "094430652ca3fb20e319d1fb8ec14f41", @@ -167,25 +167,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cd1221c1-a615-40d8-a918-35efd2cea09a", + "apim-request-id": "44d2f7e7-3894-4fb9-a0cb-5c9894a2ac74", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:47 GMT", + "Date": "Wed, 04 Nov 2020 13:55:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { - "jobId": "b70e23d3-dc51-4df2-8bab-4c8961b8e510", - "lastUpdateDateTime": "2020-11-03T20:17:44Z", - "createdDateTime": "2020-11-03T20:17:44Z", - "expirationDateTime": "2020-11-04T20:17:44Z", + "jobId": "608ec3b3-9d73-4273-b85d-aad9bd11bf0c", + "lastUpdateDateTime": "2020-11-04T13:55:02Z", + "createdDateTime": "2020-11-04T13:55:01Z", + "expirationDateTime": "2020-11-05T13:55:01Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b70e23d3-dc51-4df2-8bab-4c8961b8e510?showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/608ec3b3-9d73-4273-b85d-aad9bd11bf0c?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -194,7 +194,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d18df496c7e2aa18718a74d992419ab0", @@ -203,55 +203,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "78e619a9-78f9-42e9-95dc-fe66fa618ebd", + "apim-request-id": "0cad1238-6a68-4682-a0d4-6350bc59ec78", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:48 GMT", + "Date": "Wed, 04 Nov 2020 13:55:06 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": "b70e23d3-dc51-4df2-8bab-4c8961b8e510", - "lastUpdateDateTime": "2020-11-03T20:17:44Z", - "createdDateTime": "2020-11-03T20:17:44Z", - "expirationDateTime": "2020-11-04T20:17:44Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b70e23d3-dc51-4df2-8bab-4c8961b8e510?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "3fed6bf200c87b1b9dcee6142c92568f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7c16ed5f-79d9-4e24-bef7-fbbbb73ae9c6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:50 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": "40" }, "ResponseBody": { - "jobId": "b70e23d3-dc51-4df2-8bab-4c8961b8e510", - "lastUpdateDateTime": "2020-11-03T20:17:49Z", - "createdDateTime": "2020-11-03T20:17:44Z", - "expirationDateTime": "2020-11-04T20:17:44Z", + "jobId": "608ec3b3-9d73-4273-b85d-aad9bd11bf0c", + "lastUpdateDateTime": "2020-11-04T13:55:05Z", + "createdDateTime": "2020-11-04T13:55:01Z", + "expirationDateTime": "2020-11-05T13:55:01Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json index f9850f8424220..a75d9350316f9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f4c2bd570adc7a4681877a9f27d8bb4d-86e4abd508b6774a-00", + "traceparent": "00-2a530e3ba37d8d478b1e5ca8ca0086da-f3b63522f2b73748-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e5bbee521fd95f6f85d46045340cc5e0", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "4bceccbb-f57c-4f44-9613-c71f4524d753", - "Date": "Tue, 03 Nov 2020 20:17:09 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/9511092f-b01d-4a65-8f5a-8c23916e6010", + "apim-request-id": "430e1db0-bc88-4f0a-9b64-0124fab92f87", + "Date": "Wed, 04 Nov 2020 13:54:16 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b2d32b44-d4e3-44db-a1c1-d56f4a410b5e", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "95" + "x-envoy-upstream-service-time": "74" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/9511092f-b01d-4a65-8f5a-8c23916e6010?$skip=1\u0026showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b2d32b44-d4e3-44db-a1c1-d56f4a410b5e?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cb3ef020b17077b8ee6ec139b3f21813", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a46da24c-ac8d-4d27-8911-890f839581c9", + "apim-request-id": "2b6ba6a7-60e1-4633-9d9d-9a770819f0c1", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:09 GMT", + "Date": "Wed, 04 Nov 2020 13:54:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "9511092f-b01d-4a65-8f5a-8c23916e6010", - "lastUpdateDateTime": "2020-11-03T20:17:09Z", - "createdDateTime": "2020-11-03T20:17:09Z", - "expirationDateTime": "2020-11-04T20:17:09Z", + "jobId": "b2d32b44-d4e3-44db-a1c1-d56f4a410b5e", + "lastUpdateDateTime": "2020-11-04T13:54:16Z", + "createdDateTime": "2020-11-04T13:54:16Z", + "expirationDateTime": "2020-11-05T13:54:16Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/9511092f-b01d-4a65-8f5a-8c23916e6010?$skip=1\u0026showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b2d32b44-d4e3-44db-a1c1-d56f4a410b5e?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "beccfc644b839adbc9a8ce8f926f328c", @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a0ef6655-2f87-46b5-9b30-6206202d32bc", + "apim-request-id": "c0570f58-639d-4f2a-9dca-080228580b34", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:10 GMT", + "Date": "Wed, 04 Nov 2020 13:54:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "9511092f-b01d-4a65-8f5a-8c23916e6010", - "lastUpdateDateTime": "2020-11-03T20:17:09Z", - "createdDateTime": "2020-11-03T20:17:09Z", - "expirationDateTime": "2020-11-04T20:17:09Z", + "jobId": "b2d32b44-d4e3-44db-a1c1-d56f4a410b5e", + "lastUpdateDateTime": "2020-11-04T13:54:16Z", + "createdDateTime": "2020-11-04T13:54:16Z", + "expirationDateTime": "2020-11-05T13:54:16Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/9511092f-b01d-4a65-8f5a-8c23916e6010?$skip=1\u0026showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b2d32b44-d4e3-44db-a1c1-d56f4a410b5e?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -127,7 +127,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8af430b30bf8a15e3644f66a5d35ac92", @@ -136,25 +136,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "512af097-1280-462e-82a5-1d3eddfdefb3", + "apim-request-id": "82dd03ee-5700-4441-b701-86c1904e7dc8", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:11 GMT", + "Date": "Wed, 04 Nov 2020 13:54:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "9511092f-b01d-4a65-8f5a-8c23916e6010", - "lastUpdateDateTime": "2020-11-03T20:17:09Z", - "createdDateTime": "2020-11-03T20:17:09Z", - "expirationDateTime": "2020-11-04T20:17:09Z", + "jobId": "b2d32b44-d4e3-44db-a1c1-d56f4a410b5e", + "lastUpdateDateTime": "2020-11-04T13:54:16Z", + "createdDateTime": "2020-11-04T13:54:16Z", + "expirationDateTime": "2020-11-05T13:54:16Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/9511092f-b01d-4a65-8f5a-8c23916e6010?$skip=1\u0026showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b2d32b44-d4e3-44db-a1c1-d56f4a410b5e?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -163,7 +163,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "38e04dbc073fd45c14a401c7e229e47f", @@ -172,25 +172,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6f94b20a-5b2a-4bda-a51b-74e5d9df988c", + "apim-request-id": "50f25792-ea1b-466d-a32c-e6064e848986", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:12 GMT", + "Date": "Wed, 04 Nov 2020 13:54:19 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": "13" }, "ResponseBody": { - "jobId": "9511092f-b01d-4a65-8f5a-8c23916e6010", - "lastUpdateDateTime": "2020-11-03T20:17:09Z", - "createdDateTime": "2020-11-03T20:17:09Z", - "expirationDateTime": "2020-11-04T20:17:09Z", + "jobId": "b2d32b44-d4e3-44db-a1c1-d56f4a410b5e", + "lastUpdateDateTime": "2020-11-04T13:54:16Z", + "createdDateTime": "2020-11-04T13:54:16Z", + "expirationDateTime": "2020-11-05T13:54:16Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/9511092f-b01d-4a65-8f5a-8c23916e6010?$skip=1\u0026showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b2d32b44-d4e3-44db-a1c1-d56f4a410b5e?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -199,7 +199,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8286353c8dfe591a9d2a883e55713d94", @@ -208,55 +208,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "55f7bbd9-ffe0-4f2b-bd25-81b34d8be8c0", + "apim-request-id": "c0bcee31-49b2-498b-b267-05b5d055403a", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:13 GMT", + "Date": "Wed, 04 Nov 2020 13:54:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { - "jobId": "9511092f-b01d-4a65-8f5a-8c23916e6010", - "lastUpdateDateTime": "2020-11-03T20:17:09Z", - "createdDateTime": "2020-11-03T20:17:09Z", - "expirationDateTime": "2020-11-04T20:17:09Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/9511092f-b01d-4a65-8f5a-8c23916e6010?$skip=1\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "45d23bfcfa8eac4dd31f76540997be0c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "26a59acd-ea74-41d2-b521-cdcafca247ed", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:14 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" - }, - "ResponseBody": { - "jobId": "9511092f-b01d-4a65-8f5a-8c23916e6010", - "lastUpdateDateTime": "2020-11-03T20:17:14Z", - "createdDateTime": "2020-11-03T20:17:09Z", - "expirationDateTime": "2020-11-04T20:17:09Z", + "jobId": "b2d32b44-d4e3-44db-a1c1-d56f4a410b5e", + "lastUpdateDateTime": "2020-11-04T13:54:20Z", + "createdDateTime": "2020-11-04T13:54:16Z", + "expirationDateTime": "2020-11-05T13:54:16Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json index ee0b809f8f2c5..d71c3fa92b06f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-692c839a34143848bc70a3db0af3234b-de15a04f6db91b4b-00", + "traceparent": "00-76301e68d4262c45b567632d8b494cb3-b10c1eb8fd982f46-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9e757d2d83ce1123a7e23fad5376473f", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "2f5ead30-20e7-4905-91ca-262dcc4661c4", - "Date": "Tue, 03 Nov 2020 20:17:50 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e0c5b126-8656-44a3-afcd-dc426be76ef7", + "apim-request-id": "a70a923d-396e-4d78-b73a-a945cf78a4a7", + "Date": "Wed, 04 Nov 2020 13:55:06 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/a756ed27-39a0-4466-8cc0-66d9726577f3", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "125" + "x-envoy-upstream-service-time": "110" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e0c5b126-8656-44a3-afcd-dc426be76ef7?$skip=1\u0026showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/a756ed27-39a0-4466-8cc0-66d9726577f3?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "68a7733fd31f0864ffb638781102da48", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ac05843f-f803-4053-842a-478c4e5cc2da", + "apim-request-id": "ab0cc27c-ed0e-4989-924f-33aaf8c6077d", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:50 GMT", + "Date": "Wed, 04 Nov 2020 13:55:06 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": "e0c5b126-8656-44a3-afcd-dc426be76ef7", - "lastUpdateDateTime": "2020-11-03T20:17:50Z", - "createdDateTime": "2020-11-03T20:17:50Z", - "expirationDateTime": "2020-11-04T20:17:50Z", + "jobId": "a756ed27-39a0-4466-8cc0-66d9726577f3", + "lastUpdateDateTime": "2020-11-04T13:55:06Z", + "createdDateTime": "2020-11-04T13:55:06Z", + "expirationDateTime": "2020-11-05T13:55:06Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e0c5b126-8656-44a3-afcd-dc426be76ef7?$skip=1\u0026showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/a756ed27-39a0-4466-8cc0-66d9726577f3?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "39eac04aaed6996e7ea6b9f62c4a8897", @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d16e1129-44a5-4246-b484-597b44a18ab8", + "apim-request-id": "663c789d-511b-4d6c-baec-d3098889e250", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:51 GMT", + "Date": "Wed, 04 Nov 2020 13:55:07 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": "e0c5b126-8656-44a3-afcd-dc426be76ef7", - "lastUpdateDateTime": "2020-11-03T20:17:50Z", - "createdDateTime": "2020-11-03T20:17:50Z", - "expirationDateTime": "2020-11-04T20:17:50Z", + "jobId": "a756ed27-39a0-4466-8cc0-66d9726577f3", + "lastUpdateDateTime": "2020-11-04T13:55:06Z", + "createdDateTime": "2020-11-04T13:55:06Z", + "expirationDateTime": "2020-11-05T13:55:06Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e0c5b126-8656-44a3-afcd-dc426be76ef7?$skip=1\u0026showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/a756ed27-39a0-4466-8cc0-66d9726577f3?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -127,7 +127,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "eaa1ba814c8b59b1196c9f174baaffa5", @@ -136,25 +136,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d5c52943-4d59-4260-8a42-b8520332ec32", + "apim-request-id": "f371e714-a498-4395-a9c9-6e738a5925d8", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:52 GMT", + "Date": "Wed, 04 Nov 2020 13:55:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "e0c5b126-8656-44a3-afcd-dc426be76ef7", - "lastUpdateDateTime": "2020-11-03T20:17:50Z", - "createdDateTime": "2020-11-03T20:17:50Z", - "expirationDateTime": "2020-11-04T20:17:50Z", + "jobId": "a756ed27-39a0-4466-8cc0-66d9726577f3", + "lastUpdateDateTime": "2020-11-04T13:55:06Z", + "createdDateTime": "2020-11-04T13:55:06Z", + "expirationDateTime": "2020-11-05T13:55:06Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e0c5b126-8656-44a3-afcd-dc426be76ef7?$skip=1\u0026showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/a756ed27-39a0-4466-8cc0-66d9726577f3?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -163,7 +163,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9263f6070e8c9068040de978196ddcb4", @@ -172,25 +172,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1d3337c1-e494-4ec1-84e5-ae0d91595763", + "apim-request-id": "5fc4570a-68bd-4636-9277-4fdb783ffced", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:53 GMT", + "Date": "Wed, 04 Nov 2020 13:55:09 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": "e0c5b126-8656-44a3-afcd-dc426be76ef7", - "lastUpdateDateTime": "2020-11-03T20:17:50Z", - "createdDateTime": "2020-11-03T20:17:50Z", - "expirationDateTime": "2020-11-04T20:17:50Z", + "jobId": "a756ed27-39a0-4466-8cc0-66d9726577f3", + "lastUpdateDateTime": "2020-11-04T13:55:06Z", + "createdDateTime": "2020-11-04T13:55:06Z", + "expirationDateTime": "2020-11-05T13:55:06Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e0c5b126-8656-44a3-afcd-dc426be76ef7?$skip=1\u0026showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/a756ed27-39a0-4466-8cc0-66d9726577f3?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -199,7 +199,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "57f7a12eef60fdbd0f901f6a0f564dd4", @@ -208,25 +208,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a9829727-46be-4a61-8bbf-726b113a5cf3", + "apim-request-id": "e5711be8-d78b-43b0-b9d2-6c38995c76b1", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:54 GMT", + "Date": "Wed, 04 Nov 2020 13:55:10 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": "e0c5b126-8656-44a3-afcd-dc426be76ef7", - "lastUpdateDateTime": "2020-11-03T20:17:54Z", - "createdDateTime": "2020-11-03T20:17:50Z", - "expirationDateTime": "2020-11-04T20:17:50Z", - "status": "running", + "jobId": "a756ed27-39a0-4466-8cc0-66d9726577f3", + "lastUpdateDateTime": "2020-11-04T13:55:06Z", + "createdDateTime": "2020-11-04T13:55:06Z", + "expirationDateTime": "2020-11-05T13:55:06Z", + "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e0c5b126-8656-44a3-afcd-dc426be76ef7?$skip=1\u0026showStats=false", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/a756ed27-39a0-4466-8cc0-66d9726577f3?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -235,7 +235,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "35ee13a7f6e7730b5210e57d63383fab", @@ -244,19 +244,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bafdbf4e-5702-40ba-8486-72ae862d85a4", + "apim-request-id": "ce814e61-3e49-4c44-86e0-dea88b731a96", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:55 GMT", + "Date": "Wed, 04 Nov 2020 13:55:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "31" }, "ResponseBody": { - "jobId": "e0c5b126-8656-44a3-afcd-dc426be76ef7", - "lastUpdateDateTime": "2020-11-03T20:17:54Z", - "createdDateTime": "2020-11-03T20:17:50Z", - "expirationDateTime": "2020-11-04T20:17:50Z", + "jobId": "a756ed27-39a0-4466-8cc0-66d9726577f3", + "lastUpdateDateTime": "2020-11-04T13:55:10Z", + "createdDateTime": "2020-11-04T13:55:06Z", + "expirationDateTime": "2020-11-05T13:55:06Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json index 3b4196d632e62..1e8293d5a81d7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-927d1d9066eeda4ab7e1b24ecb57da01-f6605017002cb141-00", + "traceparent": "00-1d69e0b39f87f547b9000e75e93e74bf-851b52e65341724e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8efbb01e5acc858dcd1ff153470e4093", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "d245eb09-2ba0-46ca-921a-6f66695fb183", - "Date": "Tue, 03 Nov 2020 20:17:14 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/6a3332a7-707c-4f18-926f-1ffc7faf627c", + "apim-request-id": "0fddf4f2-a652-47af-8b73-54769a89d9ca", + "Date": "Wed, 04 Nov 2020 13:54:20 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b27f403b-8803-4802-bb7f-efbe1c226a69", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "116" + "x-envoy-upstream-service-time": "85" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/6a3332a7-707c-4f18-926f-1ffc7faf627c?$top=1\u0026$skip=0\u0026showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b27f403b-8803-4802-bb7f-efbe1c226a69?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2660bb690f1e14745ff6a5df3888e782", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "73bd891b-9a29-4ad0-974b-1c32ce9702d0", + "apim-request-id": "ef0a35da-87df-481f-b1f1-a416dbbd06fb", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:14 GMT", + "Date": "Wed, 04 Nov 2020 13:54:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "6a3332a7-707c-4f18-926f-1ffc7faf627c", - "lastUpdateDateTime": "2020-11-03T20:17:14Z", - "createdDateTime": "2020-11-03T20:17:14Z", - "expirationDateTime": "2020-11-04T20:17:14Z", + "jobId": "b27f403b-8803-4802-bb7f-efbe1c226a69", + "lastUpdateDateTime": "2020-11-04T13:54:21Z", + "createdDateTime": "2020-11-04T13:54:20Z", + "expirationDateTime": "2020-11-05T13:54:20Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/6a3332a7-707c-4f18-926f-1ffc7faf627c?$top=1\u0026$skip=0\u0026showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b27f403b-8803-4802-bb7f-efbe1c226a69?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4c0a13cbdad64cf8d7c97184a7f98e05", @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e295f761-a75e-4fa4-b9b2-097987eb83d0", + "apim-request-id": "9266e588-9c3d-467e-ad13-e53fa0d09820", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:15 GMT", + "Date": "Wed, 04 Nov 2020 13:54: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": "6a3332a7-707c-4f18-926f-1ffc7faf627c", - "lastUpdateDateTime": "2020-11-03T20:17:14Z", - "createdDateTime": "2020-11-03T20:17:14Z", - "expirationDateTime": "2020-11-04T20:17:14Z", + "jobId": "b27f403b-8803-4802-bb7f-efbe1c226a69", + "lastUpdateDateTime": "2020-11-04T13:54:21Z", + "createdDateTime": "2020-11-04T13:54:20Z", + "expirationDateTime": "2020-11-05T13:54:20Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/6a3332a7-707c-4f18-926f-1ffc7faf627c?$top=1\u0026$skip=0\u0026showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b27f403b-8803-4802-bb7f-efbe1c226a69?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -127,7 +127,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "89adbdfd593e0f483ce62ed6b5ad4d44", @@ -136,25 +136,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cc739c15-5890-41c8-8aef-9d7b2678bbcf", + "apim-request-id": "2aff024a-005b-48b8-9f2c-269ec23597d2", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:17 GMT", + "Date": "Wed, 04 Nov 2020 13:54:23 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": "6a3332a7-707c-4f18-926f-1ffc7faf627c", - "lastUpdateDateTime": "2020-11-03T20:17:14Z", - "createdDateTime": "2020-11-03T20:17:14Z", - "expirationDateTime": "2020-11-04T20:17:14Z", + "jobId": "b27f403b-8803-4802-bb7f-efbe1c226a69", + "lastUpdateDateTime": "2020-11-04T13:54:21Z", + "createdDateTime": "2020-11-04T13:54:20Z", + "expirationDateTime": "2020-11-05T13:54:20Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/6a3332a7-707c-4f18-926f-1ffc7faf627c?$top=1\u0026$skip=0\u0026showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b27f403b-8803-4802-bb7f-efbe1c226a69?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -163,7 +163,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "34876f37f3038fbdc3134f559df06d66", @@ -172,25 +172,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "43a046ff-33d1-4d28-b166-cd84b72adccd", + "apim-request-id": "1fc34106-7aa0-44bf-a0e0-8bc51e3a8fe5", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:18 GMT", + "Date": "Wed, 04 Nov 2020 13:54:24 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": "6" }, "ResponseBody": { - "jobId": "6a3332a7-707c-4f18-926f-1ffc7faf627c", - "lastUpdateDateTime": "2020-11-03T20:17:14Z", - "createdDateTime": "2020-11-03T20:17:14Z", - "expirationDateTime": "2020-11-04T20:17:14Z", + "jobId": "b27f403b-8803-4802-bb7f-efbe1c226a69", + "lastUpdateDateTime": "2020-11-04T13:54:21Z", + "createdDateTime": "2020-11-04T13:54:20Z", + "expirationDateTime": "2020-11-05T13:54:20Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/6a3332a7-707c-4f18-926f-1ffc7faf627c?$top=1\u0026$skip=0\u0026showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b27f403b-8803-4802-bb7f-efbe1c226a69?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -199,7 +199,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7be29f675ddb7243cafb10efab21972a", @@ -208,25 +208,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1441d414-cd93-4fe2-8e54-047507eb4296", + "apim-request-id": "24ac8b33-e3d0-4883-8aea-c1b4d4efc935", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:19 GMT", + "Date": "Wed, 04 Nov 2020 13:54: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": "6a3332a7-707c-4f18-926f-1ffc7faf627c", - "lastUpdateDateTime": "2020-11-03T20:17:14Z", - "createdDateTime": "2020-11-03T20:17:14Z", - "expirationDateTime": "2020-11-04T20:17:14Z", + "jobId": "b27f403b-8803-4802-bb7f-efbe1c226a69", + "lastUpdateDateTime": "2020-11-04T13:54:21Z", + "createdDateTime": "2020-11-04T13:54:20Z", + "expirationDateTime": "2020-11-05T13:54:20Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/6a3332a7-707c-4f18-926f-1ffc7faf627c?$top=1\u0026$skip=0\u0026showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b27f403b-8803-4802-bb7f-efbe1c226a69?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -235,7 +235,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "374c2c7b59710901ff1dc62a0af3714c", @@ -244,28 +244,22 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5c4ae7a2-1211-4548-8313-8c1dabba1afe", + "apim-request-id": "1d5dcb8d-a5d1-4749-b3a0-ac73412272a5", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:20 GMT", + "Date": "Wed, 04 Nov 2020 13:54:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { - "jobId": "6a3332a7-707c-4f18-926f-1ffc7faf627c", - "lastUpdateDateTime": "2020-11-03T20:17:19Z", - "createdDateTime": "2020-11-03T20:17:14Z", - "expirationDateTime": "2020-11-04T20:17:14Z", + "jobId": "b27f403b-8803-4802-bb7f-efbe1c226a69", + "lastUpdateDateTime": "2020-11-04T13:54:25Z", + "createdDateTime": "2020-11-04T13:54:20Z", + "expirationDateTime": "2020-11-05T13:54:20Z", "status": "succeeded", "errors": [], "results": { - "statistics": { - "documentsCount": 2, - "validDocumentsCount": 2, - "erroneousDocumentsCount": 0, - "transactionsCount": 2 - }, "documents": [ { "id": "1", @@ -440,7 +434,7 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/6a3332a7-707c-4f18-926f-1ffc7faf627c?$skip=1\u0026$top=1" + "@nextLink": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b27f403b-8803-4802-bb7f-efbe1c226a69?$skip=1\u0026$top=1" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json index 75e4d543862c9..7cdf8f2fd561e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dd56c7274ba1e442bad373bfc02af0ad-cb270b6c176a444f-00", + "traceparent": "00-c97ebaa602f4d5418a78a5dc016c1ef5-c026e7d8575cea47-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "724372daad48480e76510121b5839b2e", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "41a5ce34-1346-4eca-b486-ce9985373da9", - "Date": "Tue, 03 Nov 2020 20:17:55 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/fcefa85e-dfdf-424a-b724-3fb13e4dd0fc", + "apim-request-id": "23a84afa-9301-4427-add7-0996bbf46ec2", + "Date": "Wed, 04 Nov 2020 13:55:11 GMT", + "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/70c8c70a-ee1e-4944-bbcd-5ed1237aedd1", "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": "97" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/fcefa85e-dfdf-424a-b724-3fb13e4dd0fc?$top=1\u0026$skip=0\u0026showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/70c8c70a-ee1e-4944-bbcd-5ed1237aedd1?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "934d972f1ac830d592026d8c2beeac11", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1b6c8fc0-51da-4a47-857c-6acda1f4be2c", + "apim-request-id": "75653fe0-7c8d-41e3-aa29-78b4ab1c1a23", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:55 GMT", + "Date": "Wed, 04 Nov 2020 13:55:11 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": "18" }, "ResponseBody": { - "jobId": "fcefa85e-dfdf-424a-b724-3fb13e4dd0fc", - "lastUpdateDateTime": "2020-11-03T20:17:55Z", - "createdDateTime": "2020-11-03T20:17:55Z", - "expirationDateTime": "2020-11-04T20:17:55Z", + "jobId": "70c8c70a-ee1e-4944-bbcd-5ed1237aedd1", + "lastUpdateDateTime": "2020-11-04T13:55:11Z", + "createdDateTime": "2020-11-04T13:55:11Z", + "expirationDateTime": "2020-11-05T13:55:11Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/fcefa85e-dfdf-424a-b724-3fb13e4dd0fc?$top=1\u0026$skip=0\u0026showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/70c8c70a-ee1e-4944-bbcd-5ed1237aedd1?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ceb201b6e72887166038d111abceeca7", @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "828f0050-1411-4b2b-b4c7-d6e3d57e80f6", + "apim-request-id": "6e187bbb-49d2-4fc7-933d-902ec31cc2f2", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:56 GMT", + "Date": "Wed, 04 Nov 2020 13:55:12 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": "19" }, "ResponseBody": { - "jobId": "fcefa85e-dfdf-424a-b724-3fb13e4dd0fc", - "lastUpdateDateTime": "2020-11-03T20:17:55Z", - "createdDateTime": "2020-11-03T20:17:55Z", - "expirationDateTime": "2020-11-04T20:17:55Z", + "jobId": "70c8c70a-ee1e-4944-bbcd-5ed1237aedd1", + "lastUpdateDateTime": "2020-11-04T13:55:11Z", + "createdDateTime": "2020-11-04T13:55:11Z", + "expirationDateTime": "2020-11-05T13:55:11Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/fcefa85e-dfdf-424a-b724-3fb13e4dd0fc?$top=1\u0026$skip=0\u0026showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/70c8c70a-ee1e-4944-bbcd-5ed1237aedd1?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -127,7 +127,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9e71f8d80ef6c0f19d12df4640821c87", @@ -136,25 +136,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2ef07567-d04c-4151-9fd4-6c1758bb5786", + "apim-request-id": "a4dd5ad4-0460-4627-b1d5-fa71126c2c85", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:57 GMT", + "Date": "Wed, 04 Nov 2020 13:55:13 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": "fcefa85e-dfdf-424a-b724-3fb13e4dd0fc", - "lastUpdateDateTime": "2020-11-03T20:17:55Z", - "createdDateTime": "2020-11-03T20:17:55Z", - "expirationDateTime": "2020-11-04T20:17:55Z", + "jobId": "70c8c70a-ee1e-4944-bbcd-5ed1237aedd1", + "lastUpdateDateTime": "2020-11-04T13:55:11Z", + "createdDateTime": "2020-11-04T13:55:11Z", + "expirationDateTime": "2020-11-05T13:55:11Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/fcefa85e-dfdf-424a-b724-3fb13e4dd0fc?$top=1\u0026$skip=0\u0026showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/70c8c70a-ee1e-4944-bbcd-5ed1237aedd1?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -163,7 +163,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b36aefa4ccd1470681c5338f48c485c4", @@ -172,25 +172,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8b2360d2-94f4-4d52-9c16-c8c640c23e28", + "apim-request-id": "811c7f15-b6b3-41b8-8ef3-3e3e1cf977f8", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:58 GMT", + "Date": "Wed, 04 Nov 2020 13:55:14 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": "6" }, "ResponseBody": { - "jobId": "fcefa85e-dfdf-424a-b724-3fb13e4dd0fc", - "lastUpdateDateTime": "2020-11-03T20:17:55Z", - "createdDateTime": "2020-11-03T20:17:55Z", - "expirationDateTime": "2020-11-04T20:17:55Z", + "jobId": "70c8c70a-ee1e-4944-bbcd-5ed1237aedd1", + "lastUpdateDateTime": "2020-11-04T13:55:11Z", + "createdDateTime": "2020-11-04T13:55:11Z", + "expirationDateTime": "2020-11-05T13:55:11Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/fcefa85e-dfdf-424a-b724-3fb13e4dd0fc?$top=1\u0026$skip=0\u0026showStats=true", + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/70c8c70a-ee1e-4944-bbcd-5ed1237aedd1?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -199,7 +199,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "33b4c5160e7da71a10f1311508cf47de", @@ -208,28 +208,58 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cf4a9082-79b7-4a1a-99ba-262bfe03f13b", + "apim-request-id": "68691844-5d3e-4093-98ba-70a9aea50ae6", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 03 Nov 2020 20:17:59 GMT", + "Date": "Wed, 04 Nov 2020 13:55:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "fcefa85e-dfdf-424a-b724-3fb13e4dd0fc", - "lastUpdateDateTime": "2020-11-03T20:17:59Z", - "createdDateTime": "2020-11-03T20:17:55Z", - "expirationDateTime": "2020-11-04T20:17:55Z", + "jobId": "70c8c70a-ee1e-4944-bbcd-5ed1237aedd1", + "lastUpdateDateTime": "2020-11-04T13:55:15Z", + "createdDateTime": "2020-11-04T13:55:11Z", + "expirationDateTime": "2020-11-05T13:55:11Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/70c8c70a-ee1e-4944-bbcd-5ed1237aedd1?$top=1\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "bb6d491c38630bd6f2291d31db6278d9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5cbd4149-1493-4b2f-940a-71ddddec55f6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 04 Nov 2020 13:55:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": { + "jobId": "70c8c70a-ee1e-4944-bbcd-5ed1237aedd1", + "lastUpdateDateTime": "2020-11-04T13:55:15Z", + "createdDateTime": "2020-11-04T13:55:11Z", + "expirationDateTime": "2020-11-05T13:55:11Z", "status": "succeeded", "errors": [], "results": { - "statistics": { - "documentsCount": 2, - "validDocumentsCount": 2, - "erroneousDocumentsCount": 0, - "transactionsCount": 2 - }, "documents": [ { "id": "1", @@ -404,7 +434,7 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/fcefa85e-dfdf-424a-b724-3fb13e4dd0fc?$skip=1\u0026$top=1" + "@nextLink": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/70c8c70a-ee1e-4944-bbcd-5ed1237aedd1?$skip=1\u0026$top=1" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs index 3d7eba4290813..661bc98d22e07 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs @@ -22,7 +22,15 @@ public async Task Healthcare() var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); #region Snippet:TextAnalyticsSampleHealthcare - string document = "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; + string document = @"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | \ + Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. \ + HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. \ + The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease ,\ + with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and \ + another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , \ + which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with \ + minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's \ + increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; HealthcareOperation healthOperation = client.StartHealthcare(document); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs index 23e2303d321bf..c918511af8cad 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs @@ -23,7 +23,15 @@ public async Task HealthcareAsync() var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); #region Snippet:TextAnalyticsSampleHealthcareAsync - string document = "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; + string document = @"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | \ + Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. \ + HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. \ + The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease ,\ + with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and \ + another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , \ + which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with \ + minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's \ + increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; HealthcareOperation healthOperation = await client.StartHealthcareAsync(document); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Cancellation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Cancellation.cs index 4d2bfb76b896c..9baccaf6a4999 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Cancellation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Cancellation.cs @@ -22,7 +22,15 @@ public async Task HealthcareAsyncCancellation() var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); #region Snippet:TextAnalyticsSampleHealthcareAsyncCancellation - string document = "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; + string document = @"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | \ + Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. \ + HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. \ + The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease ,\ + with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and \ + another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , \ + which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with \ + minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's \ + increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; HealthcareOperation healthOperation = await client.StartHealthcareAsync(document); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Pagination.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Pagination.cs index fa20bed328d7e..c506a669b5f88 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Pagination.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Pagination.cs @@ -23,61 +23,29 @@ public async Task HealthcareAsyncPagination() var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); #region Snippet:TextAnalyticsSampleHealthcareAsyncPagination - string document = "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; + string document = @"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE."; - HealthcareOperation healthOperation = await client.StartHealthcareBatchAsync( - new List() { - document, - document, - document, - document, - document, - document, - document, - document, - document, - document, - document, - document, - document, - document, - document, - document, - document, - document, - document, - document, - document, - document, - document - }); + var list = new List(); + + for (int i = 0; i < 23; i++) + { + list.Add(document); + }; + + HealthcareOperation healthOperation = await client.StartHealthcareBatchAsync(list); AsyncPageable results = client.GetHealthcareEntities(healthOperation); - Debug.WriteLine($"Results of Azure Text Analytics \"Healthcare Async\""); - Debug.WriteLine(""); + Console.WriteLine($"Results of Azure Text Analytics \"Healthcare Async\""); + Console.WriteLine(""); + int resultCount = 0; await foreach (DocumentHealthcareResult result in results) { - Debug.WriteLine($" Recognized the following {result.Entities.Count} healthcare entities:"); - - foreach (HealthcareEntity entity in result.Entities) - { - Debug.WriteLine($" Entity: {entity.Text}"); - Debug.WriteLine($" Subcategory: {entity.Subcategory}"); - Debug.WriteLine($" Offset: {entity.Offset}"); - Debug.WriteLine($" Length: {entity.Length}"); - Debug.WriteLine($" IsNegated: {entity.IsNegated}"); - Debug.WriteLine($" Links:"); - - foreach (HealthcareEntityLink healthcareEntityLink in entity.Links) - { - Debug.WriteLine($" ID: {healthcareEntityLink.Id}"); - Debug.WriteLine($" DataSource: {healthcareEntityLink.DataSource}"); - } - } - Debug.WriteLine(""); + resultCount += 1; } + + Console.WriteLine("resultCount " + resultCount); } #endregion diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs index 4e567e0c4b055..cde7a027cdc17 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs @@ -24,7 +24,15 @@ public async Task HealthcareAsyncShowStats() var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); #region Snippet:TextAnalyticsSampleHealthcareAsyncShowStats - string document = "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; + string document = @"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | \ + Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. \ + HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. \ + The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease ,\ + with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and \ + another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , \ + which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with \ + minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's \ + increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; List batchInput = new List() { @@ -69,10 +77,16 @@ public async Task HealthcareAsyncShowStats() } Console.WriteLine($" Document statistics:"); - Console.WriteLine($" Document count count (in Unicode graphemes): {results.Statistics.DocumentCount}"); - Console.WriteLine($" Transaction count: {results.Statistics.TransactionCount}"); + Console.WriteLine($" Character count (in Unicode graphemes): {result.Statistics.Value.CharacterCount}"); + Console.WriteLine($" Transaction count: {result.Statistics.Value.TransactionCount}"); Console.WriteLine(""); } + Console.WriteLine($"Request statistics:"); + Console.WriteLine($" Document Count: {results.Statistics.DocumentCount}"); + Console.WriteLine($" Valid Document Count: {results.Statistics.ValidDocumentCount}"); + Console.WriteLine($" Transaction Count: {results.Statistics.TransactionCount}"); + Console.WriteLine($" Invalid Document Count: {results.Statistics.InvalidDocumentCount}"); + Console.WriteLine(""); } #endregion diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs index ffed46c7d572f..64dcaf2774d6a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs @@ -22,7 +22,15 @@ public void HealthcareCancellation() var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); #region Snippet:TextAnalyticsSampleHealthcareCancellation - string document = "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; + string document = @"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | \ + Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. \ + HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. \ + The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease ,\ + with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and \ + another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , \ + which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with \ + minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's \ + increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; HealthcareOperation healthOperation = client.StartHealthcare(document); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs index ed8f79a6a1b21..ca35605417494 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs @@ -33,8 +33,6 @@ public async Task HealthcareShowStats() HealthcareOptions options = new HealthcareOptions() { - Top = 1, - Skip = 0, IncludeStatistics = true }; @@ -72,6 +70,12 @@ public async Task HealthcareShowStats() Console.WriteLine($" Transaction count: {result.Statistics.Value.TransactionCount}"); Console.WriteLine(""); } + Console.WriteLine($"Request statistics:"); + Console.WriteLine($" Document Count: {results.Statistics.DocumentCount}"); + Console.WriteLine($" Valid Document Count: {results.Statistics.ValidDocumentCount}"); + Console.WriteLine($" Transaction Count: {results.Statistics.TransactionCount}"); + Console.WriteLine($" Invalid Document Count: {results.Statistics.InvalidDocumentCount}"); + Console.WriteLine(""); } #endregion From 5a229d804274f6570988194504fe66c78370a4a3 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Wed, 4 Nov 2020 06:09:34 -0800 Subject: [PATCH 28/58] cleanup --- .../Azure.AI.TextAnalytics/src/HealthcareRelation.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareRelation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareRelation.cs index 113020aa67be0..49bd433d7dde1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareRelation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareRelation.cs @@ -47,7 +47,7 @@ internal HealthcareRelation(string relationType, bool bidirectional, HealthcareE /// public HealthcareEntity Target { get; } - /// Type of relation. Examples include: `DosageOfMedication` or 'FrequencyOfMedication', etc. + /// Type of relation. Examples include: `DosageOfMedication` or `FrequencyOfMedication`, etc. public string RelationType { get; } /// If true the relation between the entities is bidirectional, otherwise directionality is source to target. public bool Bidirectional { get; } From 53cf209f6671cbeb5c2af872db97d91f5321b461 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Wed, 4 Nov 2020 12:40:46 -0800 Subject: [PATCH 29/58] fixed apidev view issues --- .../src/Generated/Models/KeyPhrasesTask.cs | 2 -- .../Models/KeyPhrasesTaskParameters.Serialization.cs | 2 +- .../src/Generated/Models/KeyPhrasesTaskParameters.cs | 2 +- .../src/Generated/Models/PiiTaskParametersDomain.cs | 2 +- .../src/Generated/Models/StringIndexType.cs | 2 +- .../src/KeyPhraseTaskParameters.cs | 2 +- .../src/PiiTaskParametersDomain.cs | 12 ++++++++++++ .../Azure.AI.TextAnalytics/src/StringIndexType.cs | 12 ++++++++++++ .../Azure.AI.TextAnalytics/src/swagger.json | 6 +++--- 9 files changed, 32 insertions(+), 10 deletions(-) create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParametersDomain.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexType.cs diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.cs index ab6997f7053ae..a72f41feab6e3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.cs @@ -5,8 +5,6 @@ #nullable disable -using Azure.AI.TextAnalytics.Models; - namespace Azure.AI.TextAnalytics { /// The KeyPhrasesTask. diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTaskParameters.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTaskParameters.Serialization.cs index 7e2a9927029cf..e838265161db0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTaskParameters.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTaskParameters.Serialization.cs @@ -8,7 +8,7 @@ using System.Text.Json; using Azure.Core; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { public partial class KeyPhrasesTaskParameters : IUtf8JsonSerializable { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTaskParameters.cs index 26d8925090224..f9060ca031932 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTaskParameters.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTaskParameters.cs @@ -5,7 +5,7 @@ #nullable disable -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { /// The KeyPhrasesTaskParameters. public partial class KeyPhrasesTaskParameters diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParametersDomain.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParametersDomain.cs index cfe623a3607e5..02bf64101b215 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParametersDomain.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParametersDomain.cs @@ -8,7 +8,7 @@ using System; using System.ComponentModel; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { /// The PiiTaskParametersDomain. public readonly partial struct PiiTaskParametersDomain : IEquatable diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexType.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexType.cs index 79a05a844c1d5..2a94f328d2f70 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexType.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexType.cs @@ -11,7 +11,7 @@ namespace Azure.AI.TextAnalytics.Models { /// The StringIndexType. - public readonly partial struct StringIndexType : IEquatable + internal readonly partial struct StringIndexType : IEquatable { private readonly string _value; diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseTaskParameters.cs index b3edfba04b728..5f786c8a6cb0a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseTaskParameters.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseTaskParameters.cs @@ -3,7 +3,7 @@ using Azure.Core; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { [CodeGenModel("KeyPhrasesTaskParameters")] public partial class KeyPhrasesTaskParameters diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParametersDomain.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParametersDomain.cs new file mode 100644 index 0000000000000..5b14c3517f8e1 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParametersDomain.cs @@ -0,0 +1,12 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + [CodeGenModel("PiiTaskParametersDomain")] + public readonly partial struct PiiTaskParametersDomain + { + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexType.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexType.cs new file mode 100644 index 0000000000000..c8f0fa5014180 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexType.cs @@ -0,0 +1,12 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + [CodeGenModel("StringIndexType")] + internal partial struct StringIndexType + { + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/swagger.json b/sdk/textanalytics/Azure.AI.TextAnalytics/src/swagger.json index bb9d44f77dd9c..83a0fcde22da4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/swagger.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/swagger.json @@ -1670,8 +1670,8 @@ "properties": { "results": { "$ref": "#/definitions/HealthcareResult" - }, - "errors": { + }, + "errors": { "items": { "$ref": "#/definitions/TextAnalyticsError" }, @@ -1679,7 +1679,7 @@ } }, "type": "object" - }, + }, { "$ref": "#/definitions/Pagination" } From f1d095e308f4e72a2b9e9bf1834d89513646ab5f Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Wed, 4 Nov 2020 12:40:46 -0800 Subject: [PATCH 30/58] fixed apidev view issues --- .../src/Generated/Models/KeyPhrasesTask.cs | 2 -- .../Models/KeyPhrasesTaskParameters.Serialization.cs | 2 +- .../src/Generated/Models/KeyPhrasesTaskParameters.cs | 2 +- .../src/Generated/Models/PiiTaskParametersDomain.cs | 2 +- .../src/Generated/Models/StringIndexType.cs | 2 +- .../src/KeyPhraseTaskParameters.cs | 2 +- .../src/PiiTaskParametersDomain.cs | 12 ++++++++++++ .../Azure.AI.TextAnalytics/src/StringIndexType.cs | 12 ++++++++++++ .../Azure.AI.TextAnalytics/src/swagger.json | 6 +++--- 9 files changed, 32 insertions(+), 10 deletions(-) create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParametersDomain.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexType.cs diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.cs index ab6997f7053ae..a72f41feab6e3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTask.cs @@ -5,8 +5,6 @@ #nullable disable -using Azure.AI.TextAnalytics.Models; - namespace Azure.AI.TextAnalytics { /// The KeyPhrasesTask. diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTaskParameters.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTaskParameters.Serialization.cs index 7e2a9927029cf..e838265161db0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTaskParameters.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTaskParameters.Serialization.cs @@ -8,7 +8,7 @@ using System.Text.Json; using Azure.Core; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { public partial class KeyPhrasesTaskParameters : IUtf8JsonSerializable { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTaskParameters.cs index 26d8925090224..f9060ca031932 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTaskParameters.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhrasesTaskParameters.cs @@ -5,7 +5,7 @@ #nullable disable -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { /// The KeyPhrasesTaskParameters. public partial class KeyPhrasesTaskParameters diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParametersDomain.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParametersDomain.cs index cfe623a3607e5..02bf64101b215 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParametersDomain.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/PiiTaskParametersDomain.cs @@ -8,7 +8,7 @@ using System; using System.ComponentModel; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { /// The PiiTaskParametersDomain. public readonly partial struct PiiTaskParametersDomain : IEquatable diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexType.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexType.cs index 79a05a844c1d5..2a94f328d2f70 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexType.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/StringIndexType.cs @@ -11,7 +11,7 @@ namespace Azure.AI.TextAnalytics.Models { /// The StringIndexType. - public readonly partial struct StringIndexType : IEquatable + internal readonly partial struct StringIndexType : IEquatable { private readonly string _value; diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseTaskParameters.cs index b3edfba04b728..5f786c8a6cb0a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseTaskParameters.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseTaskParameters.cs @@ -3,7 +3,7 @@ using Azure.Core; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { [CodeGenModel("KeyPhrasesTaskParameters")] public partial class KeyPhrasesTaskParameters diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParametersDomain.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParametersDomain.cs new file mode 100644 index 0000000000000..5b14c3517f8e1 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParametersDomain.cs @@ -0,0 +1,12 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + [CodeGenModel("PiiTaskParametersDomain")] + public readonly partial struct PiiTaskParametersDomain + { + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexType.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexType.cs new file mode 100644 index 0000000000000..c8f0fa5014180 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/StringIndexType.cs @@ -0,0 +1,12 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.Core; + +namespace Azure.AI.TextAnalytics.Models +{ + [CodeGenModel("StringIndexType")] + internal partial struct StringIndexType + { + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/swagger.json b/sdk/textanalytics/Azure.AI.TextAnalytics/src/swagger.json index bb9d44f77dd9c..83a0fcde22da4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/swagger.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/swagger.json @@ -1670,8 +1670,8 @@ "properties": { "results": { "$ref": "#/definitions/HealthcareResult" - }, - "errors": { + }, + "errors": { "items": { "$ref": "#/definitions/TextAnalyticsError" }, @@ -1679,7 +1679,7 @@ } }, "type": "object" - }, + }, { "$ref": "#/definitions/Pagination" } From 0f9a05bd45195791aced7733bb4bb4a21b34ff34 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Wed, 4 Nov 2020 14:24:24 -0800 Subject: [PATCH 31/58] resolved comments --- .../src/ClientCommon.cs | 36 ++++ .../src/DocumentHealthcareResult.cs | 2 +- .../src/HealthcareOperation.cs | 18 +- .../src/TextAnalyticsClient.cs | 35 +++- .../Azure.AI.TextAnalytics/src/Transforms.cs | 8 +- .../tests/RecognizeHealthcareEntitiesTests.cs | 18 +- ...eHealthcareEntitiesBatchWithErrorTest.json | 193 +++--------------- ...thcareEntitiesBatchWithErrorTestAsync.json | 144 ++++++++----- 8 files changed, 206 insertions(+), 248 deletions(-) create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/ClientCommon.cs diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/ClientCommon.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/ClientCommon.cs new file mode 100644 index 0000000000000..b2ae1cf59fb96 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/ClientCommon.cs @@ -0,0 +1,36 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Collections.Generic; +using System.Threading.Tasks; +using Azure.AI.TextAnalytics.Models; +using Azure.Core.Pipeline; + +namespace Azure.AI.TextAnalytics +{ + internal static class ClientCommon + { + public static async ValueTask CreateExceptionForFailedOperationAsync(bool async, ClientDiagnostics diagnostics, Response response, IReadOnlyList errors, string errorMessage = default) + { + string errorCode = default; + + if (errors.Count > 0) + { + errorCode = errors[0].Code; + errorMessage ??= errors[0].Message; + } + + var errorInfo = new Dictionary(); + int index = 0; + foreach (var error in errors) + { + errorInfo.Add($"error-{index}", $"{error.Code}: {error.Message}"); + index++; + } + + return async + ? await diagnostics.CreateRequestFailedExceptionAsync(response, errorMessage, errorCode, errorInfo).ConfigureAwait(false) + : diagnostics.CreateRequestFailedException(response, errorMessage, errorCode, errorInfo); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareResult.cs index 9df950294c8dc..e32bc91523083 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareResult.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareResult.cs @@ -67,7 +67,7 @@ internal static IReadOnlyList ResolveHealthcareRelations(IEn public TextDocumentStatistics? Statistics { get; } /// TextAnalyticsError. - public TextAnalyticsError TextAnalyticsError { get; } + public TextAnalyticsError TextAnalyticsError { get; } = new TextAnalyticsError(); private static Regex _healthcareEntityRegex = new Regex(@"\#/results/documents\/(?\d*)\/entities\/(?\d*)$", RegexOptions.Compiled, TimeSpan.FromSeconds(2)); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs index 0cc84bf5cb4de..c0b036c76affc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs @@ -77,7 +77,11 @@ public override RecognizeHealthcareEntitiesResultCollection Value private int? _top { get; } private int? _skip { get; } - private bool? _showStats { get; } + + /// + /// For showing Statistics for request as well as document. + /// + public bool? ShowStats { get; } /// /// Returns true if the long-running operation completed successfully and has produced final result (accessible by Value property). @@ -115,7 +119,7 @@ internal HealthcareOperation(TextAnalyticsRestClient serviceClient, ClientDiagno _idToIndexMap = idToIndexMap; _top = top; _skip = skip; - _showStats = showStats; + ShowStats = showStats; // TODO: Add validation here // https://github.com/Azure/azure-sdk-for-net/issues/11505 @@ -198,23 +202,25 @@ private async ValueTask UpdateStatusAsync(bool async, CancellationToke try { Response update = async - ? await _serviceClient.HealthStatusAsync(new Guid(Id), _top, _skip, _showStats, cancellationToken).ConfigureAwait(false) - : _serviceClient.HealthStatus(new Guid(Id), _top, _skip, _showStats, cancellationToken); + ? await _serviceClient.HealthStatusAsync(new Guid(Id), _top, _skip, ShowStats, cancellationToken).ConfigureAwait(false) + : _serviceClient.HealthStatus(new Guid(Id), _top, _skip, ShowStats, cancellationToken); _response = update.GetRawResponse(); if (update.Value.Status == JobStatus.Succeeded) { + // we need to first assign a vaue and then mark the operation as completed to avoid race conditions - _value = Transforms.ConvertToRecognizeHealthcareEntitiesResultCollection(update.Value.Results); + _value = Transforms.ConvertToRecognizeHealthcareEntitiesResultCollection(update.Value.Results, _idToIndexMap); NextLink = update.Value.NextLink; _hasCompleted = true; } else if (update.Value.Status == JobStatus.Failed) { + _requestFailedException = await ClientCommon.CreateExceptionForFailedOperationAsync(async, _diagnostics, _response, update.Value.Errors) + .ConfigureAwait(false); _hasCompleted = true; - _requestFailedException = new RequestFailedException("Request Failed Exception:" + update.Value.Results.Errors.ToString()); throw _requestFailedException; } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index 2e58e79ecf377..0c9cfbb54a150 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -27,6 +27,7 @@ public partial class TextAnalyticsClient private readonly TextAnalyticsClientOptions _options; private readonly string DefaultCognitiveScope = "https://cognitiveservices.azure.com/.default"; private const string AuthorizationHeader = "Ocp-Apim-Subscription-Key"; + private IDictionary _idToIndexMap; // Specifies the method used to interpret string offsets. Default to . private readonly StringIndexType _stringCodeUnit = StringIndexType.Utf16CodeUnit; @@ -2264,9 +2265,9 @@ private HealthcareOperation StartHealthcareBatch(MultiLanguageBatchInput batchIn ResponseWithHeaders response = _serviceRestClient.Health(batchInput, options.ModelVersion, _stringCodeUnit, cancellationToken); string location = response.Headers.OperationLocation; - IDictionary idToIndexMap = CreateIdToIndexMap(batchInput.Documents); + _idToIndexMap = CreateIdToIndexMap(batchInput.Documents); - return new HealthcareOperation(_serviceRestClient, _clientDiagnostics, location, idToIndexMap, options.Top, options.Skip, options.IncludeStatistics); + return new HealthcareOperation(_serviceRestClient, _clientDiagnostics, location, _idToIndexMap, options.Top, options.Skip, options.IncludeStatistics); } catch (Exception e) { @@ -2287,9 +2288,9 @@ private async Task StartHealthcareBatchAsync(MultiLanguageB ResponseWithHeaders response = await _serviceRestClient.HealthAsync(batchInput, options.ModelVersion, _stringCodeUnit, cancellationToken).ConfigureAwait(false); string location = response.Headers.OperationLocation; - IDictionary idToIndexMap = CreateIdToIndexMap(batchInput.Documents); + _idToIndexMap = CreateIdToIndexMap(batchInput.Documents); - return new HealthcareOperation(_serviceRestClient, _clientDiagnostics, location, idToIndexMap, options.Top, options.Skip, options.IncludeStatistics); + return new HealthcareOperation(_serviceRestClient, _clientDiagnostics, location, _idToIndexMap, options.Top, options.Skip, options.IncludeStatistics); } catch (Exception e) { @@ -2379,31 +2380,49 @@ async Task> NextPageFunc(string nextLink, int? pa try { - int top = 1; - int skip = 1; + int top = default; + int skip = default; + + // Extracting Job ID and parameters from the URL. + // TODO - Update with Regex for cleaner implementation + // nextLink - https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/8002878d-2e43-4675-ad20-455fe004641b?$skip=20&$top=0 + string[] nextLinkSplit = nextLink.Split('/'); + // nextLinkSplit = [ 'https:', '', 'cognitiveusw2dev.azure-api.net', 'text', ..., '8002878d-2e43-4675-ad20-455fe004641b?$skip=20&$top=0'] string[] jobIdParams = nextLinkSplit.Last().Split('?'); + // jobIdParams = ['8002878d-2e43-4675-ad20-455fe004641b', '$skip=20&$top=0'] + + if (jobIdParams.Count() != 2) + { + throw new InvalidOperationException($"Failed to parse element reference: {nextLink}"); + } + // The Id for the Job i.e. the first index of the list string jobId = jobIdParams[0]; + // '8002878d-2e43-4675-ad20-455fe004641b' + // Extracting Top and Skip parameter values string[] parameters = jobIdParams[1].Split('&'); + // '$skip=20&$top=0' foreach (string paramater in parameters) { if (paramater.Contains("top")) { _ = int.TryParse(paramater.Split('=')[1], out top); + // 0 } if (paramater.Contains("skip")) { _ = int.TryParse(paramater.Split('=')[1], out skip); + // 20 } } - Response jobState = await _serviceRestClient.HealthStatusAsync(new Guid(jobId), top, skip).ConfigureAwait(false); + Response jobState = await _serviceRestClient.HealthStatusAsync(new Guid(jobId), top, skip, operation.ShowStats).ConfigureAwait(false); - RecognizeHealthcareEntitiesResultCollection result = Transforms.ConvertToRecognizeHealthcareEntitiesResultCollection(jobState.Value.Results); + RecognizeHealthcareEntitiesResultCollection result = Transforms.ConvertToRecognizeHealthcareEntitiesResultCollection(jobState.Value.Results, _idToIndexMap); return Page.FromValues(result.AsEnumerable(), jobState.Value.NextLink, jobState.GetRawResponse()); } catch (Exception e) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs index ab4797c73e8c6..ace1afe5b9b12 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs @@ -228,22 +228,24 @@ internal static RecognizeLinkedEntitiesResultCollection ConvertToRecognizeLinked #region Healthcare - internal static RecognizeHealthcareEntitiesResultCollection ConvertToRecognizeHealthcareEntitiesResultCollection(HealthcareResult results) + internal static RecognizeHealthcareEntitiesResultCollection ConvertToRecognizeHealthcareEntitiesResultCollection(HealthcareResult results, IDictionary idToIndexMap) { var healthcareEntititesResults = new List(); //Read errors - foreach (DocumentError error in results?.Errors) + foreach (DocumentError error in results.Errors) { healthcareEntititesResults.Add(new DocumentHealthcareResult(error.Id, ConvertToError(error.Error))); } //Read entities - foreach (DocumentHealthcareEntitiesInternal documentHealthcareEntities in results?.Documents) + foreach (DocumentHealthcareEntitiesInternal documentHealthcareEntities in results.Documents) { healthcareEntititesResults.Add(new DocumentHealthcareResult(documentHealthcareEntities)); } + healthcareEntititesResults = healthcareEntititesResults.OrderBy(result => idToIndexMap[result.Id]).ToList(); + return new RecognizeHealthcareEntitiesResultCollection(healthcareEntititesResults, results.Statistics, results.ModelVersion); } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeHealthcareEntitiesTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeHealthcareEntitiesTests.cs index b3ef13253bb59..3ca3a6fdc6dbb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeHealthcareEntitiesTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/RecognizeHealthcareEntitiesTests.cs @@ -146,6 +146,7 @@ public async Task RecognizeHealthcareEntitiesWithSkipParameter() RecognizeHealthcareEntitiesResultCollection resultCollection = operation.Value; + Assert.IsNotNull(resultCollection[0].TextAnalyticsError); Assert.IsNotNull(resultCollection[0].Warnings); Assert.AreEqual(1, resultCollection.Count); Assert.AreEqual(6, resultCollection[0].Entities.Count); @@ -172,10 +173,10 @@ public async Task RecognizeHealthcareEntitiesBatchWithErrorTest() RecognizeHealthcareEntitiesResultCollection resultCollection = operation.Value; - Assert.IsNotNull(resultCollection[0].Id); - Assert.IsNotNull(resultCollection[0].TextAnalyticsError); - Assert.AreEqual("Document text is empty.", resultCollection[0].TextAnalyticsError.Message); - Assert.AreEqual(TextAnalyticsErrorCode.InvalidDocument, resultCollection[0].TextAnalyticsError.ErrorCode.ToString()); + Assert.IsNotNull(resultCollection[2].Id); + Assert.IsNotNull(resultCollection[2].TextAnalyticsError); + Assert.AreEqual("Document text is empty.", resultCollection[2].TextAnalyticsError.Message); + Assert.AreEqual(TextAnalyticsErrorCode.InvalidDocument, resultCollection[2].TextAnalyticsError.ErrorCode.ToString()); } [Test] @@ -190,7 +191,7 @@ public async Task RecognizeHealthcareEntitiesBatchConvenienceTest() RecognizeHealthcareEntitiesResultCollection resultCollection = operation.Value; - Assert.AreEqual(resultCollection.Count, 2); + Assert.AreEqual(2, resultCollection.Count); } [Test] @@ -234,7 +235,7 @@ public async Task RecognizeHealthcareEntitiesBatchTest() RecognizeHealthcareEntitiesResultCollection resultCollection = operation.Value; - Assert.GreaterOrEqual(resultCollection.Count, 2); + Assert.AreEqual(2, resultCollection.Count); } [Test] @@ -254,9 +255,8 @@ public async Task RecognizeHealthcareEntitiesBatchWithStatisticsTest() RecognizeHealthcareEntitiesResultCollection resultCollection = operation.Value; - Assert.GreaterOrEqual(resultCollection.Count, 2); + Assert.AreEqual(2, resultCollection.Count); - Assert.Greater(resultCollection.Statistics.DocumentCount, 0); Assert.AreEqual(2, resultCollection.Statistics.DocumentCount); Assert.AreEqual(2, resultCollection.Statistics.TransactionCount); Assert.AreEqual(0, resultCollection.Statistics.InvalidDocumentCount); @@ -285,7 +285,7 @@ public async Task RecognizeHealthcareEntitiesBatchWithPagination() resultCount += 1; } - Assert.AreEqual(resultCount, 23); + Assert.AreEqual(23, resultCount); } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json index e8c2dd30d1829..6e6507f5acace 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,8 @@ "Content-Length": "260", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bd0b2da30e629f4faf7192d4845af552-f0a311d868157f49-00", + "Request-Id": "00-9efe046504a39c4b889c282a38dd36f9-4042e4dc54eda048-00", + "traceparent": "00-9efe046504a39c4b889c282a38dd36f9-4042e4dc54eda048-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,18 +41,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "219de4ed-36e6-4c1e-8e56-871322a3fa5f", - "Date": "Wed, 04 Nov 2020 13:53:51 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ba4e2aae-4662-475d-81c5-f2d735bb154e", + "apim-request-id": "b112edc8-5d94-4bbc-8d78-782d87aa3af9", + "Date": "Wed, 04 Nov 2020 21:14:33 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/08383c7a-03ab-4a88-b64a-c1267317c272", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "111" + "x-envoy-upstream-service-time": "140" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ba4e2aae-4662-475d-81c5-f2d735bb154e?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/08383c7a-03ab-4a88-b64a-c1267317c272?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -59,6 +60,7 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|455ee2d-4cd1722e4a05182f.", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -69,25 +71,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9eec6de7-5cfc-40fb-8c2e-10a7d8f47062", + "apim-request-id": "e13c2aa7-3938-4d62-9ca1-18118c203599", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:53:51 GMT", + "Date": "Wed, 04 Nov 2020 21:14:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { - "jobId": "ba4e2aae-4662-475d-81c5-f2d735bb154e", - "lastUpdateDateTime": "2020-11-04T13:53:51Z", - "createdDateTime": "2020-11-04T13:53:51Z", - "expirationDateTime": "2020-11-05T13:53:51Z", + "jobId": "08383c7a-03ab-4a88-b64a-c1267317c272", + "lastUpdateDateTime": "2020-11-04T21:14:33Z", + "createdDateTime": "2020-11-04T21:14:33Z", + "expirationDateTime": "2020-11-05T21:14:33Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ba4e2aae-4662-475d-81c5-f2d735bb154e?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/08383c7a-03ab-4a88-b64a-c1267317c272?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -95,6 +97,7 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|455ee2e-4cd1722e4a05182f.", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -105,163 +108,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e51c7a55-eded-4dff-bf91-100f96ee09a6", + "apim-request-id": "7e8e9bcb-b44d-47f5-8d39-deee2d492e2f", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:53:52 GMT", + "Date": "Wed, 04 Nov 2020 21:14:34 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": "211" }, "ResponseBody": { - "jobId": "ba4e2aae-4662-475d-81c5-f2d735bb154e", - "lastUpdateDateTime": "2020-11-04T13:53:51Z", - "createdDateTime": "2020-11-04T13:53:51Z", - "expirationDateTime": "2020-11-05T13:53:51Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ba4e2aae-4662-475d-81c5-f2d735bb154e?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "42e053ff1beac39b78bd58f714be8d8f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bc5f05fc-cc1b-4bc1-abda-8d7ad873cead", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:53:53 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": "ba4e2aae-4662-475d-81c5-f2d735bb154e", - "lastUpdateDateTime": "2020-11-04T13:53:51Z", - "createdDateTime": "2020-11-04T13:53:51Z", - "expirationDateTime": "2020-11-05T13:53:51Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ba4e2aae-4662-475d-81c5-f2d735bb154e?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4bddeade2273698670fd2d14a873ad9c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e702cdb6-1e65-4218-9cd8-036e683eca8d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:53:54 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": "ba4e2aae-4662-475d-81c5-f2d735bb154e", - "lastUpdateDateTime": "2020-11-04T13:53:51Z", - "createdDateTime": "2020-11-04T13:53:51Z", - "expirationDateTime": "2020-11-05T13:53:51Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ba4e2aae-4662-475d-81c5-f2d735bb154e?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ffb435ff9139b161bf1f68262691b59e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4de054c0-2a59-47b5-90a5-368f8a31feab", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:53:55 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": "ba4e2aae-4662-475d-81c5-f2d735bb154e", - "lastUpdateDateTime": "2020-11-04T13:53:55Z", - "createdDateTime": "2020-11-04T13:53:51Z", - "expirationDateTime": "2020-11-05T13:53:51Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/ba4e2aae-4662-475d-81c5-f2d735bb154e?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "11d297c24c1bdc03cd77d1edee871a04", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "de43c7ba-6b07-4fff-b900-93233e717e37", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:53:56 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" - }, - "ResponseBody": { - "jobId": "ba4e2aae-4662-475d-81c5-f2d735bb154e", - "lastUpdateDateTime": "2020-11-04T13:53:55Z", - "createdDateTime": "2020-11-04T13:53:51Z", - "expirationDateTime": "2020-11-05T13:53:51Z", + "jobId": "08383c7a-03ab-4a88-b64a-c1267317c272", + "lastUpdateDateTime": "2020-11-04T21:14:34Z", + "createdDateTime": "2020-11-04T21:14:33Z", + "expirationDateTime": "2020-11-05T21:14:33Z", "status": "succeeded", "errors": [], "results": { @@ -1242,6 +1101,6 @@ "Variables": { "RandomSeed": "1719176907", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json index b9dea8587be0a..eedadd518ec5d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "260", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9e39149444919c4f9e6a7d71505e2849-f901cbdb759d0f4d-00", + "traceparent": "00-4296adc415dd274bbc02cbced3844965-b4419ff6e3c6ea4d-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,18 +40,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "fc34547c-d220-47c7-93eb-6104d7dbae5e", - "Date": "Wed, 04 Nov 2020 13:54:41 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/8e31c99f-1f4c-4e83-b58e-1242b857781d", + "apim-request-id": "94e75d53-b281-4e84-a178-020dc7ad8d28", + "Date": "Wed, 04 Nov 2020 21:46:41 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/48e948a3-4972-46af-afe3-b048308fba34", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "105" + "x-envoy-upstream-service-time": "116" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/8e31c99f-1f4c-4e83-b58e-1242b857781d?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/48e948a3-4972-46af-afe3-b048308fba34?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -69,25 +69,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1403190a-c5a8-4d0f-ad0f-2601abebd25d", + "apim-request-id": "6c4f75ab-949f-42fb-afe2-685391651253", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:41 GMT", + "Date": "Wed, 04 Nov 2020 21:46:42 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": "8e31c99f-1f4c-4e83-b58e-1242b857781d", - "lastUpdateDateTime": "2020-11-04T13:54:41Z", - "createdDateTime": "2020-11-04T13:54:41Z", - "expirationDateTime": "2020-11-05T13:54:41Z", + "jobId": "48e948a3-4972-46af-afe3-b048308fba34", + "lastUpdateDateTime": "2020-11-04T21:46:42Z", + "createdDateTime": "2020-11-04T21:46:42Z", + "expirationDateTime": "2020-11-05T21:46:42Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/8e31c99f-1f4c-4e83-b58e-1242b857781d?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/48e948a3-4972-46af-afe3-b048308fba34?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -105,25 +105,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c7b2e557-10cd-4a93-a8ba-e307a81b1c6e", + "apim-request-id": "9671fdf2-af29-428e-ba22-8bdd5c185c2d", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:42 GMT", + "Date": "Wed, 04 Nov 2020 21:46:44 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": "6" }, "ResponseBody": { - "jobId": "8e31c99f-1f4c-4e83-b58e-1242b857781d", - "lastUpdateDateTime": "2020-11-04T13:54:41Z", - "createdDateTime": "2020-11-04T13:54:41Z", - "expirationDateTime": "2020-11-05T13:54:41Z", + "jobId": "48e948a3-4972-46af-afe3-b048308fba34", + "lastUpdateDateTime": "2020-11-04T21:46:42Z", + "createdDateTime": "2020-11-04T21:46:42Z", + "expirationDateTime": "2020-11-05T21:46:42Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/8e31c99f-1f4c-4e83-b58e-1242b857781d?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/48e948a3-4972-46af-afe3-b048308fba34?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -141,25 +141,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a2c6cce4-1eee-4103-bbb3-2d30ec4d1e9d", + "apim-request-id": "35b7c6c3-d68d-491a-a89d-9c84daef8d6f", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:43 GMT", + "Date": "Wed, 04 Nov 2020 21:46:45 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": "10" }, "ResponseBody": { - "jobId": "8e31c99f-1f4c-4e83-b58e-1242b857781d", - "lastUpdateDateTime": "2020-11-04T13:54:41Z", - "createdDateTime": "2020-11-04T13:54:41Z", - "expirationDateTime": "2020-11-05T13:54:41Z", + "jobId": "48e948a3-4972-46af-afe3-b048308fba34", + "lastUpdateDateTime": "2020-11-04T21:46:42Z", + "createdDateTime": "2020-11-04T21:46:42Z", + "expirationDateTime": "2020-11-05T21:46:42Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/8e31c99f-1f4c-4e83-b58e-1242b857781d?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/48e948a3-4972-46af-afe3-b048308fba34?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -177,25 +177,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "46453f64-83d3-49f8-ae00-730c4b018157", + "apim-request-id": "2f9032f5-074d-46b2-a6f5-24230a3e401e", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:44 GMT", + "Date": "Wed, 04 Nov 2020 21:46:46 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": "8e31c99f-1f4c-4e83-b58e-1242b857781d", - "lastUpdateDateTime": "2020-11-04T13:54:41Z", - "createdDateTime": "2020-11-04T13:54:41Z", - "expirationDateTime": "2020-11-05T13:54:41Z", + "jobId": "48e948a3-4972-46af-afe3-b048308fba34", + "lastUpdateDateTime": "2020-11-04T21:46:42Z", + "createdDateTime": "2020-11-04T21:46:42Z", + "expirationDateTime": "2020-11-05T21:46:42Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/8e31c99f-1f4c-4e83-b58e-1242b857781d?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/48e948a3-4972-46af-afe3-b048308fba34?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -213,25 +213,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e7f02443-2e54-442c-a7ec-d18fe63242f4", + "apim-request-id": "833c6989-8aca-46f1-80a4-a6760476d625", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:45 GMT", + "Date": "Wed, 04 Nov 2020 21:46:47 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": "8e31c99f-1f4c-4e83-b58e-1242b857781d", - "lastUpdateDateTime": "2020-11-04T13:54:41Z", - "createdDateTime": "2020-11-04T13:54:41Z", - "expirationDateTime": "2020-11-05T13:54:41Z", + "jobId": "48e948a3-4972-46af-afe3-b048308fba34", + "lastUpdateDateTime": "2020-11-04T21:46:42Z", + "createdDateTime": "2020-11-04T21:46:42Z", + "expirationDateTime": "2020-11-05T21:46:42Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/8e31c99f-1f4c-4e83-b58e-1242b857781d?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/48e948a3-4972-46af-afe3-b048308fba34?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -249,19 +249,55 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3194a3cd-b92a-457f-a303-1fca727b76f2", + "apim-request-id": "da8ccd7c-d33f-4f7a-8874-04f15f90a6bb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Wed, 04 Nov 2020 21:46:48 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": "48e948a3-4972-46af-afe3-b048308fba34", + "lastUpdateDateTime": "2020-11-04T21:46:48Z", + "createdDateTime": "2020-11-04T21:46:42Z", + "expirationDateTime": "2020-11-05T21:46:42Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/48e948a3-4972-46af-afe3-b048308fba34?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "30aae0f5beeb9bfbbd9439f78772cd69", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ee3a9046-97b6-47f9-a332-ca9b0dc6bd78", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:46 GMT", + "Date": "Wed, 04 Nov 2020 21:46:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { - "jobId": "8e31c99f-1f4c-4e83-b58e-1242b857781d", - "lastUpdateDateTime": "2020-11-04T13:54:45Z", - "createdDateTime": "2020-11-04T13:54:41Z", - "expirationDateTime": "2020-11-05T13:54:41Z", + "jobId": "48e948a3-4972-46af-afe3-b048308fba34", + "lastUpdateDateTime": "2020-11-04T21:46:48Z", + "createdDateTime": "2020-11-04T21:46:42Z", + "expirationDateTime": "2020-11-05T21:46:42Z", "status": "succeeded", "errors": [], "results": { @@ -1242,6 +1278,6 @@ "Variables": { "RandomSeed": "729062063", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file From fc361a7fb520332c640958c1dc02ac088d0e199c Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Wed, 4 Nov 2020 14:42:59 -0800 Subject: [PATCH 32/58] update session records --- ...lyzeSentimentBatchConvenienceFullTest.json | 14 +- ...entimentBatchConvenienceFullTestAsync.json | 14 +- .../AnalyzeSentimentBatchConvenienceTest.json | 14 +- ...yzeSentimentBatchConvenienceTestAsync.json | 14 +- ...tBatchConvenienceWithCancellationTest.json | 14 +- ...hConvenienceWithCancellationTestAsync.json | 14 +- ...nienceWithLanguageAndCancellationTest.json | 14 +- ...eWithLanguageAndCancellationTestAsync.json | 14 +- ...venienceWithLanguageAndStatisticsTest.json | 14 +- ...nceWithLanguageAndStatisticsTestAsync.json | 14 +- ...imentBatchConvenienceWithLanguageTest.json | 14 +- ...BatchConvenienceWithLanguageTestAsync.json | 14 +- ...BatchConvenienceWithOpinionMiningTest.json | 14 +- ...ConvenienceWithOpinionMiningTestAsync.json | 14 +- ...enceWithStatisticsAndCancellationTest.json | 14 +- ...ithStatisticsAndCancellationTestAsync.json | 14 +- ...entBatchConvenienceWithStatisticsTest.json | 14 +- ...tchConvenienceWithStatisticsTestAsync.json | 14 +- .../AnalyzeSentimentBatchTest.json | 14 +- .../AnalyzeSentimentBatchTestAsync.json | 14 +- .../AnalyzeSentimentBatchWithErrorTest.json | 14 +- ...alyzeSentimentBatchWithErrorTestAsync.json | 14 +- .../AnalyzeSentimentBatchWithNullIdTest.json | 14 +- ...lyzeSentimentBatchWithNullIdTestAsync.json | 14 +- ...AnalyzeSentimentBatchWithNullTextTest.json | 14 +- ...zeSentimentBatchWithNullTextTestAsync.json | 14 +- ...zeSentimentBatchWithOpinionMiningTest.json | 14 +- ...timentBatchWithOpinionMiningTestAsync.json | 14 +- ...alyzeSentimentBatchWithStatisticsTest.json | 14 +- ...SentimentBatchWithStatisticsTestAsync.json | 14 +- .../AnalyzeSentimentTest.json | 14 +- .../AnalyzeSentimentTestAsync.json | 14 +- .../AnalyzeSentimentWithCancellationTest.json | 14 +- ...yzeSentimentWithCancellationTestAsync.json | 14 +- ...timentWithLanguageAndCancellationTest.json | 14 +- ...tWithLanguageAndCancellationTestAsync.json | 14 +- .../AnalyzeSentimentWithLanguageTest.json | 14 +- ...AnalyzeSentimentWithLanguageTestAsync.json | 14 +- .../AnalyzeSentimentWithOpinionMining.json | 14 +- ...nalyzeSentimentWithOpinionMiningAsync.json | 14 +- ...nalyzeSentimentWithOpinionMiningEmpty.json | 14 +- ...eSentimentWithOpinionMiningEmptyAsync.json | 14 +- ...lyzeSentimentWithOpinionMiningNegated.json | 14 +- ...entimentWithOpinionMiningNegatedAsync.json | 14 +- .../DetectLanguageBatchConvenienceTest.json | 14 +- ...tectLanguageBatchConvenienceTestAsync.json | 14 +- ...ageBatchConvenienceWithStatisticsTest.json | 14 +- ...tchConvenienceWithStatisticsTestAsync.json | 14 +- .../DetectLanguageBatchTest.json | 14 +- .../DetectLanguageBatchTestAsync.json | 14 +- .../DetectLanguageBatchWithErrorTest.json | 14 +- ...DetectLanguageBatchWithErrorTestAsync.json | 14 +- .../DetectLanguageBatchWithNullIdTest.json | 14 +- ...etectLanguageBatchWithNullIdTestAsync.json | 14 +- .../DetectLanguageBatchWithNullTextTest.json | 14 +- ...ectLanguageBatchWithNullTextTestAsync.json | 14 +- ...DetectLanguageBatchWithStatisticsTest.json | 14 +- ...tLanguageBatchWithStatisticsTestAsync.json | 14 +- .../DetectLanguageTest.json | 14 +- .../DetectLanguageTestAsync.json | 14 +- .../DetectLanguageWithCountryHintTest.json | 14 +- ...etectLanguageWithCountryHintTestAsync.json | 14 +- ...etectLanguageWithErrorCountryHintTest.json | 14 +- ...LanguageWithErrorCountryHintTestAsync.json | 14 +- ...DetectLanguageWithNoneCountryHintTest.json | 14 +- ...tLanguageWithNoneCountryHintTestAsync.json | 14 +- ...anguageWithNoneDefaultCountryHintTest.json | 14 +- ...geWithNoneDefaultCountryHintTestAsync.json | 14 +- ...ExtractKeyPhrasesBatchConvenienceTest.json | 14 +- ...ctKeyPhrasesBatchConvenienceTestAsync.json | 14 +- ...sesBatchConvenienceWithStatisticsTest.json | 14 +- ...tchConvenienceWithStatisticsTestAsync.json | 14 +- .../ExtractKeyPhrasesBatchTest.json | 14 +- .../ExtractKeyPhrasesBatchTestAsync.json | 14 +- .../ExtractKeyPhrasesBatchWithErrorTest.json | 14 +- ...ractKeyPhrasesBatchWithErrorTestAsync.json | 14 +- .../ExtractKeyPhrasesBatchWithNullIdTest.json | 14 +- ...actKeyPhrasesBatchWithNullIdTestAsync.json | 14 +- ...xtractKeyPhrasesBatchWithNullTextTest.json | 14 +- ...tKeyPhrasesBatchWithNullTextTestAsync.json | 14 +- ...tractKeyPhrasesBatchWithSatisticsTest.json | 14 +- ...KeyPhrasesBatchWithSatisticsTestAsync.json | 14 +- .../ExtractKeyPhrasesTest.json | 14 +- .../ExtractKeyPhrasesTestAsync.json | 14 +- .../ExtractKeyPhrasesWithLanguageTest.json | 14 +- ...xtractKeyPhrasesWithLanguageTestAsync.json | 14 +- .../ExtractKeyPhrasesWithWarningTest.json | 14 +- ...ExtractKeyPhrasesWithWarningTestAsync.json | 14 +- ...RecognizeEntitiesBatchConvenienceTest.json | 14 +- ...nizeEntitiesBatchConvenienceTestAsync.json | 14 +- ...iesBatchConvenienceWithStatisticsTest.json | 14 +- ...tchConvenienceWithStatisticsTestAsync.json | 14 +- .../RecognizeEntitiesBatchTest.json | 14 +- .../RecognizeEntitiesBatchTestAsync.json | 14 +- .../RecognizeEntitiesBatchWithErrorTest.json | 14 +- ...ognizeEntitiesBatchWithErrorTestAsync.json | 14 +- ...EntitiesBatchWithInvalidDocumentBatch.json | 14 +- ...iesBatchWithInvalidDocumentBatchAsync.json | 14 +- .../RecognizeEntitiesBatchWithNullIdTest.json | 14 +- ...gnizeEntitiesBatchWithNullIdTestAsync.json | 14 +- ...ecognizeEntitiesBatchWithNullTextTest.json | 12 +- ...izeEntitiesBatchWithNullTextTestAsync.json | 14 +- ...ognizeEntitiesBatchWithStatisticsTest.json | 14 +- ...eEntitiesBatchWithStatisticsTestAsync.json | 14 +- .../RecognizeEntitiesTest.json | 14 +- .../RecognizeEntitiesTestAsync.json | 14 +- .../RecognizeEntitiesWithLanguageTest.json | 14 +- ...ecognizeEntitiesWithLanguageTestAsync.json | 14 +- .../RecognizeEntitiesWithSubCategoryTest.json | 14 +- ...gnizeEntitiesWithSubCategoryTestAsync.json | 14 +- ...ealthcareEntitiesBatchConvenienceTest.json | 150 +++--------- ...careEntitiesBatchConvenienceTestAsync.json | 190 ++------------- ...iesBatchConvenienceWithStatisticsTest.json | 154 ++---------- ...tchConvenienceWithStatisticsTestAsync.json | 168 +++---------- .../RecognizeHealthcareEntitiesBatchTest.json | 170 +++---------- ...gnizeHealthcareEntitiesBatchTestAsync.json | 154 ++---------- ...eHealthcareEntitiesBatchWithErrorTest.json | 45 ++-- ...thcareEntitiesBatchWithErrorTestAsync.json | 202 +++------------- ...HealthcareEntitiesBatchWithPagination.json | 174 ++++--------- ...hcareEntitiesBatchWithPaginationAsync.json | 228 ++++-------------- ...thcareEntitiesBatchWithStatisticsTest.json | 100 +++----- ...eEntitiesBatchWithStatisticsTestAsync.json | 120 ++------- .../RecognizeHealthcareEntitiesTest.json | 192 ++------------- .../RecognizeHealthcareEntitiesTestAsync.json | 188 ++------------- ...izeHealthcareEntitiesWithLanguageTest.json | 170 +++---------- ...althcareEntitiesWithLanguageTestAsync.json | 132 +++------- ...zeHealthcareEntitiesWithSkipParameter.json | 154 ++---------- ...lthcareEntitiesWithSkipParameterAsync.json | 150 +++--------- ...izeHealthcareEntitiesWithTopParameter.json | 172 +++---------- ...althcareEntitiesWithTopParameterAsync.json | 192 ++------------- ...izeLinkedEntitiesBatchConvenienceTest.json | 14 +- ...nkedEntitiesBatchConvenienceTestAsync.json | 14 +- ...iesBatchConvenienceWithStatisticsTest.json | 14 +- ...tchConvenienceWithStatisticsTestAsync.json | 14 +- .../RecognizeLinkedEntitiesBatchTest.json | 14 +- ...RecognizeLinkedEntitiesBatchTestAsync.json | 14 +- ...gnizeLinkedEntitiesBatchWithErrorTest.json | 14 +- ...LinkedEntitiesBatchWithErrorTestAsync.json | 14 +- ...EntitiesBatchWithInvalidDocumentBatch.json | 14 +- ...iesBatchWithInvalidDocumentBatchAsync.json | 14 +- ...nizeLinkedEntitiesBatchWithNullIdTest.json | 14 +- ...inkedEntitiesBatchWithNullIdTestAsync.json | 14 +- ...zeLinkedEntitiesBatchWithNullTextTest.json | 14 +- ...kedEntitiesBatchWithNullTextTestAsync.json | 14 +- ...LinkedEntitiesBatchWithStatisticsTest.json | 14 +- ...dEntitiesBatchWithStatisticsTestAsync.json | 14 +- .../RecognizeLinkedEntitiesTest.json | 14 +- .../RecognizeLinkedEntitiesTestAsync.json | 14 +- ...cognizeLinkedEntitiesWithLanguageTest.json | 14 +- ...zeLinkedEntitiesWithLanguageTestAsync.json | 14 +- ...ognizePiiEntitiesBatchConvenienceTest.json | 14 +- ...ePiiEntitiesBatchConvenienceTestAsync.json | 14 +- ...iesBatchConvenienceWithStatisticsTest.json | 14 +- ...tchConvenienceWithStatisticsTestAsync.json | 14 +- .../RecognizePiiEntitiesBatchTest.json | 14 +- .../RecognizePiiEntitiesBatchTestAsync.json | 14 +- ...ecognizePiiEntitiesBatchWithErrorTest.json | 14 +- ...izePiiEntitiesBatchWithErrorTestAsync.json | 14 +- ...izePiiEntitiesBatchWithStatisticsTest.json | 14 +- ...iEntitiesBatchWithStatisticsTestAsync.json | 14 +- .../RecognizePiiEntitiesTest.json | 14 +- .../RecognizePiiEntitiesTestAsync.json | 14 +- .../RecognizePiiEntitiesWithDomainTest.json | 14 +- ...cognizePiiEntitiesWithDomainTestAsync.json | 14 +- .../RecognizePiiEntitiesWithLanguageTest.json | 14 +- ...gnizePiiEntitiesWithLanguageTestAsync.json | 14 +- .../EntitiesCategories.json | 14 +- .../EntitiesCategoriesAsync.json | 14 +- .../RotateApiKey.json | 43 ++-- .../RotateApiKeyAsync.json | 43 ++-- .../TextInKoreanNFC.json | 14 +- .../TextInKoreanNFCAsync.json | 14 +- .../TextWithDiacriticsNFC.json | 14 +- .../TextWithDiacriticsNFCAsync.json | 14 +- .../TextWithEmoji.json | 14 +- .../TextWithEmojiAsync.json | 14 +- 176 files changed, 1708 insertions(+), 3737 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json index 29779721ee8ff..84c81469db4b3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6a137b27173ad94482a8e3fd0303c2eb-b0f838883bfd0643-00", + "traceparent": "00-eba5277f446bef4785644a6e786ab5da-01e92ceebef9c94c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7fbb9dea32b8080ffdad856789b2330d", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5904ee8d-c2df-498b-98c1-fb91defdcdf2", + "apim-request-id": "7cfb5566-5132-42c5-bc40-02f3f53b58e4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:13 GMT", + "Date": "Wed, 04 Nov 2020 22:26:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "97" + "x-envoy-upstream-service-time": "111" }, "ResponseBody": { "statistics": { @@ -137,6 +137,6 @@ "Variables": { "RandomSeed": "508530765", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json index dadacb6836a91..7fcb031ec63d1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-16eb90430314b94c946ff67c9822b6ad-bf802530174e2b4a-00", + "traceparent": "00-84f580ab78368f489659cdd79d91c77b-09153d0ce673e541-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9ce6282fe98018f1ea732ad3ecd9e59c", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7b0056ab-abd3-4c21-af55-0672b4529180", + "apim-request-id": "0c8a5711-f68e-49dc-b432-1ac153994a92", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:15 GMT", + "Date": "Wed, 04 Nov 2020 22:26:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "86" + "x-envoy-upstream-service-time": "112" }, "ResponseBody": { "statistics": { @@ -137,6 +137,6 @@ "Variables": { "RandomSeed": "172625245", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json index c82df6f68f356..5220fd1d3f2e8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5e9d28749616a84d898846a594287f6b-231045df83d94e40-00", + "traceparent": "00-b3212ad516f71348a2b4e2292df1ea72-cdd33bb69e9bd943-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "119c99db1e02c34777426e77d5c75cb6", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3c62c8dc-aadc-44b7-ba64-7d5c28890a0c", + "apim-request-id": "138d21f3-7ea0-49fe-96cf-a496a251ba09", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:13 GMT", + "Date": "Wed, 04 Nov 2020 22:26:31 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": "98" }, "ResponseBody": { "documents": [ @@ -123,6 +123,6 @@ "Variables": { "RandomSeed": "1081025872", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json index 67c3a412255c5..5b5108173efff 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5f094fa0336e3b45abbd0579a277dbb0-ebf8933c242aea4d-00", + "traceparent": "00-87d64195ef4f1b4598346d57e200e045-71713760b9edfb47-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9d1067da67ede0f99771b2c8070f5079", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8b6961c1-4d5d-4941-9f48-0571cb332806", + "apim-request-id": "7f3e7413-b60b-4a99-ab29-50dcfc6182a2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:15 GMT", + "Date": "Wed, 04 Nov 2020 22:26:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "90" + "x-envoy-upstream-service-time": "111" }, "ResponseBody": { "documents": [ @@ -123,6 +123,6 @@ "Variables": { "RandomSeed": "353364953", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json index 89cc8121a07b1..95305daf5f796 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7a0ada7d81fe7d4789c8ea5f754908de-1c63d087dd76b74e-00", + "traceparent": "00-189d2f0460fd6747be3c5aadb22d2107-03f75b7d70d5dc48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "86b79e2f0559eb97f25b1c5b233a68dd", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f7178361-c679-48ef-a6e4-56e8cde5e241", + "apim-request-id": "03577640-2343-4834-b1bd-4396c25ade06", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:13 GMT", + "Date": "Wed, 04 Nov 2020 22:26:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "91" + "x-envoy-upstream-service-time": "108" }, "ResponseBody": { "documents": [ @@ -123,6 +123,6 @@ "Variables": { "RandomSeed": "1844243829", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json index bd5dcd06724b0..38d4bf72447e9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5e91bf163602284b802e0514fb8bf740-ba240bd90ca9fa47-00", + "traceparent": "00-b3e2cd093d105149b1d8a9326a7737c7-ce2ad28c09b67548-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "300adb4a8ab9aa03c50b104c35b7e035", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "86cbd87d-f7db-4eea-a206-2f5c3a5ddb1b", + "apim-request-id": "c3a88309-bc18-48db-94b3-f8137ccbfe5d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:15 GMT", + "Date": "Wed, 04 Nov 2020 22:26:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "94" + "x-envoy-upstream-service-time": "186" }, "ResponseBody": { "documents": [ @@ -123,6 +123,6 @@ "Variables": { "RandomSeed": "413540855", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json index 85d2dd96682b1..4e2b659481d46 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8959e3cbe50b3c43955c120359ded6ac-4e9b7ebdd3f77241-00", + "traceparent": "00-ed3f65c803dd6e42a119f700a3ee035c-6e086393fb48bc48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "abe848a0b41107615847f9d88e292402", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "edc77e4b-cc1f-41d9-a4ad-339f61a72b53", + "apim-request-id": "b89f0854-4f75-416e-bf12-deabd2cf89af", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:13 GMT", + "Date": "Wed, 04 Nov 2020 22:26:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "86" + "x-envoy-upstream-service-time": "115" }, "ResponseBody": { "documents": [ @@ -123,6 +123,6 @@ "Variables": { "RandomSeed": "1867949087", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json index bfab4337191d6..17d5d9392854c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ed67027435254043ad3a28093db0027a-ee3ec139d72df648-00", + "traceparent": "00-7315df88429e8149a1aff36e944f02d6-76317aa9b1709343-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e76a4622dec6c96d7ae12bfd307d2c70", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "46b86423-81c4-4470-bd7e-fcd81bdb8967", + "apim-request-id": "e803ee95-856c-40c6-a599-e56d80858e35", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:15 GMT", + "Date": "Wed, 04 Nov 2020 22:26:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "80" + "x-envoy-upstream-service-time": "115" }, "ResponseBody": { "documents": [ @@ -123,6 +123,6 @@ "Variables": { "RandomSeed": "1600068101", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json index a3507e07a699b..768003cb34cee 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-afe74a0bf03f0f43ada240a48ab9665e-b8244797a3fa834c-00", + "traceparent": "00-5651d1266ad8e541ab6da4851160dd29-2d42126079a8e348-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ddaaf35e96b9dae8e520d1e25db41ef1", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ce623543-d06d-4300-bbbb-5a5713935fd1", + "apim-request-id": "ef74e705-c7c3-4737-80db-0c4fa2cc6f8a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:13 GMT", + "Date": "Wed, 04 Nov 2020 22:26:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "86" + "x-envoy-upstream-service-time": "107" }, "ResponseBody": { "statistics": { @@ -137,6 +137,6 @@ "Variables": { "RandomSeed": "1265629352", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json index 51dec00bd9353..40b1d23f5018a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-28f678eb016a5148b470e759ba849b97-f29452dac258e644-00", + "traceparent": "00-bbc149468f92e44ca2e3e80bed9ef03a-ed9ea28021cfa14a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a461009a7ec465a3d8be1a54c58e3575", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "82ff2e33-d94f-4834-8df6-14882362d7dc", + "apim-request-id": "2c38a868-3a30-4fae-9095-ffa60febbd44", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:15 GMT", + "Date": "Wed, 04 Nov 2020 22:26:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "85" + "x-envoy-upstream-service-time": "115" }, "ResponseBody": { "statistics": { @@ -137,6 +137,6 @@ "Variables": { "RandomSeed": "598481068", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json index 5727c663a001c..2b795e3c9610c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b6d38df7717fb940adb3f8eaf8a1549b-37d87c26000ee347-00", + "traceparent": "00-8cfb7dbbfdc23843a951fe8e82527835-ea3ad082a40f884d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f4f79420d55186c560e783cd65904498", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d0a579fa-b776-43be-a154-904cfb9df6d8", + "apim-request-id": "b45275a0-0d11-4e2b-bf84-08950a5326a2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:13 GMT", + "Date": "Wed, 04 Nov 2020 22:26:33 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": "108" }, "ResponseBody": { "documents": [ @@ -123,6 +123,6 @@ "Variables": { "RandomSeed": "843042242", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json index 377594889d38b..aa8113e386045 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f1713c68872dbd4f8581f7d130131309-0898ccdecd7c1742-00", + "traceparent": "00-fa3db5637b77984d8fd02ab191c3c8c2-ef607ceff4d4af41-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a82300e8850457b9e1ddd84e5e66ebf5", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "969064eb-960e-4742-90d4-835bc7c05877", + "apim-request-id": "74e3e542-cc4e-401a-9d0e-224fab7b3357", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:15 GMT", + "Date": "Wed, 04 Nov 2020 22:26:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "82" + "x-envoy-upstream-service-time": "104" }, "ResponseBody": { "documents": [ @@ -123,6 +123,6 @@ "Variables": { "RandomSeed": "1612151291", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json index f47770eca1442..d100bad7fba2c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-267f38f94bb0e340a12c07866da3b757-9e1f918bdd6b1148-00", + "traceparent": "00-f8c88810eff4574bbe90df99f4c5a563-fbcd34fe07fb2a49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d0c9faccbe22f6229408f2811c507283", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dee52df0-7d2d-4082-906f-823622f909fb", + "apim-request-id": "efed8094-1ed7-4a55-9403-ea1221573c83", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:13 GMT", + "Date": "Wed, 04 Nov 2020 22:26:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "89" + "x-envoy-upstream-service-time": "115" }, "ResponseBody": { "documents": [ @@ -252,6 +252,6 @@ "Variables": { "RandomSeed": "1558892529", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json index 255381a5b3897..bbccd7bcdad9e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1b808790d9f8c143a83a68816993be25-6d159ece2b79b54e-00", + "traceparent": "00-9e6f31c83d855747bda5936c17b9675e-b2087a50c4b41c47-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "99f36dc03d5b69cad15ff682fb68e8a9", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "938c34a9-2b3c-4956-b4e7-2d896c7e6cbf", + "apim-request-id": "e1c8bc3d-33d9-4968-b88e-b90bd98faf59", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:15 GMT", + "Date": "Wed, 04 Nov 2020 22:26:40 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": "127" }, "ResponseBody": { "documents": [ @@ -252,6 +252,6 @@ "Variables": { "RandomSeed": "1809635661", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json index fe31c6ee40e44..3533e06b05a20 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-63135571d337eb4aa324c127df87b8cf-c56fd3372960f94e-00", + "traceparent": "00-c8712397243098408c48278c636153be-5506a31acbd9f349-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ea37c4c5b43ade506c055e9d1167082c", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "087690d9-e23a-43dc-b4d0-8e80169506f4", + "apim-request-id": "6ca4511a-c87e-40dc-a28c-79cf0fc35a9e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:13 GMT", + "Date": "Wed, 04 Nov 2020 22:26:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "85" + "x-envoy-upstream-service-time": "106" }, "ResponseBody": { "statistics": { @@ -137,6 +137,6 @@ "Variables": { "RandomSeed": "1646397317", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json index 680cfa333ecab..6b236f6cddf81 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-49bd1139f2d43248a7625a81ae43e768-0a43264ad9820e44-00", + "traceparent": "00-5619baa93138fb4684bc63c742d42224-b90ca9305e2e6640-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d297a709781eea07c58dac26eba5fefd", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a4b09a41-615f-4bdb-8a85-0e5232bed7a7", + "apim-request-id": "58dac5d4-7556-45ff-9ddd-c649ec82e140", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:16 GMT", + "Date": "Wed, 04 Nov 2020 22:26:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "86" + "x-envoy-upstream-service-time": "116" }, "ResponseBody": { "statistics": { @@ -137,6 +137,6 @@ "Variables": { "RandomSeed": "1063573528", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json index bf6b435147ebb..6c35ce35fbc0c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5ee1aaa746cec648a4e08e5e6db22dff-56230b709db46444-00", + "traceparent": "00-ae15a2a8d59c344fbd62a704d1ad74ca-e26225a90d2b3444-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b93a282865c5e574aa1703755dff0595", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ca86261f-4d4d-4440-94a1-6d63bd87021c", + "apim-request-id": "23b63799-2cd4-49c4-be10-2224bd86584c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:14 GMT", + "Date": "Wed, 04 Nov 2020 22:26:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-envoy-upstream-service-time": "117" }, "ResponseBody": { "statistics": { @@ -137,6 +137,6 @@ "Variables": { "RandomSeed": "1108552328", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json index 04b80a2c87867..2219cbcd25168 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5c82881945e55a498dad4130266be51e-02c92729fd1f7b4a-00", + "traceparent": "00-b7ec6da0db2a1a47b07437006b552f0d-5a755fb10557e947-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "896aa869bee9e15710e9b281353ff7e1", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a0c4820f-72bd-4aa6-b47d-d1a23eb4fe52", + "apim-request-id": "fd616cc3-95b5-422c-8663-3638fac2879e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:16 GMT", + "Date": "Wed, 04 Nov 2020 22:26:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "88" + "x-envoy-upstream-service-time": "123" }, "ResponseBody": { "statistics": { @@ -137,6 +137,6 @@ "Variables": { "RandomSeed": "1480611001", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json index 8a07033569fef..529d0b740ffac 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e918bc41c56fcc4aa0a2940d8602a6a8-0a971260055ba74f-00", + "traceparent": "00-bc47ae91a03c3d49a3f6de85901c4964-9130011d92cb334f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f4c1d2e666ddf215fcefdfedc5dd71c8", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "79b4a55f-0143-4a6d-9189-5e8b8a3c6c05", + "apim-request-id": "31c19daa-eb06-4dca-bca2-3072f91b59b3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:14 GMT", + "Date": "Wed, 04 Nov 2020 22:26:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "90" + "x-envoy-upstream-service-time": "388" }, "ResponseBody": { "documents": [ @@ -123,6 +123,6 @@ "Variables": { "RandomSeed": "876796289", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json index b1fb4a5ec02a2..cddbb546e1080 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-875d44207b139c40a29384b7f57f4fc9-ba7afe447942d04c-00", + "traceparent": "00-a9eb59c616049b448f28ae738e384efd-b1a9a13e87ab3347-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "26baa46075d446ba158f6fd6eeae447a", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ce4bfee7-a1f2-42d8-a2fd-77b50bc7a66e", + "apim-request-id": "3269fdc6-2ade-4398-976b-f6557816cadc", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:16 GMT", + "Date": "Wed, 04 Nov 2020 22:26:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "106" + "x-envoy-upstream-service-time": "143" }, "ResponseBody": { "documents": [ @@ -123,6 +123,6 @@ "Variables": { "RandomSeed": "539665015", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json index 94569e6f02642..d9f5c1eb1da1d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "207", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ff704f87529c6a4eb95af9a2042005f9-9069e5028366db4d-00", + "traceparent": "00-cd3a40c2d5aa38459a0c846aca468f64-643687557017a24a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "381e2b63f2088d45202cae7fd25e5042", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1bf0332f-171a-4e5c-ba63-4ff043e8e099", + "apim-request-id": "b29740eb-1c8f-42a1-9e5e-ae80ac5d3581", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:14 GMT", + "Date": "Wed, 04 Nov 2020 22:26:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "80" + "x-envoy-upstream-service-time": "120" }, "ResponseBody": { "documents": [ @@ -118,6 +118,6 @@ "Variables": { "RandomSeed": "1934874503", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json index cab90310dc36b..b76aea569a2dc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "207", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6db8b30bc9b20145bb6a67eff46116cb-d553c4f131feb64b-00", + "traceparent": "00-ce591cb4e641e04785ff946692acbe70-62504df15470f049-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "29ac615e7a25f0506bd8c86ac7133e14", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f13d637c-aa70-4778-beaf-11b4a5b896ef", + "apim-request-id": "15882727-d374-4c21-bc53-0b280d140b6d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:16 GMT", + "Date": "Wed, 04 Nov 2020 22:26:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "82" + "x-envoy-upstream-service-time": "125" }, "ResponseBody": { "documents": [ @@ -118,6 +118,6 @@ "Variables": { "RandomSeed": "951483506", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json index 56b0f5d06a466..3ae4842afd56d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f6c83382e1a2da4abb21e31e3ba647c1-d7cfda9d8529e749-00", + "traceparent": "00-c018213fadb4844eb46fe611e98c34cf-9fefbf5122fd9248-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e97c715478efd2b509099d562415356f", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "f7e294cf-e0a7-430b-8a3c-998e69815cc2", + "apim-request-id": "ef5857cd-f0de-451e-bd43-7d8530a3ee28", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:19:14 GMT", + "Date": "Wed, 04 Nov 2020 22:26:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "error": { @@ -53,6 +53,6 @@ "Variables": { "RandomSeed": "627709314", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json index cb0092f774ec2..afdfda68b0db1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2d1392c263a2c34ab00a28ee11e78bff-1e6e08c5d709ce4d-00", + "traceparent": "00-8354aa33c6147b42acbcc045e7a07957-80680e17acb05a4b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7d28785fafea6a705989dd511c352058", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "4cf9df69-5ac6-4482-980c-f38d380c4f3c", + "apim-request-id": "b1929088-36be-4b0c-b834-72f7ccf64df8", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:19:16 GMT", + "Date": "Wed, 04 Nov 2020 22:26:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "error": { @@ -53,6 +53,6 @@ "Variables": { "RandomSeed": "1350287540", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json index a52072a23030f..925491cb51c1b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-becd4269c74b03438d60930cc9393851-f14371019192e44d-00", + "traceparent": "00-2b6d14c196d89040855e21c8855cda54-766a48a1767cdc4e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a82047bc1e56521f19fee095619725e3", @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8fb79b13-8788-4952-8c61-b5d986ffa527", + "apim-request-id": "15a7a12d-866d-4f68-9eb6-c7e537a0bcaa", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:19:14 GMT", + "Date": "Wed, 04 Nov 2020 22:26:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "documents": [], @@ -60,6 +60,6 @@ "Variables": { "RandomSeed": "847855095", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json index c0de37e270821..699cb75e56e50 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-50f07e57da28f24f8e6cee033ade61ef-9b7bff95c88d1148-00", + "traceparent": "00-aa888f50590a2242834d4965c4379022-b7f9fbf1af62df41-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e4b5e1c573e3bc3fc5137a6a90633740", @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1c4c9990-8e4e-4289-a366-97497248c20a", + "apim-request-id": "2feccaf8-ef09-45c1-a90b-9c4644d8320d", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:19:16 GMT", + "Date": "Wed, 04 Nov 2020 22:26:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [], @@ -60,6 +60,6 @@ "Variables": { "RandomSeed": "256924080", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json index 55a5bae531dfe..cfc1bd2e46f86 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cf01c440521d7645b4aaaa605a97cc89-52faf025f3402a48-00", + "traceparent": "00-376019fd9b88f5459f619866c763fe9e-eedaad4017a0c54d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4bb052b32c66958101e8bfb2d70a96bf", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c5545df9-5fbc-49a0-b4fb-778f1a93c080", + "apim-request-id": "30a16aaa-a3a5-4161-9ea1-f4c3e1ad7d4b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:14 GMT", + "Date": "Wed, 04 Nov 2020 22:26:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "88" + "x-envoy-upstream-service-time": "178" }, "ResponseBody": { "documents": [ @@ -252,6 +252,6 @@ "Variables": { "RandomSeed": "1053489488", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json index fdcec24c6841e..807d462ae52ed 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4ee1471ece328543897d902e844b5cab-aec39c2a23125641-00", + "traceparent": "00-26942abcb4e1094ba1cae4c3c07393f5-fc026f22f8ab3342-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "10469efe411909195ef72681bf249b22", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c9368c7d-05f7-4745-b262-326e0e868bbf", + "apim-request-id": "ad0c39b2-7245-4144-bc86-5f367c9d7ee9", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:16 GMT", + "Date": "Wed, 04 Nov 2020 22:26:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "89" + "x-envoy-upstream-service-time": "103" }, "ResponseBody": { "documents": [ @@ -252,6 +252,6 @@ "Variables": { "RandomSeed": "1224561162", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json index 8b1242f7371c4..9001fe3052df6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-26e00bf1d9743b4db33704056d854c19-5acb938960572040-00", + "traceparent": "00-cf5d1a49152e894e93328d5b996bc8c7-bd19d583186cb040-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "380d3332cec3ce7a5b0d21c20c2f8b8d", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "81c70bd7-de76-4c58-8b98-68b6a976a945", + "apim-request-id": "d1350550-34a2-46b2-b143-0d4bd37a8973", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:14 GMT", + "Date": "Wed, 04 Nov 2020 22:26:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "89" + "x-envoy-upstream-service-time": "153" }, "ResponseBody": { "statistics": { @@ -137,6 +137,6 @@ "Variables": { "RandomSeed": "2080433243", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json index d695a685c70e7..566121cf95e92 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-45ec29f9499a734e9dc9d8e4feb8791c-cf535364ebac8941-00", + "traceparent": "00-283cc9f81f355b489a3a6971aebe5e3a-bd2c7ed94e707944-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f794f0733bb3c43d680189f109278930", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "08e98f6b-6caf-45f4-a80c-cef86ea799bf", + "apim-request-id": "a40a184b-b04b-4547-8596-6ec812cf1460", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:16 GMT", + "Date": "Wed, 04 Nov 2020 22:26:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "91" + "x-envoy-upstream-service-time": "108" }, "ResponseBody": { "statistics": { @@ -137,6 +137,6 @@ "Variables": { "RandomSeed": "1104601644", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json index 6f05c59b5ff1e..f55680df241a0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e05fbc786946634cbc8576cbe1829906-27bc02c0df640a46-00", + "traceparent": "00-7643d11364a93048aa094debb4dc520e-598fdcfc96c5b44e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4e5bdbe5820d38723d195b24082e286d", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "895e8d81-ec06-47d0-b47c-6a4673f7a93d", + "apim-request-id": "42ebcfc0-0b15-4e48-a746-ebe10f1383a9", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:14 GMT", + "Date": "Wed, 04 Nov 2020 22:26:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "79" + "x-envoy-upstream-service-time": "194" }, "ResponseBody": { "documents": [ @@ -73,6 +73,6 @@ "Variables": { "RandomSeed": "2146668003", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json index ddd54779d5188..b8c39d0b4e35b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-784a5e38b1213f4fa1e121f4d68113a3-72eab3515c277b48-00", + "traceparent": "00-6ef801a7b71dbc409c29841b1f5a74ee-4061d2159b11ff42-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "03ba29d245db7d4660e70538d783a159", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0b5ffac3-1c78-41a2-a05c-58d7e2852eae", + "apim-request-id": "e0b57cd7-8d8a-4e91-84a6-56ac285b65ee", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:16 GMT", + "Date": "Wed, 04 Nov 2020 22:26:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-envoy-upstream-service-time": "103" }, "ResponseBody": { "documents": [ @@ -73,6 +73,6 @@ "Variables": { "RandomSeed": "9060464", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json index 6588286ef0886..ddc4140071e93 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-833031024c76a442897079adaaf4c384-1fa108f6399c9349-00", + "traceparent": "00-95ab735acec8e64ba66ea7961bffa4bc-6a5910d08fb39d47-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1cd519dfbccdba31b1f719f550932df6", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4b3ea9de-9002-40da-9ea7-4ac0ac2df542", + "apim-request-id": "7a56d706-1580-4aba-9749-491ea37060e6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:14 GMT", + "Date": "Wed, 04 Nov 2020 22:26:36 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": "101" }, "ResponseBody": { "documents": [ @@ -73,6 +73,6 @@ "Variables": { "RandomSeed": "673624529", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json index a5e0fa1d5409a..6b5e1412615c6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-301d8a17e009b04d882cc1782b3a83da-36e31b4bfc709848-00", + "traceparent": "00-89d88e445aca0149a41848164f0250d3-14ef364131bafd4d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e4628ff9d75e35fa30a2a74d75b5d054", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3f4c2056-bc5b-42aa-b13b-eff0f8929056", + "apim-request-id": "97eff2ab-d23a-4425-9857-7de46b5f91b2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:16 GMT", + "Date": "Wed, 04 Nov 2020 22:26:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "85" + "x-envoy-upstream-service-time": "159" }, "ResponseBody": { "documents": [ @@ -73,6 +73,6 @@ "Variables": { "RandomSeed": "486778307", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json index dc459f0e89b76..a504b13079587 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-aa31cfe30b2e6a41b9733ed7adedd268-ff188ec426031e48-00", + "traceparent": "00-43f2a6a9bc6d0e409c311fc2a0bf0c51-2085d6d77b8ecd4f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0226741a4a3852fb661facf15a20cdfc", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c823d8fa-c515-4fe7-9cc9-c00ea52a4bfb", + "apim-request-id": "a45d2efc-8e51-4ae0-923a-433d7990e00b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:14 GMT", + "Date": "Wed, 04 Nov 2020 22:26:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "100" + "x-envoy-upstream-service-time": "127" }, "ResponseBody": { "documents": [ @@ -73,6 +73,6 @@ "Variables": { "RandomSeed": "735963321", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json index 3fcf5a27c9d76..870e166695c20 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-67f4f126074d3f4fb2e27731a4694c6d-e3b3af0c4c87b347-00", + "traceparent": "00-4fe3f01c0edc9e459c6fc8e3972594d2-726cf0cc39751a49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1d19c9bc741aeaae2a3044500760d7de", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8e067542-0812-46da-bd9b-6d2d2bb5b559", + "apim-request-id": "1e9a8141-ae51-4b79-9217-c1478bca9128", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:16 GMT", + "Date": "Wed, 04 Nov 2020 22:26:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "94" + "x-envoy-upstream-service-time": "126" }, "ResponseBody": { "documents": [ @@ -73,6 +73,6 @@ "Variables": { "RandomSeed": "1305725402", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json index acc375011f7ad..0339ae092f43d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d4949e2ac80fa949b710c8599cc5489e-dd2e807c9f34ab49-00", + "traceparent": "00-4454c413c62c9349af28321dd75f7381-ff2cb8d3941bb54b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b1c263e328066fc8dce532b649cbfd03", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e6011922-f138-4967-b75b-fcd9c51ee3d4", + "apim-request-id": "e35c9b81-61c9-42c8-af82-82b4bd6a94ab", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:14 GMT", + "Date": "Wed, 04 Nov 2020 22:26:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "96" + "x-envoy-upstream-service-time": "124" }, "ResponseBody": { "documents": [ @@ -73,6 +73,6 @@ "Variables": { "RandomSeed": "137641087", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json index d8c4317f0a57d..bae7ba2fa8f29 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d72e6ee89b431a42a1629994628f9b7f-d20082833498c849-00", + "traceparent": "00-58077726575323428c5f15003c346199-eafe143edd2be447-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "61e4104888cde5cbe34786063a0401dd", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "09e915e1-a628-46c0-8475-b3cd0822958f", + "apim-request-id": "7b38de61-a0f5-40f8-97cd-609776e53e9f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "98" + "x-envoy-upstream-service-time": "117" }, "ResponseBody": { "documents": [ @@ -73,6 +73,6 @@ "Variables": { "RandomSeed": "537807865", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json index 7f69f2a647e07..a362d2cb46371 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "127", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b8b35c1ec201fd46b2361e87e3a2ede5-9cddd11df8e65e45-00", + "traceparent": "00-f555faa4a89a5240aca2f70e2ad0c331-f912337c2e6eee4d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1e33ed24967d42087f8188a6111ef9b0", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "74d6bc71-c601-490f-a74c-87275bad9ca7", + "apim-request-id": "22a3a1f2-ea41-4098-90ed-95d174623dd7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:15 GMT", + "Date": "Wed, 04 Nov 2020 22:26:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "85" + "x-envoy-upstream-service-time": "109" }, "ResponseBody": { "documents": [ @@ -177,6 +177,6 @@ "Variables": { "RandomSeed": "4400155", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json index 41c96b1aec6b4..03d3124c0f2d5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "127", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4f0a67d3b4bbb24db87273a0d9cc7bb0-806940f56201fe4b-00", + "traceparent": "00-dcb10f5a75f8f54aa4217775f3e07abb-d879afbebad3914d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "504a9c53bf1eca7814bfce867e01718a", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b822b85c-5eab-45cb-8578-8b7ef60e575b", + "apim-request-id": "b8280865-6b3d-407c-b918-72e93e5cea1d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "79" + "x-envoy-upstream-service-time": "120" }, "ResponseBody": { "documents": [ @@ -177,6 +177,6 @@ "Variables": { "RandomSeed": "1364359232", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json index a552196560a5f..873374f5a3886 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8ef6e1c8e4b4bf4cb71ed3f62b4ad989-9cfd2b1eb57e164f-00", + "traceparent": "00-b2dc372d823c3b498bdec6fed5b93471-ed7c6a8cd76d5543-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "558a7442c3b1c5137141db1dd8ca6858", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "35ab8056-23a5-4a87-a1ca-32c0c5fc3dd3", + "apim-request-id": "e89baeb9-e520-44cb-8dcd-7c91253e7afe", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:15 GMT", + "Date": "Wed, 04 Nov 2020 22:26:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "78" + "x-envoy-upstream-service-time": "112" }, "ResponseBody": { "documents": [ @@ -75,6 +75,6 @@ "Variables": { "RandomSeed": "1727170942", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json index f924f1259e678..a68d22a1b72e8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-62212f898392fa4fa38fe00ae08862c0-25e0c3ef84dcae44-00", + "traceparent": "00-0bfd1977bd046a469354882515245b62-59a2cba3d6083141-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f6867f38d810d57a89dad763eab07a05", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "942ef9f3-019c-4929-a3ef-46e423964dbd", + "apim-request-id": "8e1c4797-f543-49a7-b4e5-59a0b516bd26", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "82" + "x-envoy-upstream-service-time": "114" }, "ResponseBody": { "documents": [ @@ -75,6 +75,6 @@ "Variables": { "RandomSeed": "167361615", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json index 548e6a8dc2668..d9d5f79190149 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "80", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-574a6db44ca5da4e93485da5c3d83815-de77998acd295c47-00", + "traceparent": "00-b97f49f6cc691d47abf709b5915b072f-5c27ea9084c1aa4c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8d0590d28394353aadd5df7e697ac312", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c23f30d3-b446-4705-921f-d36c38396b2c", + "apim-request-id": "d2033af6-cd16-4600-b915-519d74cce9b4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:15 GMT", + "Date": "Wed, 04 Nov 2020 22:26:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-envoy-upstream-service-time": "124" }, "ResponseBody": { "documents": [ @@ -104,6 +104,6 @@ "Variables": { "RandomSeed": "825040414", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json index 446b6ca8d9fc3..fd939ae95111f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "80", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-71e9cc4868bf1e49a6c72a12be38ce48-573568fd8de8354f-00", + "traceparent": "00-bec37934f528d84ebe26b6c22b72364d-1b30ad6261d6fe4e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "94ab183ce7dcf7c7f3beeb119ae08867", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "af41370d-5a3c-4121-ae8c-143646cc3377", + "apim-request-id": "9eb7ddba-6d6b-4ef0-8611-dcb64053f0ec", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "78" + "x-envoy-upstream-service-time": "100" }, "ResponseBody": { "documents": [ @@ -104,6 +104,6 @@ "Variables": { "RandomSeed": "1263606711", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json index 7464adb5af78a..ecf5afcb1e501 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ee3347fedcc5e343bd8170f7211c1b8d-a79dc0bf9f6c7740-00", + "traceparent": "00-257094ae735b90468c057b0e715bb868-c50fbc5cd002e84d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5005f5e8a08b47218215f19574b370f6", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "402f919c-2a9d-4197-98be-e5cec950e347", + "apim-request-id": "5b19b256-fd27-43e3-93ba-d4b1930928fb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "documents": [ @@ -87,6 +87,6 @@ "Variables": { "RandomSeed": "2925177", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json index 4d549e9c05424..613da477b79b3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-35458d7d34d39c43be450a0532880079-d44ed236edd2d042-00", + "traceparent": "00-708ebb9860ebe74388b57b3044b25d60-c370eca86d72de42-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3574863b78b3d4b99962ee1a8b7bbd89", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "56a74ac2-7d25-4f46-8869-61af8a54c2b8", + "apim-request-id": "bc62a513-e60b-4f66-b595-e8ea2566f05a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "documents": [ @@ -87,6 +87,6 @@ "Variables": { "RandomSeed": "1287375904", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json index 5f7f8c19254d3..4d184b02b2a4e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-23a204e35604174aa8d15a9e62f8e53d-7b001d42e7726b42-00", + "traceparent": "00-8a66d4132051db4aac9410a9b7a4f41f-694963f42581cd4c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "738db85ac016be284349434968e4adff", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c4e57ca9-a4e2-41c5-a8f0-abfae348dab3", + "apim-request-id": "e48dd82c-62dc-469b-91e3-ff2df65c91a2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:44 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": "28" }, "ResponseBody": { "statistics": { @@ -105,6 +105,6 @@ "Variables": { "RandomSeed": "211607003", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json index 1c78555c878ac..12c4b59c646e8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8671c2bfcf971b4caedaf27b18cf1e26-97a3b72a6972ea42-00", + "traceparent": "00-da301d45ba0bd142aad7d8b8dd3e03e4-c526c5021a472442-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6246079b8393935bca52b813124b2ad7", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "53b0e2b9-48df-4dd3-a3e1-5e80a2b27df2", + "apim-request-id": "9ec43df9-1ed1-4e04-8d68-d3b8540efdb8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:47 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": "10" }, "ResponseBody": { "statistics": { @@ -105,6 +105,6 @@ "Variables": { "RandomSeed": "293475495", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json index cd2a8b7815c94..9756d9acca316 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e8c9d70258528e469bf59a516f43ad24-dcfd7856e4971f4b-00", + "traceparent": "00-d1a78e622c615e41a739312b88626bb3-f63850effd06704c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9ed49d935379ea824d7c2153a1e6e6e4", @@ -45,14 +45,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6b2a80e2-5b48-4be3-ab54-5caf10ecab6e", + "apim-request-id": "897de6f2-3ab0-4b55-8da7-93f6da964af0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ @@ -101,6 +101,6 @@ "Variables": { "RandomSeed": "1725013070", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json index 1949f1f5cd572..b31b413b571dd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-36b4fb24907b91469cf386ae4712c7a7-dab7ed16348ec647-00", + "traceparent": "00-eeb9c778a4440a46820ead0a98650f5a-c864d7210498624f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "da5f41d41140dce5b95983493bb999e3", @@ -45,14 +45,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "161fc87c-b020-4660-a3f4-c59cd7905e51", + "apim-request-id": "b88b4014-ad1f-4f42-b96e-65f63edac629", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "documents": [ @@ -101,6 +101,6 @@ "Variables": { "RandomSeed": "1564753879", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json index 511148f42a987..3b052407c889d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "156", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cb4ca169046b534d874246e15099858b-8656057c6f0ae644-00", + "traceparent": "00-929cccfa62357d40a099a513f358c5a3-0630e7c41ca45c4b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3ce40d8d4db949068b12a56808d1cfa5", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f1b666ef-e29a-4829-9363-80463ad07239", + "apim-request-id": "9974ff70-5b69-4955-b1d6-2970584cab9f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "documents": [ @@ -90,6 +90,6 @@ "Variables": { "RandomSeed": "1998787501", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json index 81f98dcd7248f..e255a5ce5edad 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "156", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8101db3cac66fa43b8e57e3d1811b019-76e8da40dc473646-00", + "traceparent": "00-bd0e9d4b01d09441a2c3b71d640497de-b5ff6d4be5616143-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "51807d44b190171f3639086e14582723", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2752bdbb-a5a2-44cf-929b-10cf264e7758", + "apim-request-id": "775cb6aa-97d9-4851-a448-7e4737ce2da8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "documents": [ @@ -90,6 +90,6 @@ "Variables": { "RandomSeed": "1902435763", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json index d53e7057db6a4..05091a85a44e1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "67", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-12e81061a566a3488ca1d65f8bcabec4-19e350139076f446-00", + "traceparent": "00-7ecf9aa2748364439064e2440b6aa4be-fef1d853219c6a4c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1a3b3f53b2eb19e83bb91b78bee10b95", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "004b9b6b-7e89-48a1-8bcd-524d3b9d9520", + "apim-request-id": "984cd53f-6553-4de0-bfa5-bd81d22e6538", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "error": { @@ -53,6 +53,6 @@ "Variables": { "RandomSeed": "1842668100", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json index 253f57a368544..9c62462e44774 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "67", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-737a7466d1db4042ab8761f83c5d3797-18ef4e158a519e4a-00", + "traceparent": "00-5dc61821167dab478dfe2d527f281d7b-4c29a990d8c32f47-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b23c80179f571f450cf30413f8966972", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "5422c14f-f9fa-43d4-aee9-feca5e060e6e", + "apim-request-id": "0da74946-78dd-4f4c-bd90-f2e276d40d51", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "error": { @@ -53,6 +53,6 @@ "Variables": { "RandomSeed": "1421275547", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json index 58be9e726cb08..d37d0fdf68f44 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "57", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9bf40520ebb5b14ab285f2ff88b2a316-7a71319f531f7d4d-00", + "traceparent": "00-e1da8e9471a0cf4f9389dee96d882797-e64fef35e86e774d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ed66d74da14036cde144d6235dacd6d3", @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "40e194c5-0f69-4d64-9699-bffda48f7e34", + "apim-request-id": "b531d02a-f03a-4124-a3fa-b39e3ddfdd02", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "documents": [], @@ -60,6 +60,6 @@ "Variables": { "RandomSeed": "1472278800", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json index 45967a517beef..2f87c87c61fe4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "57", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-600d429371dafe48a4a8d0e03b0f5171-7f8bd81baa77b14e-00", + "traceparent": "00-46f1ad6189e7f742a25d9d3c96b5e017-613ee6d79cc48d43-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "46af5eece4595e8658920ddb272bdb42", @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5a7f6205-6ee6-4099-af36-560505ed124b", + "apim-request-id": "40980d86-04fb-4190-96a9-74039df082eb", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "documents": [], @@ -60,6 +60,6 @@ "Variables": { "RandomSeed": "1379897499", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json index c3c7733c8fc77..b9b6b44a17f39 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ed07ff72e70dfd45b9b9709a43620283-3020074137045648-00", + "traceparent": "00-fcd9030ca4013c42b4ca5e89a6af196b-e291d8b5a143254a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "acad3cc12aa10a7667d1533045b0a321", @@ -45,14 +45,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4cc765fb-6ee3-4aee-b8bc-a1f3129ac600", + "apim-request-id": "e7dd87cc-2306-4a9e-ab91-63736c29ca3e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "statistics": { @@ -123,6 +123,6 @@ "Variables": { "RandomSeed": "1441514523", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json index 506a8b7e2beee..aba41127b9dde 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9841edda9a5d6d4ba290f34f50480784-ed876d3023441547-00", + "traceparent": "00-68726e988209e140a7ba604f54c52319-667667859a6fe843-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "50a7683e77aad92fe53b41b770dfa6fb", @@ -45,14 +45,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eeba82ba-833d-4bc2-a694-4c56ae2da861", + "apim-request-id": "ce68d1c5-2cb5-4df4-b5ef-4c1cebdaf762", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "statistics": { @@ -123,6 +123,6 @@ "Variables": { "RandomSeed": "1925146009", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json index 26f6c9cae2100..45388526b0d54 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "82", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a5fcf4035cf21e4e8f028f6ba31a4736-4cc7e1c915fa2948-00", + "traceparent": "00-a2744eaa8f52aa44be2c0f4c80020281-78c3323834df8f40-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7aaab163ed1d982c319bbad40483549a", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3c800ee5-b23f-47af-b6c8-70508e10680f", + "apim-request-id": "2b798158-4e9f-4f1a-9dfb-a124414add4b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "documents": [ @@ -59,6 +59,6 @@ "Variables": { "RandomSeed": "1945127661", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json index 7aa915c24e8b5..3e6f7463c7b4c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "82", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cb996c146dfa954a9ebabcee67221832-25c0b68ba6b6d24a-00", + "traceparent": "00-5fb4987a35a8ef46a0d3d193449cb16c-ce45c0217634a748-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d4cc6357ff58c85240bd64c6445c1d0f", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6bd3427d-64ef-4b07-96de-06af28c9864a", + "apim-request-id": "740bd3f7-c0a8-4109-a93d-e2dc3c2d2812", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "documents": [ @@ -59,6 +59,6 @@ "Variables": { "RandomSeed": "2124897013", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json index f62e6882698e9..7ec9527ae1891 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "95", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e586c93ecaa77b41861211406b1a6d17-9254eec4cc09254e-00", + "traceparent": "00-d3968d76dca37f4b8c2d9465a48055ba-19a4030219bfba45-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "98a2a27e9082d475805aa932800b5cf6", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "46b073cf-6c5b-460a-8da8-8b62ef1281dc", + "apim-request-id": "060762d7-9079-471a-8dc1-e7a279bc2032", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "documents": [ @@ -59,6 +59,6 @@ "Variables": { "RandomSeed": "1745096315", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json index 0114c7ba5f46c..cc5605afc8fa9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "95", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bf0a9467b60c8548ac49c42850cf7591-a8e948bc914db247-00", + "traceparent": "00-84c7e10cd2cadb42aded9c6eab6db5c6-7b882f85fc9cee48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f0760fc68cadb07ff1c89a4d1612c056", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f674f17e-f35b-40c1-8e40-b13f3c93f628", + "apim-request-id": "4c0911c7-efc0-4be3-b818-dfe16d7c65e2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "documents": [ @@ -59,6 +59,6 @@ "Variables": { "RandomSeed": "2142485753", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json index 4b36f4223bc64..a7413938885d3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "101", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fb62db1c13d7fe41afb0c123be4da710-5dbd79fc61915d46-00", + "traceparent": "00-6a32e2105780174ca1b7c5db237d72c0-402292d9cda55f48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d6d037d3997433f0d1d408295081d2b0", @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1af15c23-0a96-4a24-91be-f27afe7f7bae", + "apim-request-id": "f1836191-17e9-405c-bc3a-4a077cb9e0a3", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [], @@ -60,6 +60,6 @@ "Variables": { "RandomSeed": "467349083", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json index 9ea500ffecd4a..6c928c9786817 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "101", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9591dae16fbd9f48bf7b6cdc3b13e96c-daa579a3abfbb449-00", + "traceparent": "00-22d1cc2ab2ae2a4e973463e1e21a586e-88718408de8a4e49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9d92baec240d7c0e78b80d24d8752359", @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b6e2d8a1-475e-4563-b86f-db32c24b7fae", + "apim-request-id": "ddba4dbc-5141-4698-97d9-d3c8fe879604", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "documents": [], @@ -60,6 +60,6 @@ "Variables": { "RandomSeed": "1987537636", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json index 9a6960426234d..14bf7f81ffe1f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-30fffcf98199d74f93361d7edb85c11e-a82352584f42c645-00", + "traceparent": "00-f33556818b2f3d41adcbe035dcfc2499-066b81e215136e45-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9cded6f43daa9a1f5be8cb3934e1c44c", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "367652c3-ef02-42e7-ad4e-6c79688f2422", + "apim-request-id": "ab2ac609-f235-4ded-91c1-0b80413fbd08", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "documents": [ @@ -59,6 +59,6 @@ "Variables": { "RandomSeed": "1940049365", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json index bb4c329607fdd..5d1272d231bc4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d97d67053ee6ed4987784db8d6e9487f-ab1f8e75d3a42045-00", + "traceparent": "00-2f34fc4d0935924dad44f9823e58b503-ae2c96f3b53c264e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6124b40a04621bbacc815e287718638c", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d811e21f-3696-4059-bb8e-980e84a83188", + "apim-request-id": "e9344a08-3aac-4415-868c-7a1f08f680d7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "documents": [ @@ -59,6 +59,6 @@ "Variables": { "RandomSeed": "1328135102", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json index b3ad7f2941dd0..f09fc1f543279 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dca406232a37a64cad3d24f226732495-8b09ba8bd0192a4f-00", + "traceparent": "00-fe91e37d303fde41a6ba1eeeee95938e-58d6011368045642-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "dda057b9e217d2ba6e5090c17d8fd607", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b479582b-2f26-404a-a740-4798b3ae200c", + "apim-request-id": "6405e369-f1fd-48fe-9a9e-827b18a2dadf", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "documents": [ @@ -59,6 +59,6 @@ "Variables": { "RandomSeed": "397710028", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json index d2cb03ba2cd08..5c00cadf50e0e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-274fd07add5cf34d97fba700d419e71e-b6d36a8e1b833c4b-00", + "traceparent": "00-39b179dabde27f46abd245019a8409e7-99c592d95c74594d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bfed051a0d9b7fe81f8b58b8ccb397c0", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "84685aff-9217-45d5-a9fd-d6e90faf8808", + "apim-request-id": "87d08bff-fded-41f4-97a6-25b686e8a344", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:17 GMT", + "Date": "Wed, 04 Nov 2020 22:26:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "documents": [ @@ -59,6 +59,6 @@ "Variables": { "RandomSeed": "691922193", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json index 1d17f6f5ce862..80dea957a6738 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2d52d2c67fdc864dab4eb4f76dd805eb-de2ea74dcdb2ea4b-00", + "traceparent": "00-473f7060cf96d74abf13a21ba1fccef4-0ac5231e1e03a746-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "632e1038e2d2bd9cdcf3dd442e79c63c", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9be90bdd-1aaa-49f8-952e-8bdd72120837", + "apim-request-id": "a6ea83e8-0b69-481b-822e-337ed6de2366", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:18 GMT", + "Date": "Wed, 04 Nov 2020 22:26: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": "28" }, "ResponseBody": { "documents": [ @@ -73,6 +73,6 @@ "Variables": { "RandomSeed": "2011102001", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json index 86855005fdb2e..c102a40986187 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0603a4c030235f48a4ab15e038486f3f-a53165b05c1bd241-00", + "traceparent": "00-848b5cfed3b41b4190c5b2594624e583-80ec5769d1844f43-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bb6bf08839909e0e578d5bc1b428bcd2", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1c86549d-80a6-4c89-8c53-3d63c0cd6466", + "apim-request-id": "bdccca95-35e2-4bf3-9b77-28f6e94fb4ee", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:18 GMT", + "Date": "Wed, 04 Nov 2020 22:26:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "documents": [ @@ -73,6 +73,6 @@ "Variables": { "RandomSeed": "1790351005", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json index b34f8d6e0b25b..d6a7d000469d2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e357a42a8508c94a8a52cac47faf6f88-48e09385eb76d14c-00", + "traceparent": "00-40f4238462d33444814a272f5650ad3c-2bf10c6c47945343-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4dfa2958a1568d79bc14e1b570d63d15", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9cb63bc7-94b6-4be3-9153-74f2e5947436", + "apim-request-id": "59111d6e-eb95-4447-a632-3ddc2d6f53bc", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:18 GMT", + "Date": "Wed, 04 Nov 2020 22:26: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": "24" }, "ResponseBody": { "statistics": { @@ -87,6 +87,6 @@ "Variables": { "RandomSeed": "1074286074", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json index fd80785052c7a..bc187d2862340 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d68dbdd6e58d0247aeb173d14999df54-c9454eb9bd4b8c43-00", + "traceparent": "00-183c21bbc19990469d0f7deabdfdaf67-63c5837ff934c64c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f8f1e114d697e804255315d1c7e9b6ab", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cc702015-4555-4a8d-816e-ca65b0bcbf7f", + "apim-request-id": "a3350a66-66ec-46c6-8e05-07d6b6303706", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:18 GMT", + "Date": "Wed, 04 Nov 2020 22:26:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "statistics": { @@ -87,6 +87,6 @@ "Variables": { "RandomSeed": "1602869274", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json index 20b6d3d7416cc..efd46daf8133c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6e6094cf8f3b5a4380dadeb700b8052b-2328b77a344a7047-00", + "traceparent": "00-3d964b7a11bf184bbd245a9963e185ae-5d6c77e2f9cfc94d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f8376358e18a19e0b7e6f893926ac745", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fccb764a-51e3-404a-9c6f-ba3c6a07b435", + "apim-request-id": "770a73f2-1f96-4be8-a832-c6c9ac12a771", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:18 GMT", + "Date": "Wed, 04 Nov 2020 22:26: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": "53" }, "ResponseBody": { "documents": [ @@ -73,6 +73,6 @@ "Variables": { "RandomSeed": "979539460", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json index 054a49cb2aa37..4fb359be5c220 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4db57b5803700246b4257246bc9f2b89-2587b7bc1a2ab74d-00", + "traceparent": "00-6719bf2f0a77054e85e39847a79dc299-ed0299f8dd4e514f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "272edb015782fb6dbcae1cc2967deed3", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e49dd69b-4ea9-46db-a4af-2297d147f06e", + "apim-request-id": "36020243-f6ce-42b6-94b4-94c7be92fa66", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:18 GMT", + "Date": "Wed, 04 Nov 2020 22:26:52 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": "14" }, "ResponseBody": { "documents": [ @@ -73,6 +73,6 @@ "Variables": { "RandomSeed": "349892618", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json index 4a2db17cac160..8e42d64efdce7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7335353c7323ad4ca11ef4f2f8746b38-5a81ebd80d18d24f-00", + "traceparent": "00-0ccf92d97cfa454890f8f09dc3347849-cb4426da11dfa045-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "dd92af13693d6c6d10f5b45092a05fbe", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "07444c1f-7e1f-4376-a6c8-c917b6c742e9", + "apim-request-id": "4db0881d-78ce-4d05-8898-819ecfc7f2b6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:18 GMT", + "Date": "Wed, 04 Nov 2020 22:26:50 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": "24" }, "ResponseBody": { "documents": [ @@ -89,6 +89,6 @@ "Variables": { "RandomSeed": "1310930461", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json index 7ceffa9d3f937..2eeba42865fbf 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bee2896fb9d0ed49a80d6d634487a015-c7dbfecf43e87443-00", + "traceparent": "00-51b0998c28fa6a44b1f828aed97ce715-f7646fe968f7524d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "161fb623980eba163f1211744629e747", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2fea8301-527f-47a6-bd82-874a6f68bfcb", + "apim-request-id": "725b5590-eeb6-4a17-9c8f-e851ab28b44d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:18 GMT", + "Date": "Wed, 04 Nov 2020 22:26:52 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": [ @@ -89,6 +89,6 @@ "Variables": { "RandomSeed": "2016817382", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json index 97687bee2e7e8..d51d95012f18e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-95cd440fa6b2ea4b826b2e55ffeb4e99-d370740f74240042-00", + "traceparent": "00-71567cfea8bb614cae05a02cbac39cf0-78423b02eae7c449-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "02233abc1a851f8d7b73c3a9864f0660", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "74a2e41c-6142-406e-ba31-8d15c130befb", + "apim-request-id": "4615e2b1-3748-4ec0-a2c4-ad4c4940d4c3", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:19:18 GMT", + "Date": "Wed, 04 Nov 2020 22:26:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "error": { @@ -53,6 +53,6 @@ "Variables": { "RandomSeed": "39669393", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json index 3b78b137ace84..8d253fdbd954a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c79a596379a14b41ad95ac50c37668b6-161b32ac4c732044-00", + "traceparent": "00-06d4a26d13d34d4eb6fa542620e1b7be-807f9c1761189048-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d3ffef96a22198e4e5a15a93f55c6a25", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "3df6203b-23af-4168-afdc-fd527e1cc5fd", + "apim-request-id": "4c0406b1-570e-4aca-883f-8e2a5e1bcc21", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:19:18 GMT", + "Date": "Wed, 04 Nov 2020 22:26:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "error": { @@ -53,6 +53,6 @@ "Variables": { "RandomSeed": "356416899", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json index bfb1e27076353..318188ebd427d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a44997274f5c164eaf9152da03a18c7d-b17338106766bc43-00", + "traceparent": "00-26f0f0a4105e064a984abc57fd787b98-a9b9997d87013e44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5bf1e93674612a2cd70f69188e2d39f7", @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "62f0c6b1-e03e-40db-8677-3aba0cc24efa", + "apim-request-id": "e01a6f7a-e7bd-49d3-a07b-c64f7b0b32c5", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:19:18 GMT", + "Date": "Wed, 04 Nov 2020 22:26:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "documents": [], @@ -60,6 +60,6 @@ "Variables": { "RandomSeed": "593241093", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json index 40a9a2540c9d1..871cff89801a9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e54bb578b49bd0448751bba10cea9ac7-6c42fd490e90ad44-00", + "traceparent": "00-85cf941fab330649beb19c30d2734ec2-46e3d966c914e848-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5dbd36794559c388c50dd26e725f8f67", @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "21f17f0c-a22b-4397-a8db-a5c7a37ad532", + "apim-request-id": "e8c68291-19da-42d5-ac5c-329ad77bcc30", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:19:18 GMT", + "Date": "Wed, 04 Nov 2020 22:26:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "documents": [], @@ -60,6 +60,6 @@ "Variables": { "RandomSeed": "872837413", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json index 61e06bf3efe86..7d98702cbe450 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-94fbb36ef98b8549912f7ee3b679f5b1-2641079766061648-00", + "traceparent": "00-602eaf9992653a4f931e3a2d5d19f496-b52d4fd527d31f40-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "481340828d769a0d6f19ecfe6b0d9666", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "45393e49-358c-4689-89f1-372486a34bd9", + "apim-request-id": "2061b3da-fcd6-4c1e-a755-aeb0d53fa0d6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:18 GMT", + "Date": "Wed, 04 Nov 2020 22:26: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": "31" }, "ResponseBody": { "statistics": { @@ -87,6 +87,6 @@ "Variables": { "RandomSeed": "1134123605", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json index 879b9934612a7..402bf7f822fb6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a339aae356e9504a800a1583ed3954f1-d6d7db60f9eb144a-00", + "traceparent": "00-594c8b0dfccd6a44859971be0de96e62-e28d3e9d58bd594e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fcabdefd3d51a89852601fc0d61f3468", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "437cc2b2-e419-4f3d-a9de-abf3e0ce5fed", + "apim-request-id": "3dd08da5-be25-408a-8f8c-64c3cb351827", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:18 GMT", + "Date": "Wed, 04 Nov 2020 22:26:52 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": "48" }, "ResponseBody": { "statistics": { @@ -87,6 +87,6 @@ "Variables": { "RandomSeed": "1658669752", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json index 88eda45688c71..8b12bc58e9ce1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "92", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bacd2c29d374bb4299fe868b6b276b6a-56776714c7d25947-00", + "traceparent": "00-554d544849a0d2458b1c9c2a273ed818-f02db9b3d7635344-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b86575e1b38857965c8495535ac2b899", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2ca6ef90-15eb-42da-8d17-99daf9af9350", + "apim-request-id": "a0a21526-2706-45b9-a1ab-2cea1feabb1d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:18 GMT", + "Date": "Wed, 04 Nov 2020 22:26:51 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": "34" }, "ResponseBody": { "documents": [ @@ -58,6 +58,6 @@ "Variables": { "RandomSeed": "4209270", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json index 435ce6ea82034..7645a783755fd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "92", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3735bf589f57994db996e5b765bbb3d8-d375011629dde741-00", + "traceparent": "00-683a1ec597e4524fbc7a9b4c2b64d315-5d6cb595854bbe43-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f80f56a1c735d323972d5c2c674aed06", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "03efd4ff-5faf-4cd9-bbbe-e3dc1e71d98d", + "apim-request-id": "de4cfda3-f4d7-4bb3-b4be-0ab83f444234", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:18 GMT", + "Date": "Wed, 04 Nov 2020 22:26:52 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": "24" }, "ResponseBody": { "documents": [ @@ -58,6 +58,6 @@ "Variables": { "RandomSeed": "1076673025", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json index 14a105c48a39b..9f848cf0afe1e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "88", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b82441a9375b5d4d9871324275409c54-120421286b78f344-00", + "traceparent": "00-3b49668271b195459e443ead8014aa22-c5baa858f8658841-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fee09dae9a1670151c1a3a802afd3e61", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c440acff-affd-416b-8f08-a8c810b74fa5", + "apim-request-id": "e46ce839-e697-44f7-9344-73c989e169bb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:18 GMT", + "Date": "Wed, 04 Nov 2020 22:26:51 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": "36" }, "ResponseBody": { "documents": [ @@ -58,6 +58,6 @@ "Variables": { "RandomSeed": "462050848", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json index e62460286a6de..21f7dace69932 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "88", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-424859f0cdabf4429718c9de0e83ae81-c64976c3a96d2548-00", + "traceparent": "00-1305bf3da4ae5e408ad0b9a992b2351d-4cf127e0a10c264f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3bfc775f82d23a381e7a3b00a0305c6c", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4d8442d5-acd2-4df4-846a-9d0163e91777", + "apim-request-id": "e89d33e4-2cd3-400b-8e73-bc0f12ace1e7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:18 GMT", + "Date": "Wed, 04 Nov 2020 22:26:53 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": "16" }, "ResponseBody": { "documents": [ @@ -58,6 +58,6 @@ "Variables": { "RandomSeed": "1676133981", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json index b96e9a070cd51..b45b656a8d9e6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "180", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e6d748d73d6565409496f6f5c9cf930a-1d9745362a3b424a-00", + "traceparent": "00-9f5029cbd2997842810053d5e9f4aa9b-917cdb0023a4b14f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7a99e78b28bbdc34334c788be87edcb8", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7e4ef89e-3094-4f3e-bc40-95b137db2330", + "apim-request-id": "db554528-11fc-41e5-a3fa-6ed8698237e3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:18 GMT", + "Date": "Wed, 04 Nov 2020 22:26:51 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": "67" }, "ResponseBody": { "documents": [ @@ -64,6 +64,6 @@ "Variables": { "RandomSeed": "591698428", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json index 0dafbc61f7e35..c47d05bf6aa27 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/keyPhrases", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "180", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-afee051da9e00a499e98c9582b784096-c529c01b29b9da4b-00", + "traceparent": "00-14c8af5e013903409e75b8d2bd60a454-94defbc1e349da44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d687a16b6a26ea445556f8b3c125785e", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "379b5c23-b831-4a44-9225-4519f885ca6b", + "apim-request-id": "3414e0db-84d5-4d43-9556-c4ec78afa085", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:18 GMT", + "Date": "Wed, 04 Nov 2020 22:26:53 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": "22" }, "ResponseBody": { "documents": [ @@ -64,6 +64,6 @@ "Variables": { "RandomSeed": "1154109326", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json index f4222e91699eb..7290f7a817cd6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4091625a68ab434ebd13a3546b54fead-965d3372b589004b-00", + "traceparent": "00-bd29d9a207052047b4f41ff437c22288-a9b5aab5e4505b44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "73b99494ac5a2b6a48730fa6d4bda24b", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7e1a4a06-2595-49e7-a01e-a22fd51a6665", + "apim-request-id": "29fbc97b-7f91-42fb-a9ad-ad76c23149cb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:18 GMT", + "Date": "Wed, 04 Nov 2020 22:26:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "111" + "x-envoy-upstream-service-time": "834" }, "ResponseBody": { "documents": [ @@ -95,6 +95,6 @@ "Variables": { "RandomSeed": "1057805335", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json index e320dad1f0996..01893de494d08 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-33697f6a719f5446ae731d5cacdf6568-d5d95fe0f6a4e748-00", + "traceparent": "00-385205625e6a7e46886436a0deff8b15-10b186de4f73104f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d2ffe8a9cd41c6a7f7eddf3ba0def75e", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "10993d11-0af9-4e15-a803-02be534cdcee", + "apim-request-id": "cddad800-1888-44a4-b828-0c78e10c37b8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:19 GMT", + "Date": "Wed, 04 Nov 2020 22:27:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "97" + "x-envoy-upstream-service-time": "956" }, "ResponseBody": { "documents": [ @@ -95,6 +95,6 @@ "Variables": { "RandomSeed": "581345388", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json index 03b62a7cd25cd..c1fc810e5824d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3498823c925e644eb6032853f46e7c3d-264c27873842e744-00", + "traceparent": "00-7aabcfe10b016b47899be3ad48401013-97ced3fe09e05b4d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "67616e684f8b043d1e0c71e939770f42", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "415119f8-a468-4022-ad64-91cdf4d899aa", + "apim-request-id": "3e537f92-2e3f-4e90-9a6d-cd5a02cbc5f0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:18 GMT", + "Date": "Wed, 04 Nov 2020 22:26:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "122" + "x-envoy-upstream-service-time": "765" }, "ResponseBody": { "statistics": { @@ -109,6 +109,6 @@ "Variables": { "RandomSeed": "706252555", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json index 1fcd25328ec56..0b0a659920486 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-914eaeb6293f4a4d8e204999f883fbc8-ba53c014cf809d43-00", + "traceparent": "00-303859cc24702a49bb9ec865c25a6046-8e11e12cdcd53048-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3d6191fdfe339ad3e9a9a23dfab389e2", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "79c5018f-057f-4fac-a700-4ff912be3959", + "apim-request-id": "628ac57e-6d79-41b8-bb2c-08153d69e9ab", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:19 GMT", + "Date": "Wed, 04 Nov 2020 22:27:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "109" + "x-envoy-upstream-service-time": "1373" }, "ResponseBody": { "statistics": { @@ -109,6 +109,6 @@ "Variables": { "RandomSeed": "915085791", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json index a8aeb80f725a9..0e48ea2d641d5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c87fa34708a9c448b1cc941d633fda17-74a39ad584389e4f-00", + "traceparent": "00-e5a60413b66d644d91277acccf98e914-2e876fcea48e8f4e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c2e6195c0f4c89c31e4ed8101a9fceeb", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "74da8e56-7c9e-409e-b5c8-bb97cde7a772", + "apim-request-id": "de4ad2e8-fc0e-42f8-ae9f-f2ad3f508ef6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:18 GMT", + "Date": "Wed, 04 Nov 2020 22:26:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "137" + "x-envoy-upstream-service-time": "1237" }, "ResponseBody": { "documents": [ @@ -111,6 +111,6 @@ "Variables": { "RandomSeed": "1116565065", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json index c02b6037d358e..3fb0a1c1a35e0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a192960ea053c04cba6d59bb8f06daab-0d3519f7c15c0347-00", + "traceparent": "00-57218a28ca3a9e4c98710de67fa3e478-c170898b18d6614a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "74826ca03adf5e0230955bc11a73f253", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e6754782-ecab-4afb-beb3-e649174ce524", + "apim-request-id": "127bad42-0ec2-48f9-907b-a6c099f42ebe", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:19 GMT", + "Date": "Wed, 04 Nov 2020 22:27:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "129" + "x-envoy-upstream-service-time": "2777" }, "ResponseBody": { "documents": [ @@ -111,6 +111,6 @@ "Variables": { "RandomSeed": "1159498521", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json index a1e3e919fe2f4..f6983a47ca4d5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ab6af235d7377f4cbd01392e3a702806-475d5bb867a9754b-00", + "traceparent": "00-c5288b35b5fde6489a1e619456f221d4-da3505429b21d547-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e1ab51bf64c496574b45aba2614e8e70", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dddc047e-e9db-4cbe-b38a-579026a10bba", + "apim-request-id": "2f8544bd-23b0-4faa-be99-75e236c5fc48", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:19 GMT", + "Date": "Wed, 04 Nov 2020 22:27:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "100" + "x-envoy-upstream-service-time": "2563" }, "ResponseBody": { "documents": [ @@ -112,6 +112,6 @@ "Variables": { "RandomSeed": "756961484", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json index 7b3ba69edb094..b55cfdff312c2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9c513462c108584195eed39933678422-156090e79c476a4d-00", + "traceparent": "00-56d2ad5cf6ac0e4d8e31d85c81a0c078-a8f5e6244724094e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d8b08f95484a0406f97f2f7420372c35", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cd48bf94-bb89-47f3-bb22-4369a143d7bb", + "apim-request-id": "499203a0-355c-4a1e-9652-a912f64bd547", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:20 GMT", + "Date": "Wed, 04 Nov 2020 22:27:12 GMT", "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": "1129" }, "ResponseBody": { "documents": [ @@ -112,6 +112,6 @@ "Variables": { "RandomSeed": "2014309095", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json index 6c68d89fc056d..da0c88c270a88 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "297", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a487a5dbe9fdd14faf6cf70f8eff0c0e-a19b68741566b048-00", + "traceparent": "00-e0a7bb38a38ac642a3efee256c14723b-6d557adb0684eb41-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a8ae17c802a6c3ea068b7f13c73b934a", @@ -55,13 +55,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "eb1d3296-fbf9-485d-a8df-a726ef6501a3", + "apim-request-id": "10198bae-1cd1-4f19-aca7-ab645e483aae", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:19:19 GMT", + "Date": "Wed, 04 Nov 2020 22:27:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "error": { @@ -78,6 +78,6 @@ "Variables": { "RandomSeed": "1535542289", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json index 6d7bcd8b9b8e2..3e223ae184d47 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "297", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6cb82497f0fbb44ba05ffeaea696a484-21ed098384d3dd4b-00", + "traceparent": "00-12a8da2333f59d439503218c450a0f73-cdee7ff8441cee4c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "28b544e5b9a5cf3535ddef0fb0fd1d43", @@ -55,13 +55,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "89362a5f-8ea6-4fe6-bd6d-d3168b198c12", + "apim-request-id": "db25c04a-8854-415f-9794-806251c1c4a9", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:19:20 GMT", + "Date": "Wed, 04 Nov 2020 22:27:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "error": { @@ -78,6 +78,6 @@ "Variables": { "RandomSeed": "467834574", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json index 338d3f11e6a7c..15f3e06426dc5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-304bfa5c0808d7468275a322325d6c23-51da618db122ca44-00", + "traceparent": "00-705fe3f3b84e88408e731aacd6d205f0-104effaa8c59f341-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0394cc79836b8e2a0617730333d293ff", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "beea8697-d9b4-4e8d-8f12-eced978fbe00", + "apim-request-id": "4680f807-389d-4aa8-a609-b2444fa37a61", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:19:19 GMT", + "Date": "Wed, 04 Nov 2020 22:27:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "error": { @@ -53,6 +53,6 @@ "Variables": { "RandomSeed": "449438732", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json index 43c3c2e1ee305..90b034736069f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-706f952846987a4aab908bfc3358e67b-1514b5874cfb3d47-00", + "traceparent": "00-403bf1a3e699d94aa93b51bba9203642-02617aabab62b74a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d2a606a042fa292271e9e0fd82e50d07", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "73dfebfc-16d9-4c78-bc48-fcefb48fbf5a", + "apim-request-id": "435afe92-3033-49b0-9039-fb59d9bc92cc", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:19:20 GMT", + "Date": "Wed, 04 Nov 2020 22:27:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "error": { @@ -53,6 +53,6 @@ "Variables": { "RandomSeed": "269930919", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json index d7745ea0cdc01..9530775fef750 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ec44bab12095bd45b53fd4fe2de5b257-2e68975e8506334f-00", + "traceparent": "00-e8874481e5cb814b9d6b67cd6c548cc7-a7c2b7f9b2771b43-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "143a14bc880cd41cfe9c98287e990fb6", @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e6834f5b-af16-4395-a22a-0766411b7d0b", + "apim-request-id": "75d48ada-96aa-4aff-8d22-02d582e80787", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:19:19 GMT", + "Date": "Wed, 04 Nov 2020 22:27:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -60,6 +60,6 @@ "Variables": { "RandomSeed": "1966020734", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json index 96a43bea1f8ac..12b745fd3c366 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4182db9a391d0a41938fa19611032a23-7fdcdb4844510a45-00", + "traceparent": "00-af31d93e8d37a949b66fe34a92ca045d-eee91c26509ea14f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7afea088ca0a22de1ccfe4f56367e3ca", @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b91969a2-c624-4309-b1ac-a00e0355457c", + "apim-request-id": "9298b9c3-89b6-4e5a-93a7-21f91f7d836b", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:19:20 GMT", + "Date": "Wed, 04 Nov 2020 22:27:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "documents": [], @@ -60,6 +60,6 @@ "Variables": { "RandomSeed": "794759441", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json index 4b92083a1c790..6529493c9bc83 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1facb0b1c9838348b88e6fe0ab241f57-0a3209869cb6cb46-00", + "traceparent": "00-8763130678f3b244a28dab2f0639e630-d4f1f7137eb91640-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3c7b09ea57a0a9f84c938c05ff06e377", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2d65b0af-0128-4d75-a48f-026819d64b10", + "apim-request-id": "cbbb25c8-3862-483e-a7b4-e8177232032f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:19 GMT", + "Date": "Wed, 04 Nov 2020 22:27:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "192" + "x-envoy-upstream-service-time": "523" }, "ResponseBody": { "statistics": { @@ -125,6 +125,6 @@ "Variables": { "RandomSeed": "541291504", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json index e9ee040e48111..339a42e967910 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7b784557e4cac84583dd078a23ca38a8-5ae9da555f701149-00", + "traceparent": "00-6babde88624d5843a67987b9b6534851-9c746e43b6024b44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c386dc48f454868243af3522ce69cb86", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "25e7aa19-600f-425b-84aa-91665d56cf17", + "apim-request-id": "521ee171-3b99-4d75-8022-9c419bee2f34", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:20 GMT", + "Date": "Wed, 04 Nov 2020 22:27:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "158" + "x-envoy-upstream-service-time": "2582" }, "ResponseBody": { "statistics": { @@ -125,6 +125,6 @@ "Variables": { "RandomSeed": "438437791", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json index d3a65484f465e..7af3deca3310b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-64be93d6b258e148bc8762ebc010f102-c971ea999faf2e4b-00", + "traceparent": "00-fa82abf8bc194646b21cd200fc1741eb-caf880b220a9ab4e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "483a789eb74f49281b818c10882907cc", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6f5ec3a5-9300-4313-bdf9-aaf0a9c9bffa", + "apim-request-id": "e8eafad4-0f5e-4dc6-a1c3-4f67279c97bd", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:19 GMT", + "Date": "Wed, 04 Nov 2020 22:27:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "89" + "x-envoy-upstream-service-time": "1105" }, "ResponseBody": { "documents": [ @@ -77,6 +77,6 @@ "Variables": { "RandomSeed": "958901847", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json index 3d180c7872986..9ead9840b61f7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-17a622713b835944ac910e673d5b8989-0cd15788cb2a794e-00", + "traceparent": "00-dc2e52d7d15da44a9d4892b794174e34-13bc595cc380bf47-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "700659f3fdefe683be90e2b1951eb421", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "86ed91a2-8daf-4087-a724-fb89d4d852fe", + "apim-request-id": "027f411d-8f1a-4054-98ab-4f332db2a8b5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:20 GMT", + "Date": "Wed, 04 Nov 2020 22:27:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "120" + "x-envoy-upstream-service-time": "1060" }, "ResponseBody": { "documents": [ @@ -77,6 +77,6 @@ "Variables": { "RandomSeed": "988548785", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json index ced93bc6da9e5..3ad626550c170 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-20e0f576f734e9469d878de0d5a6a356-60df0037aecb734e-00", + "traceparent": "00-b4c6416ba976e74f818e997f55c8e7f3-6735856770e94f42-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fb4827053b6a1252c3b25be970bef0ff", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "404a6200-0cb8-42bc-b4af-af8cbc559ee0", + "apim-request-id": "38dd5ab3-6a14-4793-a818-1e9b7591a3de", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:19 GMT", + "Date": "Wed, 04 Nov 2020 22:27:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "68" + "x-envoy-upstream-service-time": "1290" }, "ResponseBody": { "documents": [ @@ -77,6 +77,6 @@ "Variables": { "RandomSeed": "1194835107", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json index 130c184c385fe..1402483e7b1b5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2c8a6ae544c94543a1a5692b91d500bd-9671a79a72d03147-00", + "traceparent": "00-658797023476fd4f861a27b88a17e846-eee40bd194cf1144-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b55082b33b1fe734efdcbb82c7c8a31b", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8f8e71e9-95f0-42f2-b744-8b7ec9b81770", + "apim-request-id": "e1eabb88-511c-4e9e-9f1d-61944c678eea", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:20 GMT", + "Date": "Wed, 04 Nov 2020 22:27:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "64" + "x-envoy-upstream-service-time": "482" }, "ResponseBody": { "documents": [ @@ -77,6 +77,6 @@ "Variables": { "RandomSeed": "852244609", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json index 6567cf3fb267a..11809621250d0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e621d2676e3cf44397e88f82f1fb3d26-8608fce81ea8aa48-00", + "traceparent": "00-799ddcf990514341a3f1b8d9a80e827c-6bd4b9e02cb5be46-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c580665e455e125e80a821d61e9c3c18", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3e239d16-23fd-40c4-a246-3034bcbd4883", + "apim-request-id": "5bade0da-824a-4436-9ad9-997411b1dc68", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:19 GMT", + "Date": "Wed, 04 Nov 2020 22:27:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "76" + "x-envoy-upstream-service-time": "1175" }, "ResponseBody": { "documents": [ @@ -79,6 +79,6 @@ "Variables": { "RandomSeed": "1531566714", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json index 5ddaa77ca33e7..50a6a1a49e508 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b57bd1c28eb58a4bae6c418380b02531-8678826fd453a542-00", + "traceparent": "00-4b9523cdd8def64b81e28b9963382531-e7434ad61cc7a04f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3b4b745166e69035ddd947884a09aa87", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bfbdbb94-8016-45ae-a7b5-1e974c47f6eb", + "apim-request-id": "237d6e50-5e0d-45d5-ad26-3c9baa00f706", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:20 GMT", + "Date": "Wed, 04 Nov 2020 22:27:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "126" + "x-envoy-upstream-service-time": "1721" }, "ResponseBody": { "documents": [ @@ -79,6 +79,6 @@ "Variables": { "RandomSeed": "1094081853", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json index 17c79fefce9d3..42e3881cb2c91 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6fbdd9e6f4ed784d95f1f05a79acf964-186ae1782f2d4e45-00", + "traceparent": "00-9fcbbc843ef79e47b21f37e11354073d-815782cbd038b049-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "74a99a56-fbc6-45ad-8a20-b088f745240e", - "Date": "Wed, 04 Nov 2020 13:53:36 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/01c3f532-9d57-41f6-95c7-ef5e94784433", + "apim-request-id": "d1c73d93-b075-4b53-a8ff-67de819784dd", + "Date": "Wed, 04 Nov 2020 22:27:19 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/3f58798c-fda1-4062-abe7-232749bfc828", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "107" + "x-envoy-upstream-service-time": "92" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/01c3f532-9d57-41f6-95c7-ef5e94784433?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/3f58798c-fda1-4062-abe7-232749bfc828?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f1de1043-f1fb-4501-bacd-7f87ae80634b", + "apim-request-id": "cace54d1-d08e-4cd8-a6a0-b5f5746bece9", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:53:36 GMT", + "Date": "Wed, 04 Nov 2020 22:27:19 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": "01c3f532-9d57-41f6-95c7-ef5e94784433", - "lastUpdateDateTime": "2020-11-04T13:53:36Z", - "createdDateTime": "2020-11-04T13:53:36Z", - "expirationDateTime": "2020-11-05T13:53:36Z", + "jobId": "3f58798c-fda1-4062-abe7-232749bfc828", + "lastUpdateDateTime": "2020-11-04T22:27:19Z", + "createdDateTime": "2020-11-04T22:27:19Z", + "expirationDateTime": "2020-11-05T22:27:19Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/01c3f532-9d57-41f6-95c7-ef5e94784433?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/3f58798c-fda1-4062-abe7-232749bfc828?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "282b788e-7a05-4f41-b2b5-16c604a91c70", + "apim-request-id": "cfcf3176-b505-4bc0-939a-c51763766ef6", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:53:37 GMT", + "Date": "Wed, 04 Nov 2020 22:27:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "01c3f532-9d57-41f6-95c7-ef5e94784433", - "lastUpdateDateTime": "2020-11-04T13:53:36Z", - "createdDateTime": "2020-11-04T13:53:36Z", - "expirationDateTime": "2020-11-05T13:53:36Z", + "jobId": "3f58798c-fda1-4062-abe7-232749bfc828", + "lastUpdateDateTime": "2020-11-04T22:27:19Z", + "createdDateTime": "2020-11-04T22:27:19Z", + "expirationDateTime": "2020-11-05T22:27:19Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/01c3f532-9d57-41f6-95c7-ef5e94784433?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/3f58798c-fda1-4062-abe7-232749bfc828?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -136,97 +136,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "48694de8-aef5-4a5e-9463-743a2b84b1f7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:53:38 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": "01c3f532-9d57-41f6-95c7-ef5e94784433", - "lastUpdateDateTime": "2020-11-04T13:53:36Z", - "createdDateTime": "2020-11-04T13:53:36Z", - "expirationDateTime": "2020-11-05T13:53:36Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/01c3f532-9d57-41f6-95c7-ef5e94784433?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e057fbd34137dcb63a747e1bc545b423", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c7dc2561-ae5c-40a9-ba1f-eb33d4182ac7", + "apim-request-id": "af416317-e7ce-406d-8e01-ffbdcbd3469d", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:53:39 GMT", + "Date": "Wed, 04 Nov 2020 22:27:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { - "jobId": "01c3f532-9d57-41f6-95c7-ef5e94784433", - "lastUpdateDateTime": "2020-11-04T13:53:36Z", - "createdDateTime": "2020-11-04T13:53:36Z", - "expirationDateTime": "2020-11-05T13:53:36Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/01c3f532-9d57-41f6-95c7-ef5e94784433?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2dc9f6e14c227d66ae6ff775359664e7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6cd9d375-d4ba-4e64-a647-b0d80479e58b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:53:40 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": "01c3f532-9d57-41f6-95c7-ef5e94784433", - "lastUpdateDateTime": "2020-11-04T13:53:40Z", - "createdDateTime": "2020-11-04T13:53:36Z", - "expirationDateTime": "2020-11-05T13:53:36Z", + "jobId": "3f58798c-fda1-4062-abe7-232749bfc828", + "lastUpdateDateTime": "2020-11-04T22:27:22Z", + "createdDateTime": "2020-11-04T22:27:19Z", + "expirationDateTime": "2020-11-05T22:27:19Z", "status": "running", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/01c3f532-9d57-41f6-95c7-ef5e94784433?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/3f58798c-fda1-4062-abe7-232749bfc828?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -238,25 +166,25 @@ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "63ce4611f5e00d620cdb6447b8abdfe2", + "x-ms-client-request-id": "e057fbd34137dcb63a747e1bc545b423", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5412b06f-7158-4e58-aadd-cb18dc06f6f7", + "apim-request-id": "0c95d884-2b65-4468-a8f9-4693c811e6c6", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:53:41 GMT", + "Date": "Wed, 04 Nov 2020 22:27:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "67" }, "ResponseBody": { - "jobId": "01c3f532-9d57-41f6-95c7-ef5e94784433", - "lastUpdateDateTime": "2020-11-04T13:53:40Z", - "createdDateTime": "2020-11-04T13:53:36Z", - "expirationDateTime": "2020-11-05T13:53:36Z", + "jobId": "3f58798c-fda1-4062-abe7-232749bfc828", + "lastUpdateDateTime": "2020-11-04T22:27:22Z", + "createdDateTime": "2020-11-04T22:27:19Z", + "expirationDateTime": "2020-11-05T22:27:19Z", "status": "succeeded", "errors": [], "results": { @@ -1225,6 +1153,6 @@ "Variables": { "RandomSeed": "1964733569", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json index a2f0f210a67d1..f92416b99fea5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b83af6fee1db7c4787930e248db6e651-7bbf8c1cffcb4a46-00", + "traceparent": "00-f6f5effa2cf33446bac79025ef8ddb38-d78d535d507d8b43-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "b68aca03-c275-4e12-a909-d98b4952028f", - "Date": "Wed, 04 Nov 2020 13:54:26 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/613690e6-0b13-4993-89e1-f4c84df6c1ff", + "apim-request-id": "1995b68b-0464-4213-b8a0-3726563f98d1", + "Date": "Wed, 04 Nov 2020 22:27:48 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4f8b8f76-535f-45f1-8243-d39c5fa0c506", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "101" + "x-envoy-upstream-service-time": "109" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/613690e6-0b13-4993-89e1-f4c84df6c1ff?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4f8b8f76-535f-45f1-8243-d39c5fa0c506?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "66fd9795-21e8-4b6e-9ac6-3da1328dafbb", + "apim-request-id": "c1ac1cb1-1b37-4c02-b2e9-e3e9a7ced2b9", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:26 GMT", + "Date": "Wed, 04 Nov 2020 22:27:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "613690e6-0b13-4993-89e1-f4c84df6c1ff", - "lastUpdateDateTime": "2020-11-04T13:54:26Z", - "createdDateTime": "2020-11-04T13:54:26Z", - "expirationDateTime": "2020-11-05T13:54:26Z", + "jobId": "4f8b8f76-535f-45f1-8243-d39c5fa0c506", + "lastUpdateDateTime": "2020-11-04T22:27:48Z", + "createdDateTime": "2020-11-04T22:27:48Z", + "expirationDateTime": "2020-11-05T22:27:48Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/613690e6-0b13-4993-89e1-f4c84df6c1ff?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4f8b8f76-535f-45f1-8243-d39c5fa0c506?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -100,163 +100,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2d36bc43-ce2f-46b4-af3b-08c3a8b9ac3f", + "apim-request-id": "990b4a29-93fe-41c2-b33e-74d1f8a7c371", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:27 GMT", + "Date": "Wed, 04 Nov 2020 22:27:50 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": "131" }, "ResponseBody": { - "jobId": "613690e6-0b13-4993-89e1-f4c84df6c1ff", - "lastUpdateDateTime": "2020-11-04T13:54:26Z", - "createdDateTime": "2020-11-04T13:54:26Z", - "expirationDateTime": "2020-11-05T13:54:26Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/613690e6-0b13-4993-89e1-f4c84df6c1ff?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c1281b11742f5d97bfa8b242a2dc074b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0e0c5f48-02a5-4a20-96d0-1606381a5e17", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:28 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": "613690e6-0b13-4993-89e1-f4c84df6c1ff", - "lastUpdateDateTime": "2020-11-04T13:54:26Z", - "createdDateTime": "2020-11-04T13:54:26Z", - "expirationDateTime": "2020-11-05T13:54:26Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/613690e6-0b13-4993-89e1-f4c84df6c1ff?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "714fdcb449dadcd2c04fb8165b2fdd5d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "35f80bbd-f717-470d-99b2-7a9e6972f0c1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:29 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": "613690e6-0b13-4993-89e1-f4c84df6c1ff", - "lastUpdateDateTime": "2020-11-04T13:54:26Z", - "createdDateTime": "2020-11-04T13:54:26Z", - "expirationDateTime": "2020-11-05T13:54:26Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/613690e6-0b13-4993-89e1-f4c84df6c1ff?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2cc4ccf534638cf591b48e697223f811", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7e7b8f20-32ad-4dff-9f88-c8d7ea4a44f6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:30 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": "613690e6-0b13-4993-89e1-f4c84df6c1ff", - "lastUpdateDateTime": "2020-11-04T13:54:26Z", - "createdDateTime": "2020-11-04T13:54:26Z", - "expirationDateTime": "2020-11-05T13:54:26Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/613690e6-0b13-4993-89e1-f4c84df6c1ff?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "484d851fdb38c8d2494b00dfbc80018f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2bd55af6-7bf7-4d2d-a8d5-6efb1f256150", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:31 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" - }, - "ResponseBody": { - "jobId": "613690e6-0b13-4993-89e1-f4c84df6c1ff", - "lastUpdateDateTime": "2020-11-04T13:54:30Z", - "createdDateTime": "2020-11-04T13:54:26Z", - "expirationDateTime": "2020-11-05T13:54:26Z", + "jobId": "4f8b8f76-535f-45f1-8243-d39c5fa0c506", + "lastUpdateDateTime": "2020-11-04T22:27:49Z", + "createdDateTime": "2020-11-04T22:27:48Z", + "expirationDateTime": "2020-11-05T22:27:48Z", "status": "succeeded", "errors": [], "results": { @@ -1225,6 +1081,6 @@ "Variables": { "RandomSeed": "2027271043", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json index c88fbcef48421..f902c7d3e0aa8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4a17dece2c9de142b5cc74655ce9c889-663a8d12bfc27b49-00", + "traceparent": "00-028a677ecb49e2438cd11cab891d0ef9-a883d99459b5bf42-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "27a9c9d9-b063-4e80-ae0f-15ff31e1e91f", - "Date": "Wed, 04 Nov 2020 13:53:41 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/9afb17d5-d908-4c4b-a2ac-adc701231882", + "apim-request-id": "91f7c2a0-c8b4-4f0b-995b-6c215b69e3e4", + "Date": "Wed, 04 Nov 2020 22:27:23 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/287ff324-753c-4b91-b5bd-f8eaae64e143", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "91" + "x-envoy-upstream-service-time": "119" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/9afb17d5-d908-4c4b-a2ac-adc701231882?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/287ff324-753c-4b91-b5bd-f8eaae64e143?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0c1d0847-7d3b-4df4-9de7-ba6cb8aefa02", + "apim-request-id": "9fa1e3e4-10d2-4426-bcea-f90a76bdebc2", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:53:41 GMT", + "Date": "Wed, 04 Nov 2020 22:27:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { - "jobId": "9afb17d5-d908-4c4b-a2ac-adc701231882", - "lastUpdateDateTime": "2020-11-04T13:53:41Z", - "createdDateTime": "2020-11-04T13:53:41Z", - "expirationDateTime": "2020-11-05T13:53:41Z", + "jobId": "287ff324-753c-4b91-b5bd-f8eaae64e143", + "lastUpdateDateTime": "2020-11-04T22:27:24Z", + "createdDateTime": "2020-11-04T22:27:24Z", + "expirationDateTime": "2020-11-05T22:27:24Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/9afb17d5-d908-4c4b-a2ac-adc701231882?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/287ff324-753c-4b91-b5bd-f8eaae64e143?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -100,127 +100,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1280122a-24b6-42ed-85ee-f780b5f87984", + "apim-request-id": "3249b4d4-6f2c-463b-9a9d-25e3216814b6", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:53:43 GMT", + "Date": "Wed, 04 Nov 2020 22:27: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": "53" }, "ResponseBody": { - "jobId": "9afb17d5-d908-4c4b-a2ac-adc701231882", - "lastUpdateDateTime": "2020-11-04T13:53:41Z", - "createdDateTime": "2020-11-04T13:53:41Z", - "expirationDateTime": "2020-11-05T13:53:41Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/9afb17d5-d908-4c4b-a2ac-adc701231882?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b34190e23bc3d86ecd0cf51c6cb88870", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ff77a876-a692-48a7-8ffb-33abbb56f42b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:53:44 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": "9afb17d5-d908-4c4b-a2ac-adc701231882", - "lastUpdateDateTime": "2020-11-04T13:53:41Z", - "createdDateTime": "2020-11-04T13:53:41Z", - "expirationDateTime": "2020-11-05T13:53:41Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/9afb17d5-d908-4c4b-a2ac-adc701231882?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "6048c45f2600a6bd35d41e41de29aaf3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "55915270-4152-4ce4-b70c-17dcade997e7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:53:45 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": "9afb17d5-d908-4c4b-a2ac-adc701231882", - "lastUpdateDateTime": "2020-11-04T13:53:41Z", - "createdDateTime": "2020-11-04T13:53:41Z", - "expirationDateTime": "2020-11-05T13:53:41Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/9afb17d5-d908-4c4b-a2ac-adc701231882?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "892d23a31966b0c03e5ff0fbdf856a1a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "13b1b97b-ae36-40a8-90b8-6ceab63085ab", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:53:46 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" - }, - "ResponseBody": { - "jobId": "9afb17d5-d908-4c4b-a2ac-adc701231882", - "lastUpdateDateTime": "2020-11-04T13:53:45Z", - "createdDateTime": "2020-11-04T13:53:41Z", - "expirationDateTime": "2020-11-05T13:53:41Z", + "jobId": "287ff324-753c-4b91-b5bd-f8eaae64e143", + "lastUpdateDateTime": "2020-11-04T22:27:25Z", + "createdDateTime": "2020-11-04T22:27:24Z", + "expirationDateTime": "2020-11-05T22:27:24Z", "status": "succeeded", "errors": [], "results": { @@ -1195,6 +1087,6 @@ "Variables": { "RandomSeed": "609735027", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json index 33811800e1271..81b9b67ed1bb6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8424976a90aae440a8dd28ed12a90b42-6ff16f52760a2a46-00", + "traceparent": "00-eacb3db6ac7741438166903f5fe5c620-a8848e82950eec4f-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "e88c09b6-caf0-48b2-997a-482944f253e3", - "Date": "Wed, 04 Nov 2020 13:54:31 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e5a0ed8b-54f5-4db4-b532-7e2ed57c4c9a", + "apim-request-id": "b97ea8a7-6d15-4bca-94dd-6ef15066d802", + "Date": "Wed, 04 Nov 2020 22:27:50 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/7e5c9d14-7909-4296-9460-86d6e0f425cb", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "76" + "x-envoy-upstream-service-time": "96" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e5a0ed8b-54f5-4db4-b532-7e2ed57c4c9a?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/7e5c9d14-7909-4296-9460-86d6e0f425cb?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c8491965-fd4f-4c7a-92aa-da95ae80bd21", + "apim-request-id": "84fc10dc-9efe-40dd-a713-d82a35d38d2d", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:31 GMT", + "Date": "Wed, 04 Nov 2020 22:27:50 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": "11" }, "ResponseBody": { - "jobId": "e5a0ed8b-54f5-4db4-b532-7e2ed57c4c9a", - "lastUpdateDateTime": "2020-11-04T13:54:31Z", - "createdDateTime": "2020-11-04T13:54:31Z", - "expirationDateTime": "2020-11-05T13:54:31Z", + "jobId": "7e5c9d14-7909-4296-9460-86d6e0f425cb", + "lastUpdateDateTime": "2020-11-04T22:27:50Z", + "createdDateTime": "2020-11-04T22:27:50Z", + "expirationDateTime": "2020-11-05T22:27:50Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e5a0ed8b-54f5-4db4-b532-7e2ed57c4c9a?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/7e5c9d14-7909-4296-9460-86d6e0f425cb?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e9610d67-8f40-45dd-b3e6-866d94c46ab0", + "apim-request-id": "02ff7fd8-56b2-46ee-8f87-316271cec525", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:32 GMT", + "Date": "Wed, 04 Nov 2020 22:27:51 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": "e5a0ed8b-54f5-4db4-b532-7e2ed57c4c9a", - "lastUpdateDateTime": "2020-11-04T13:54:31Z", - "createdDateTime": "2020-11-04T13:54:31Z", - "expirationDateTime": "2020-11-05T13:54:31Z", + "jobId": "7e5c9d14-7909-4296-9460-86d6e0f425cb", + "lastUpdateDateTime": "2020-11-04T22:27:50Z", + "createdDateTime": "2020-11-04T22:27:50Z", + "expirationDateTime": "2020-11-05T22:27:50Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e5a0ed8b-54f5-4db4-b532-7e2ed57c4c9a?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/7e5c9d14-7909-4296-9460-86d6e0f425cb?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -136,127 +136,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b151e81c-dd48-49ba-976e-28c44184043f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:33 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": "e5a0ed8b-54f5-4db4-b532-7e2ed57c4c9a", - "lastUpdateDateTime": "2020-11-04T13:54:31Z", - "createdDateTime": "2020-11-04T13:54:31Z", - "expirationDateTime": "2020-11-05T13:54:31Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e5a0ed8b-54f5-4db4-b532-7e2ed57c4c9a?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f47314aea48d0f480e95c35afd3bada6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bdb7af70-6077-40f4-873b-42bcb69ff099", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54: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": "e5a0ed8b-54f5-4db4-b532-7e2ed57c4c9a", - "lastUpdateDateTime": "2020-11-04T13:54:31Z", - "createdDateTime": "2020-11-04T13:54:31Z", - "expirationDateTime": "2020-11-05T13:54:31Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e5a0ed8b-54f5-4db4-b532-7e2ed57c4c9a?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a92baee17e216978451a6205660b80c6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8598f764-bff1-4817-94d2-1195abca49ed", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54: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": "e5a0ed8b-54f5-4db4-b532-7e2ed57c4c9a", - "lastUpdateDateTime": "2020-11-04T13:54:35Z", - "createdDateTime": "2020-11-04T13:54:31Z", - "expirationDateTime": "2020-11-05T13:54:31Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/e5a0ed8b-54f5-4db4-b532-7e2ed57c4c9a?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8088261f296d589f999f88f98d0bace8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1c787ae5-46d8-4a4b-a85d-70a0e6ca580c", + "apim-request-id": "72f5318a-166a-4bc5-b4f4-c1d2f93e9594", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:36 GMT", + "Date": "Wed, 04 Nov 2020 22:27:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "68" }, "ResponseBody": { - "jobId": "e5a0ed8b-54f5-4db4-b532-7e2ed57c4c9a", - "lastUpdateDateTime": "2020-11-04T13:54:35Z", - "createdDateTime": "2020-11-04T13:54:31Z", - "expirationDateTime": "2020-11-05T13:54:31Z", + "jobId": "7e5c9d14-7909-4296-9460-86d6e0f425cb", + "lastUpdateDateTime": "2020-11-04T22:27:52Z", + "createdDateTime": "2020-11-04T22:27:50Z", + "expirationDateTime": "2020-11-05T22:27:50Z", "status": "succeeded", "errors": [], "results": { @@ -1231,6 +1123,6 @@ "Variables": { "RandomSeed": "377463297", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json index c357520abb16a..19b9039d737f4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6a380a8fc20109429fdb916373ca2898-aad17095766b0548-00", + "traceparent": "00-1e0e345a29c2f44cbf994d2513975bf2-dd36bb6f7dc7614a-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "595fc748-7dad-4e34-989a-cdabca19cb5e", - "Date": "Wed, 04 Nov 2020 13:53:46 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/4e6acaca-fb35-47c6-8ade-33562dc54a87", + "apim-request-id": "d18bfe9b-c811-42ff-84a1-c110aa788d6e", + "Date": "Wed, 04 Nov 2020 22:27:25 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0b4c8b5a-fa85-43ba-9f20-ad496ffbbd67", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "156" + "x-envoy-upstream-service-time": "83" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/4e6acaca-fb35-47c6-8ade-33562dc54a87?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0b4c8b5a-fa85-43ba-9f20-ad496ffbbd67?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "819a0039-83de-432a-a68a-44f6d64d1a3c", + "apim-request-id": "d7ff4a4d-21f3-4f16-bcd9-79be29084df8", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:53:46 GMT", + "Date": "Wed, 04 Nov 2020 22:27:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { - "jobId": "4e6acaca-fb35-47c6-8ade-33562dc54a87", - "lastUpdateDateTime": "2020-11-04T13:53:46Z", - "createdDateTime": "2020-11-04T13:53:46Z", - "expirationDateTime": "2020-11-05T13:53:46Z", + "jobId": "0b4c8b5a-fa85-43ba-9f20-ad496ffbbd67", + "lastUpdateDateTime": "2020-11-04T22:27:25Z", + "createdDateTime": "2020-11-04T22:27:25Z", + "expirationDateTime": "2020-11-05T22:27:25Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/4e6acaca-fb35-47c6-8ade-33562dc54a87?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0b4c8b5a-fa85-43ba-9f20-ad496ffbbd67?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -100,133 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0a0a2808-75ed-4323-927b-703207e71ffe", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:53:47 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": "4e6acaca-fb35-47c6-8ade-33562dc54a87", - "lastUpdateDateTime": "2020-11-04T13:53:46Z", - "createdDateTime": "2020-11-04T13:53:46Z", - "expirationDateTime": "2020-11-05T13:53:46Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/4e6acaca-fb35-47c6-8ade-33562dc54a87?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "00da5d97d0326c02836c36d1baa4c6e5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "009fa0d6-2fbf-409f-98fc-74c1ea0ea450", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:53:48 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": "4e6acaca-fb35-47c6-8ade-33562dc54a87", - "lastUpdateDateTime": "2020-11-04T13:53:46Z", - "createdDateTime": "2020-11-04T13:53:46Z", - "expirationDateTime": "2020-11-05T13:53:46Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/4e6acaca-fb35-47c6-8ade-33562dc54a87?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4053da77e5a55a69b046ae7dc36c7228", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5149df51-efac-4943-b47a-82dc2fd4a5d3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:53:49 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": "4e6acaca-fb35-47c6-8ade-33562dc54a87", - "lastUpdateDateTime": "2020-11-04T13:53:46Z", - "createdDateTime": "2020-11-04T13:53:46Z", - "expirationDateTime": "2020-11-05T13:53:46Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/4e6acaca-fb35-47c6-8ade-33562dc54a87?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0d4c941902c16cda0cdb5110a2a34728", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a74f0c0f-4488-4698-afe8-02e112486954", + "apim-request-id": "95fdcfc7-d158-471c-8d18-a648c80858a7", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:53:50 GMT", + "Date": "Wed, 04 Nov 2020 22:27:26 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": "4e6acaca-fb35-47c6-8ade-33562dc54a87", - "lastUpdateDateTime": "2020-11-04T13:53:46Z", - "createdDateTime": "2020-11-04T13:53:46Z", - "expirationDateTime": "2020-11-05T13:53:46Z", + "jobId": "0b4c8b5a-fa85-43ba-9f20-ad496ffbbd67", + "lastUpdateDateTime": "2020-11-04T22:27:25Z", + "createdDateTime": "2020-11-04T22:27:25Z", + "expirationDateTime": "2020-11-05T22:27:25Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/4e6acaca-fb35-47c6-8ade-33562dc54a87?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0b4c8b5a-fa85-43ba-9f20-ad496ffbbd67?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -238,25 +130,25 @@ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "a97e27cc4a5bb1f5f37f4feb2184a817", + "x-ms-client-request-id": "00da5d97d0326c02836c36d1baa4c6e5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9c8bfd2e-8218-44a6-9b88-9f238f5cf2d0", + "apim-request-id": "a9192a79-2a76-46da-a211-cd194b60033b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:53:51 GMT", + "Date": "Wed, 04 Nov 2020 22:27:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "58" }, "ResponseBody": { - "jobId": "4e6acaca-fb35-47c6-8ade-33562dc54a87", - "lastUpdateDateTime": "2020-11-04T13:53:50Z", - "createdDateTime": "2020-11-04T13:53:46Z", - "expirationDateTime": "2020-11-05T13:53:46Z", + "jobId": "0b4c8b5a-fa85-43ba-9f20-ad496ffbbd67", + "lastUpdateDateTime": "2020-11-04T22:27:27Z", + "createdDateTime": "2020-11-04T22:27:25Z", + "expirationDateTime": "2020-11-05T22:27:25Z", "status": "succeeded", "errors": [], "results": { @@ -1225,6 +1117,6 @@ "Variables": { "RandomSeed": "894243901", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json index 123332d53fb0e..ea2125fcea9bd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-30d5f8db67f0154a8f0fd7e29a98ae05-b1c04160ea99f24a-00", + "traceparent": "00-9e81b00f7cae054f804d9799149a8e39-fb5b11019caebe4c-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "ec5bc238-0771-4e1f-bb1b-81d7689a39fa", - "Date": "Wed, 04 Nov 2020 13:54:36 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b57b1c7d-3b74-45ea-b3d0-e2cb4503cf71", + "apim-request-id": "290297e4-643d-4760-9db2-77559a7d6330", + "Date": "Wed, 04 Nov 2020 22:27:52 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0633eb16-34dd-4931-8362-d451d388c646", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "77" + "x-envoy-upstream-service-time": "100" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b57b1c7d-3b74-45ea-b3d0-e2cb4503cf71?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0633eb16-34dd-4931-8362-d451d388c646?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9cf0f854-78c7-4ad9-8b91-a79474055e15", + "apim-request-id": "39b80969-a1d3-47db-ad78-314bbe88b4c0", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:36 GMT", + "Date": "Wed, 04 Nov 2020 22:27:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { - "jobId": "b57b1c7d-3b74-45ea-b3d0-e2cb4503cf71", - "lastUpdateDateTime": "2020-11-04T13:54:36Z", - "createdDateTime": "2020-11-04T13:54:36Z", - "expirationDateTime": "2020-11-05T13:54:36Z", + "jobId": "0633eb16-34dd-4931-8362-d451d388c646", + "lastUpdateDateTime": "2020-11-04T22:27:53Z", + "createdDateTime": "2020-11-04T22:27:53Z", + "expirationDateTime": "2020-11-05T22:27:53Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b57b1c7d-3b74-45ea-b3d0-e2cb4503cf71?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0633eb16-34dd-4931-8362-d451d388c646?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -100,127 +100,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8ca3a89d-08a7-4b02-bda2-e1ef00ff340a", + "apim-request-id": "900ac387-9732-451e-9fa9-2e1c16fcfa69", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:38 GMT", + "Date": "Wed, 04 Nov 2020 22:27:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "67" }, "ResponseBody": { - "jobId": "b57b1c7d-3b74-45ea-b3d0-e2cb4503cf71", - "lastUpdateDateTime": "2020-11-04T13:54:36Z", - "createdDateTime": "2020-11-04T13:54:36Z", - "expirationDateTime": "2020-11-05T13:54:36Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b57b1c7d-3b74-45ea-b3d0-e2cb4503cf71?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "3c1db919135b4f3e0970ca3f4f09a565", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a6f84e8d-b7bd-499d-920d-fc2bfd7af8d4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:39 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" - }, - "ResponseBody": { - "jobId": "b57b1c7d-3b74-45ea-b3d0-e2cb4503cf71", - "lastUpdateDateTime": "2020-11-04T13:54:36Z", - "createdDateTime": "2020-11-04T13:54:36Z", - "expirationDateTime": "2020-11-05T13:54:36Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b57b1c7d-3b74-45ea-b3d0-e2cb4503cf71?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5fe22edf128ce627be26c6dcdfa2b0da", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c0931721-99dc-44ea-913a-9435babb502d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:40 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": "b57b1c7d-3b74-45ea-b3d0-e2cb4503cf71", - "lastUpdateDateTime": "2020-11-04T13:54:36Z", - "createdDateTime": "2020-11-04T13:54:36Z", - "expirationDateTime": "2020-11-05T13:54:36Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b57b1c7d-3b74-45ea-b3d0-e2cb4503cf71?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e4f1765912e9d2ab8c88d3417afc5bae", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "956b6590-fa02-4fae-8c82-fc50d56124f5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:41 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" - }, - "ResponseBody": { - "jobId": "b57b1c7d-3b74-45ea-b3d0-e2cb4503cf71", - "lastUpdateDateTime": "2020-11-04T13:54:40Z", - "createdDateTime": "2020-11-04T13:54:36Z", - "expirationDateTime": "2020-11-05T13:54:36Z", + "jobId": "0633eb16-34dd-4931-8362-d451d388c646", + "lastUpdateDateTime": "2020-11-04T22:27:54Z", + "createdDateTime": "2020-11-04T22:27:53Z", + "expirationDateTime": "2020-11-05T22:27:53Z", "status": "succeeded", "errors": [], "results": { @@ -1189,6 +1081,6 @@ "Variables": { "RandomSeed": "1051051872", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json index 6e6507f5acace..f965e6a818bed 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json @@ -11,8 +11,7 @@ "Content-Length": "260", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "00-9efe046504a39c4b889c282a38dd36f9-4042e4dc54eda048-00", - "traceparent": "00-9efe046504a39c4b889c282a38dd36f9-4042e4dc54eda048-00", + "traceparent": "00-33c724637cb1a744806bf076cb54db11-558b0434cdd7604e-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -41,18 +40,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "b112edc8-5d94-4bbc-8d78-782d87aa3af9", - "Date": "Wed, 04 Nov 2020 21:14:33 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/08383c7a-03ab-4a88-b64a-c1267317c272", + "apim-request-id": "075620b9-3cde-4752-8049-1e4a3d13aad6", + "Date": "Wed, 04 Nov 2020 22:27:28 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/fbe67d3f-0759-45cd-8a1b-4f18a34be1a9", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "140" + "x-envoy-upstream-service-time": "110" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/08383c7a-03ab-4a88-b64a-c1267317c272?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/fbe67d3f-0759-45cd-8a1b-4f18a34be1a9?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -60,7 +59,6 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|455ee2d-4cd1722e4a05182f.", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -71,25 +69,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e13c2aa7-3938-4d62-9ca1-18118c203599", + "apim-request-id": "c9f557b2-914a-4218-85c3-591987dbbe7a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 21:14:33 GMT", + "Date": "Wed, 04 Nov 2020 22:27: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": "8" }, "ResponseBody": { - "jobId": "08383c7a-03ab-4a88-b64a-c1267317c272", - "lastUpdateDateTime": "2020-11-04T21:14:33Z", - "createdDateTime": "2020-11-04T21:14:33Z", - "expirationDateTime": "2020-11-05T21:14:33Z", + "jobId": "fbe67d3f-0759-45cd-8a1b-4f18a34be1a9", + "lastUpdateDateTime": "2020-11-04T22:27:28Z", + "createdDateTime": "2020-11-04T22:27:28Z", + "expirationDateTime": "2020-11-05T22:27:28Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/08383c7a-03ab-4a88-b64a-c1267317c272?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/fbe67d3f-0759-45cd-8a1b-4f18a34be1a9?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -97,7 +95,6 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|455ee2e-4cd1722e4a05182f.", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -108,19 +105,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7e8e9bcb-b44d-47f5-8d39-deee2d492e2f", + "apim-request-id": "6763f200-5464-4e74-940f-d9301b3b6005", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 21:14:34 GMT", + "Date": "Wed, 04 Nov 2020 22:27:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "211" + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { - "jobId": "08383c7a-03ab-4a88-b64a-c1267317c272", - "lastUpdateDateTime": "2020-11-04T21:14:34Z", - "createdDateTime": "2020-11-04T21:14:33Z", - "expirationDateTime": "2020-11-05T21:14:33Z", + "jobId": "fbe67d3f-0759-45cd-8a1b-4f18a34be1a9", + "lastUpdateDateTime": "2020-11-04T22:27:30Z", + "createdDateTime": "2020-11-04T22:27:28Z", + "expirationDateTime": "2020-11-05T22:27:28Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json index eedadd518ec5d..c3ed1bafc93c7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json @@ -11,7 +11,7 @@ "Content-Length": "260", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4296adc415dd274bbc02cbced3844965-b4419ff6e3c6ea4d-00", + "traceparent": "00-b8794595d8cb2144915637aeeada47f7-410ebc6e037f634d-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -40,18 +40,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "94e75d53-b281-4e84-a178-020dc7ad8d28", - "Date": "Wed, 04 Nov 2020 21:46:41 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/48e948a3-4972-46af-afe3-b048308fba34", + "apim-request-id": "6289a4c5-44d2-4902-809c-51bea12da489", + "Date": "Wed, 04 Nov 2020 22:27:55 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/646805f4-c360-4e88-a580-053b7a50e4a5", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "116" + "x-envoy-upstream-service-time": "88" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/48e948a3-4972-46af-afe3-b048308fba34?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/646805f4-c360-4e88-a580-053b7a50e4a5?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -69,25 +69,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6c4f75ab-949f-42fb-afe2-685391651253", + "apim-request-id": "6da9d4bc-78f5-45ab-b854-50a11dc7073a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 21:46:42 GMT", + "Date": "Wed, 04 Nov 2020 22:27:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { - "jobId": "48e948a3-4972-46af-afe3-b048308fba34", - "lastUpdateDateTime": "2020-11-04T21:46:42Z", - "createdDateTime": "2020-11-04T21:46:42Z", - "expirationDateTime": "2020-11-05T21:46:42Z", + "jobId": "646805f4-c360-4e88-a580-053b7a50e4a5", + "lastUpdateDateTime": "2020-11-04T22:27:55Z", + "createdDateTime": "2020-11-04T22:27:55Z", + "expirationDateTime": "2020-11-05T22:27:55Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/48e948a3-4972-46af-afe3-b048308fba34?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/646805f4-c360-4e88-a580-053b7a50e4a5?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -105,97 +105,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9671fdf2-af29-428e-ba22-8bdd5c185c2d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 21:46:44 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": "48e948a3-4972-46af-afe3-b048308fba34", - "lastUpdateDateTime": "2020-11-04T21:46:42Z", - "createdDateTime": "2020-11-04T21:46:42Z", - "expirationDateTime": "2020-11-05T21:46:42Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/48e948a3-4972-46af-afe3-b048308fba34?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c4c517d3dcd1d7de74397279c7b14e37", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "35b7c6c3-d68d-491a-a89d-9c84daef8d6f", + "apim-request-id": "ba2e2899-637f-4ca5-85e6-ff0e40906f85", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 21:46:45 GMT", + "Date": "Wed, 04 Nov 2020 22:27:56 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": "48e948a3-4972-46af-afe3-b048308fba34", - "lastUpdateDateTime": "2020-11-04T21:46:42Z", - "createdDateTime": "2020-11-04T21:46:42Z", - "expirationDateTime": "2020-11-05T21:46:42Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/48e948a3-4972-46af-afe3-b048308fba34?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f260678d8d894640b1aea7117e3b4491", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2f9032f5-074d-46b2-a6f5-24230a3e401e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 21:46:46 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": "48e948a3-4972-46af-afe3-b048308fba34", - "lastUpdateDateTime": "2020-11-04T21:46:42Z", - "createdDateTime": "2020-11-04T21:46:42Z", - "expirationDateTime": "2020-11-05T21:46:42Z", + "jobId": "646805f4-c360-4e88-a580-053b7a50e4a5", + "lastUpdateDateTime": "2020-11-04T22:27:55Z", + "createdDateTime": "2020-11-04T22:27:55Z", + "expirationDateTime": "2020-11-05T22:27:55Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/48e948a3-4972-46af-afe3-b048308fba34?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/646805f4-c360-4e88-a580-053b7a50e4a5?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -207,97 +135,25 @@ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "90c597cef13bcca9b99106ce7947da60", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "833c6989-8aca-46f1-80a4-a6760476d625", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 21:46:47 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": "48e948a3-4972-46af-afe3-b048308fba34", - "lastUpdateDateTime": "2020-11-04T21:46:42Z", - "createdDateTime": "2020-11-04T21:46:42Z", - "expirationDateTime": "2020-11-05T21:46:42Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/48e948a3-4972-46af-afe3-b048308fba34?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "6d9a5010f4de4587d67e132334cc5939", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "da8ccd7c-d33f-4f7a-8874-04f15f90a6bb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 21:46:48 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": "48e948a3-4972-46af-afe3-b048308fba34", - "lastUpdateDateTime": "2020-11-04T21:46:48Z", - "createdDateTime": "2020-11-04T21:46:42Z", - "expirationDateTime": "2020-11-05T21:46:42Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/48e948a3-4972-46af-afe3-b048308fba34?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "30aae0f5beeb9bfbbd9439f78772cd69", + "x-ms-client-request-id": "c4c517d3dcd1d7de74397279c7b14e37", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ee3a9046-97b6-47f9-a332-ca9b0dc6bd78", + "apim-request-id": "880c2044-d9cd-4f9e-b729-a868fe0aa9e4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 21:46:49 GMT", + "Date": "Wed, 04 Nov 2020 22:27:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "63" + "x-envoy-upstream-service-time": "79" }, "ResponseBody": { - "jobId": "48e948a3-4972-46af-afe3-b048308fba34", - "lastUpdateDateTime": "2020-11-04T21:46:48Z", - "createdDateTime": "2020-11-04T21:46:42Z", - "expirationDateTime": "2020-11-05T21:46:42Z", + "jobId": "646805f4-c360-4e88-a580-053b7a50e4a5", + "lastUpdateDateTime": "2020-11-04T22:27:57Z", + "createdDateTime": "2020-11-04T22:27:55Z", + "expirationDateTime": "2020-11-05T22:27:55Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPagination.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPagination.json index 45f5b11ec70f4..aa380d43c9efd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPagination.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPagination.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "3202", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-31e4ed013b24644e8defb009b1762197-d2f0c837fa4ad947-00", + "traceparent": "00-93b64571ccfdeb4ebd45cf1d7bf74a87-fd0268b212ee5c49-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -140,18 +140,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "38fb7746-79f7-461b-876b-7ea024840559", - "Date": "Wed, 04 Nov 2020 13:53:56 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/18a55557-4615-4e61-83ec-3bd176879f7c", + "apim-request-id": "4a2cb0b5-5fa3-469c-8ab2-56a32e65ed61", + "Date": "Wed, 04 Nov 2020 22:27:30 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/fec26a6c-b25f-4d2f-9215-a8ee7d7bbc56", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "382" + "x-envoy-upstream-service-time": "483" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/18a55557-4615-4e61-83ec-3bd176879f7c?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/fec26a6c-b25f-4d2f-9215-a8ee7d7bbc56?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -169,25 +169,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "30fa34db-bb45-4839-915b-056fa39a0d5c", + "apim-request-id": "455d29c9-9807-41fa-9cf2-69d040b0f8e5", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:53:56 GMT", + "Date": "Wed, 04 Nov 2020 22:27:31 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": "16" }, "ResponseBody": { - "jobId": "18a55557-4615-4e61-83ec-3bd176879f7c", - "lastUpdateDateTime": "2020-11-04T13:53:57Z", - "createdDateTime": "2020-11-04T13:53:56Z", - "expirationDateTime": "2020-11-05T13:53:56Z", + "jobId": "fec26a6c-b25f-4d2f-9215-a8ee7d7bbc56", + "lastUpdateDateTime": "2020-11-04T22:27:31Z", + "createdDateTime": "2020-11-04T22:27:30Z", + "expirationDateTime": "2020-11-05T22:27:30Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/18a55557-4615-4e61-83ec-3bd176879f7c?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/fec26a6c-b25f-4d2f-9215-a8ee7d7bbc56?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -205,25 +205,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a9495b0e-0157-46bd-a94e-5cfc70a486d9", + "apim-request-id": "fe245fdc-bb18-4a2b-8e96-4f490e05945c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:53:58 GMT", + "Date": "Wed, 04 Nov 2020 22:27:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "18a55557-4615-4e61-83ec-3bd176879f7c", - "lastUpdateDateTime": "2020-11-04T13:53:57Z", - "createdDateTime": "2020-11-04T13:53:56Z", - "expirationDateTime": "2020-11-05T13:53:56Z", - "status": "notStarted", + "jobId": "fec26a6c-b25f-4d2f-9215-a8ee7d7bbc56", + "lastUpdateDateTime": "2020-11-04T22:27:32Z", + "createdDateTime": "2020-11-04T22:27:30Z", + "expirationDateTime": "2020-11-05T22:27:30Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/18a55557-4615-4e61-83ec-3bd176879f7c?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/fec26a6c-b25f-4d2f-9215-a8ee7d7bbc56?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -241,97 +241,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ec729b1c-16e3-4753-b974-37d2705f9f06", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:53:59 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" - }, - "ResponseBody": { - "jobId": "18a55557-4615-4e61-83ec-3bd176879f7c", - "lastUpdateDateTime": "2020-11-04T13:53:57Z", - "createdDateTime": "2020-11-04T13:53:56Z", - "expirationDateTime": "2020-11-05T13:53:56Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/18a55557-4615-4e61-83ec-3bd176879f7c?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2cba1531821bff99a027b9ded5b94dc9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b9e16146-ae7e-4915-a7f3-b689468eaed0", + "apim-request-id": "0642e740-d41f-4485-b10f-d4d9a478e10e", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:00 GMT", + "Date": "Wed, 04 Nov 2020 22:27:33 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": "18a55557-4615-4e61-83ec-3bd176879f7c", - "lastUpdateDateTime": "2020-11-04T13:53:57Z", - "createdDateTime": "2020-11-04T13:53:56Z", - "expirationDateTime": "2020-11-05T13:53:56Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/18a55557-4615-4e61-83ec-3bd176879f7c?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "439219099c4e763dfe70aebdcbcf23f6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c5132152-59bb-41ab-bcb2-5654832c4b57", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:01 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": "18a55557-4615-4e61-83ec-3bd176879f7c", - "lastUpdateDateTime": "2020-11-04T13:54:01Z", - "createdDateTime": "2020-11-04T13:53:56Z", - "expirationDateTime": "2020-11-05T13:53:56Z", + "jobId": "fec26a6c-b25f-4d2f-9215-a8ee7d7bbc56", + "lastUpdateDateTime": "2020-11-04T22:27:33Z", + "createdDateTime": "2020-11-04T22:27:30Z", + "expirationDateTime": "2020-11-05T22:27:30Z", "status": "running", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/18a55557-4615-4e61-83ec-3bd176879f7c?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/fec26a6c-b25f-4d2f-9215-a8ee7d7bbc56?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -343,25 +271,25 @@ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "c6eb26e66141811d33eeca1ae941a17e", + "x-ms-client-request-id": "2cba1531821bff99a027b9ded5b94dc9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a30e0e5f-1812-4466-9481-7f14dfb8be85", + "apim-request-id": "e819230c-6484-420a-8090-aace104a3188", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:02 GMT", + "Date": "Wed, 04 Nov 2020 22:27:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "170" + "x-envoy-upstream-service-time": "273" }, "ResponseBody": { - "jobId": "18a55557-4615-4e61-83ec-3bd176879f7c", - "lastUpdateDateTime": "2020-11-04T13:54:02Z", - "createdDateTime": "2020-11-04T13:53:56Z", - "expirationDateTime": "2020-11-05T13:53:56Z", + "jobId": "fec26a6c-b25f-4d2f-9215-a8ee7d7bbc56", + "lastUpdateDateTime": "2020-11-04T22:27:34Z", + "createdDateTime": "2020-11-04T22:27:30Z", + "expirationDateTime": "2020-11-05T22:27:30Z", "status": "succeeded", "errors": [], "results": { @@ -2830,11 +2758,11 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/18a55557-4615-4e61-83ec-3bd176879f7c?$skip=20\u0026$top=3" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/fec26a6c-b25f-4d2f-9215-a8ee7d7bbc56?$skip=20\u0026$top=3" } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/18a55557-4615-4e61-83ec-3bd176879f7c?$top=3\u0026$skip=20", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/fec26a6c-b25f-4d2f-9215-a8ee7d7bbc56?$top=3\u0026$skip=20\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2846,25 +2774,25 @@ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "9dd2aef2c01e95a3d8442daad3dc33d1", + "x-ms-client-request-id": "439219099c4e763dfe70aebdcbcf23f6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "10e10433-0118-404b-80b4-9307c9f1856d", + "apim-request-id": "c3f90846-982d-41cf-a813-422fd4de215e", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:02 GMT", + "Date": "Wed, 04 Nov 2020 22:27:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-envoy-upstream-service-time": "69" }, "ResponseBody": { - "jobId": "18a55557-4615-4e61-83ec-3bd176879f7c", - "lastUpdateDateTime": "2020-11-04T13:54:02Z", - "createdDateTime": "2020-11-04T13:53:56Z", - "expirationDateTime": "2020-11-05T13:53:56Z", + "jobId": "fec26a6c-b25f-4d2f-9215-a8ee7d7bbc56", + "lastUpdateDateTime": "2020-11-04T22:27:34Z", + "createdDateTime": "2020-11-04T22:27:30Z", + "expirationDateTime": "2020-11-05T22:27:30Z", "status": "succeeded", "errors": [], "results": { @@ -3248,6 +3176,6 @@ "Variables": { "RandomSeed": "1357450788", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPaginationAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPaginationAsync.json index 09206b5fa92f4..878b7ee7680c3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPaginationAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPaginationAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "3202", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7eaf008dc0ad02439e84b78af03b8976-d8190e78134cdd44-00", + "traceparent": "00-90fabaf0d2dae94181407b4ca45f1698-f0d6339ef30c414f-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -140,18 +140,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "a04ee059-a920-4469-9044-4fe3a95ab99b", - "Date": "Wed, 04 Nov 2020 13:54:46 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eaf23bc9-9e4c-414b-88f5-4061313a5e47", + "apim-request-id": "3973cfb2-3f78-40be-af75-47636db7b842", + "Date": "Wed, 04 Nov 2020 22:27:58 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c8569761-1de8-4e39-8852-39ff5181bef2", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "392" + "x-envoy-upstream-service-time": "399" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eaf23bc9-9e4c-414b-88f5-4061313a5e47?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c8569761-1de8-4e39-8852-39ff5181bef2?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -169,25 +169,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5d37844e-9f73-4da6-9344-97979f3a9de6", + "apim-request-id": "7e86d630-249c-4bf3-90e2-5070fccffe24", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:46 GMT", + "Date": "Wed, 04 Nov 2020 22:27:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "eaf23bc9-9e4c-414b-88f5-4061313a5e47", - "lastUpdateDateTime": "2020-11-04T13:54:46Z", - "createdDateTime": "2020-11-04T13:54:46Z", - "expirationDateTime": "2020-11-05T13:54:46Z", - "status": "notStarted", + "jobId": "c8569761-1de8-4e39-8852-39ff5181bef2", + "lastUpdateDateTime": "2020-11-04T22:27:58Z", + "createdDateTime": "2020-11-04T22:27:58Z", + "expirationDateTime": "2020-11-05T22:27:58Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eaf23bc9-9e4c-414b-88f5-4061313a5e47?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c8569761-1de8-4e39-8852-39ff5181bef2?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -205,169 +205,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8f99f643-4665-4127-a846-0d4b40ebb588", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:47 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": "eaf23bc9-9e4c-414b-88f5-4061313a5e47", - "lastUpdateDateTime": "2020-11-04T13:54:46Z", - "createdDateTime": "2020-11-04T13:54:46Z", - "expirationDateTime": "2020-11-05T13:54:46Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eaf23bc9-9e4c-414b-88f5-4061313a5e47?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ebc37c63c42eb92852bd57a0ca8c902e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "36da7781-17d4-4479-9ebe-c3150c065a3f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:48 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": "eaf23bc9-9e4c-414b-88f5-4061313a5e47", - "lastUpdateDateTime": "2020-11-04T13:54:46Z", - "createdDateTime": "2020-11-04T13:54:46Z", - "expirationDateTime": "2020-11-05T13:54:46Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eaf23bc9-9e4c-414b-88f5-4061313a5e47?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9f34cfa6f7bb6feaf474d418a4184128", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "002fbcf5-aa6d-4f91-88fc-1e7769b7c458", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:50 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": "eaf23bc9-9e4c-414b-88f5-4061313a5e47", - "lastUpdateDateTime": "2020-11-04T13:54:46Z", - "createdDateTime": "2020-11-04T13:54:46Z", - "expirationDateTime": "2020-11-05T13:54:46Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eaf23bc9-9e4c-414b-88f5-4061313a5e47?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2efb93a746d22ef7642bd7f66001ab4b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "628ec05e-12ae-41a0-a72b-8ba626695480", + "apim-request-id": "ed593adf-1f38-4b1b-a622-d0944336c3d8", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:51 GMT", + "Date": "Wed, 04 Nov 2020 22:27:59 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": "eaf23bc9-9e4c-414b-88f5-4061313a5e47", - "lastUpdateDateTime": "2020-11-04T13:54:50Z", - "createdDateTime": "2020-11-04T13:54:46Z", - "expirationDateTime": "2020-11-05T13:54:46Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eaf23bc9-9e4c-414b-88f5-4061313a5e47?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "747f0d242e3c6c9f9253f6b9ef0f1539", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2b2c8521-f0dd-41bc-8d0d-6987988451c1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:52 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" - }, - "ResponseBody": { - "jobId": "eaf23bc9-9e4c-414b-88f5-4061313a5e47", - "lastUpdateDateTime": "2020-11-04T13:54:51Z", - "createdDateTime": "2020-11-04T13:54:46Z", - "expirationDateTime": "2020-11-05T13:54:46Z", + "jobId": "c8569761-1de8-4e39-8852-39ff5181bef2", + "lastUpdateDateTime": "2020-11-04T22:27:59Z", + "createdDateTime": "2020-11-04T22:27:58Z", + "expirationDateTime": "2020-11-05T22:27:58Z", "status": "running", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eaf23bc9-9e4c-414b-88f5-4061313a5e47?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c8569761-1de8-4e39-8852-39ff5181bef2?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -379,25 +235,25 @@ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "36f82f7c62905f5bd8053a8f1ff30ef3", + "x-ms-client-request-id": "ebc37c63c42eb92852bd57a0ca8c902e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1e54bb3e-49e3-4a7b-acf7-8c8780650451", + "apim-request-id": "1e1f70f0-56cf-4773-8d02-0cd99cbe7447", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:53 GMT", + "Date": "Wed, 04 Nov 2020 22:28:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "176" + "x-envoy-upstream-service-time": "214" }, "ResponseBody": { - "jobId": "eaf23bc9-9e4c-414b-88f5-4061313a5e47", - "lastUpdateDateTime": "2020-11-04T13:54:52Z", - "createdDateTime": "2020-11-04T13:54:46Z", - "expirationDateTime": "2020-11-05T13:54:46Z", + "jobId": "c8569761-1de8-4e39-8852-39ff5181bef2", + "lastUpdateDateTime": "2020-11-04T22:28:01Z", + "createdDateTime": "2020-11-04T22:27:58Z", + "expirationDateTime": "2020-11-05T22:27:58Z", "status": "succeeded", "errors": [], "results": { @@ -2866,11 +2722,11 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eaf23bc9-9e4c-414b-88f5-4061313a5e47?$skip=20\u0026$top=3" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c8569761-1de8-4e39-8852-39ff5181bef2?$skip=20\u0026$top=3" } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/eaf23bc9-9e4c-414b-88f5-4061313a5e47?$top=3\u0026$skip=20", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c8569761-1de8-4e39-8852-39ff5181bef2?$top=3\u0026$skip=20\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2882,25 +2738,25 @@ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "96f489c8cc9879ebf48f9c7e4f3d3e54", + "x-ms-client-request-id": "9f34cfa6f7bb6feaf474d418a4184128", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0bd341fb-bc4f-41aa-9fcf-cb4d81b06bf3", + "apim-request-id": "ac02c50a-fde6-4456-88de-3d95304d1a92", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:53 GMT", + "Date": "Wed, 04 Nov 2020 22:28:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "80" }, "ResponseBody": { - "jobId": "eaf23bc9-9e4c-414b-88f5-4061313a5e47", - "lastUpdateDateTime": "2020-11-04T13:54:52Z", - "createdDateTime": "2020-11-04T13:54:46Z", - "expirationDateTime": "2020-11-05T13:54:46Z", + "jobId": "c8569761-1de8-4e39-8852-39ff5181bef2", + "lastUpdateDateTime": "2020-11-04T22:28:01Z", + "createdDateTime": "2020-11-04T22:27:58Z", + "expirationDateTime": "2020-11-05T22:27:58Z", "status": "succeeded", "errors": [], "results": { @@ -3284,6 +3140,6 @@ "Variables": { "RandomSeed": "386709158", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json index 88b65956eef6f..2261e95b78aa1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e59c10e9c290344391473391b8e1b74b-07fd4f903063b947-00", + "traceparent": "00-d6c040481ec2c641a9830f771fc7028f-5fe5e2c0b95b9b45-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "b46c4f61-fbe8-4870-8739-a06b29cd92a0", - "Date": "Wed, 04 Nov 2020 13:54:02 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/7252c380-e5d4-45db-8d76-39d23dfebb12", + "apim-request-id": "fe9de38a-d93b-45a6-8681-78b4bec70141", + "Date": "Wed, 04 Nov 2020 22:27:35 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0debc4ec-479a-4a19-a57d-ff3d85cd5c3e", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "146" + "x-envoy-upstream-service-time": "130" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/7252c380-e5d4-45db-8d76-39d23dfebb12?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0debc4ec-479a-4a19-a57d-ff3d85cd5c3e?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "03e006c8-1941-47ae-ac33-8bfef7a79591", + "apim-request-id": "2d2f97f1-980b-4481-b753-34bee3408203", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:02 GMT", + "Date": "Wed, 04 Nov 2020 22:27:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "7252c380-e5d4-45db-8d76-39d23dfebb12", - "lastUpdateDateTime": "2020-11-04T13:54:02Z", - "createdDateTime": "2020-11-04T13:54:02Z", - "expirationDateTime": "2020-11-05T13:54:02Z", + "jobId": "0debc4ec-479a-4a19-a57d-ff3d85cd5c3e", + "lastUpdateDateTime": "2020-11-04T22:27:36Z", + "createdDateTime": "2020-11-04T22:27:35Z", + "expirationDateTime": "2020-11-05T22:27:35Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/7252c380-e5d4-45db-8d76-39d23dfebb12?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0debc4ec-479a-4a19-a57d-ff3d85cd5c3e?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "86f52efe-1684-4e3b-ac28-ad472898d821", + "apim-request-id": "d238219b-a451-4583-a198-1d4da4484854", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:03 GMT", + "Date": "Wed, 04 Nov 2020 22:27:36 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": "28" }, "ResponseBody": { - "jobId": "7252c380-e5d4-45db-8d76-39d23dfebb12", - "lastUpdateDateTime": "2020-11-04T13:54:02Z", - "createdDateTime": "2020-11-04T13:54:02Z", - "expirationDateTime": "2020-11-05T13:54:02Z", - "status": "notStarted", + "jobId": "0debc4ec-479a-4a19-a57d-ff3d85cd5c3e", + "lastUpdateDateTime": "2020-11-04T22:27:37Z", + "createdDateTime": "2020-11-04T22:27:35Z", + "expirationDateTime": "2020-11-05T22:27:35Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/7252c380-e5d4-45db-8d76-39d23dfebb12?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0debc4ec-479a-4a19-a57d-ff3d85cd5c3e?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -136,55 +136,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ca37174c-a583-48d7-9b3b-41c9b099a404", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:04 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": "7252c380-e5d4-45db-8d76-39d23dfebb12", - "lastUpdateDateTime": "2020-11-04T13:54:02Z", - "createdDateTime": "2020-11-04T13:54:02Z", - "expirationDateTime": "2020-11-05T13:54:02Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/7252c380-e5d4-45db-8d76-39d23dfebb12?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "59254d4cb0b043964770e83ad7c68b6c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4e1321f3-1211-4034-8060-25c5e73d0469", + "apim-request-id": "e0437226-fea4-47fe-be0d-c49eff89e0ee", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:06 GMT", + "Date": "Wed, 04 Nov 2020 22:27:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-envoy-upstream-service-time": "71" }, "ResponseBody": { - "jobId": "7252c380-e5d4-45db-8d76-39d23dfebb12", - "lastUpdateDateTime": "2020-11-04T13:54:05Z", - "createdDateTime": "2020-11-04T13:54:02Z", - "expirationDateTime": "2020-11-05T13:54:02Z", + "jobId": "0debc4ec-479a-4a19-a57d-ff3d85cd5c3e", + "lastUpdateDateTime": "2020-11-04T22:27:37Z", + "createdDateTime": "2020-11-04T22:27:35Z", + "expirationDateTime": "2020-11-05T22:27:35Z", "status": "succeeded", "errors": [], "results": { @@ -1159,6 +1123,6 @@ "Variables": { "RandomSeed": "858087556", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json index d901294bea021..b00ec9785d76d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3e948dec09896f4f8c6c4ec73b12a2f0-5dccaedfb3e65847-00", + "traceparent": "00-1f8fff5405ccb44fbf43bef7ceccde3a-3397d17bb5734146-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "7b65cecb-5c90-45b7-91c7-ce1922b32b41", - "Date": "Wed, 04 Nov 2020 13:54:53 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/597e568d-9a51-4c84-a414-81794acb40aa", + "apim-request-id": "6ebbd83a-7c6b-4040-b6e6-22bc7c5fbce5", + "Date": "Wed, 04 Nov 2020 22:28:01 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/60a27b7d-4de9-4342-8110-d5cf4ba8da68", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "122" + "x-envoy-upstream-service-time": "80" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/597e568d-9a51-4c84-a414-81794acb40aa?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/60a27b7d-4de9-4342-8110-d5cf4ba8da68?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b02479dd-d238-465e-adf4-ec4ccf0e1bcd", + "apim-request-id": "44d0e3ae-845a-4b01-bbe5-268ba5b598ff", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:53 GMT", + "Date": "Wed, 04 Nov 2020 22:28:01 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": "5" }, "ResponseBody": { - "jobId": "597e568d-9a51-4c84-a414-81794acb40aa", - "lastUpdateDateTime": "2020-11-04T13:54:53Z", - "createdDateTime": "2020-11-04T13:54:53Z", - "expirationDateTime": "2020-11-05T13:54:53Z", - "status": "notStarted", + "jobId": "60a27b7d-4de9-4342-8110-d5cf4ba8da68", + "lastUpdateDateTime": "2020-11-04T22:28:02Z", + "createdDateTime": "2020-11-04T22:28:02Z", + "expirationDateTime": "2020-11-05T22:28:02Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/597e568d-9a51-4c84-a414-81794acb40aa?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/60a27b7d-4de9-4342-8110-d5cf4ba8da68?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -100,91 +100,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "20bf0a7c-1fd9-4fdf-b815-a8e29474086a", + "apim-request-id": "60d9d6b3-2f72-44ff-a691-bf1abffda8ee", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:54 GMT", + "Date": "Wed, 04 Nov 2020 22:28:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "76" }, "ResponseBody": { - "jobId": "597e568d-9a51-4c84-a414-81794acb40aa", - "lastUpdateDateTime": "2020-11-04T13:54:53Z", - "createdDateTime": "2020-11-04T13:54:53Z", - "expirationDateTime": "2020-11-05T13:54:53Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/597e568d-9a51-4c84-a414-81794acb40aa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4456bc1eb361546e99c71e580d73e5b3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6a84acf2-b614-4743-a07c-9e49955c4337", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:55 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" - }, - "ResponseBody": { - "jobId": "597e568d-9a51-4c84-a414-81794acb40aa", - "lastUpdateDateTime": "2020-11-04T13:54:53Z", - "createdDateTime": "2020-11-04T13:54:53Z", - "expirationDateTime": "2020-11-05T13:54:53Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/597e568d-9a51-4c84-a414-81794acb40aa?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c5e24e1225fae02416447dad777faf54", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ed6ece4d-5948-4fe8-aa2e-c0653d15f9cf", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:56 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" - }, - "ResponseBody": { - "jobId": "597e568d-9a51-4c84-a414-81794acb40aa", - "lastUpdateDateTime": "2020-11-04T13:54:55Z", - "createdDateTime": "2020-11-04T13:54:53Z", - "expirationDateTime": "2020-11-05T13:54:53Z", + "jobId": "60a27b7d-4de9-4342-8110-d5cf4ba8da68", + "lastUpdateDateTime": "2020-11-04T22:28:02Z", + "createdDateTime": "2020-11-04T22:28:02Z", + "expirationDateTime": "2020-11-05T22:28:02Z", "status": "succeeded", "errors": [], "results": { @@ -1159,6 +1087,6 @@ "Variables": { "RandomSeed": "1450670554", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json index 8ad711c8adb63..529fb3412d02b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "100", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-66e2914212b33f4b94b915544858c3e4-03ef1afe56d9ed48-00", + "traceparent": "00-7ad4c746e5bb2841baf68d077679511d-e8d9e0ed6f81a248-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,18 +30,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "1b452f00-26d4-4511-a46a-b7dfd85d90df", - "Date": "Wed, 04 Nov 2020 13:54:06 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/97f1a4df-b0df-4e32-8add-392dea8d6d9d", + "apim-request-id": "761331d2-a943-48f7-a6e8-75a25be581cf", + "Date": "Wed, 04 Nov 2020 22:27:38 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a03dfffc-a892-4474-bcee-6bd512f2522f", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "80" + "x-envoy-upstream-service-time": "70" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/97f1a4df-b0df-4e32-8add-392dea8d6d9d", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a03dfffc-a892-4474-bcee-6bd512f2522f", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -59,133 +59,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "41d42260-b1fe-4a5c-a4db-e450f8fcdc37", + "apim-request-id": "efc2640d-c4fa-4387-8540-4e716c552d38", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:06 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": "97f1a4df-b0df-4e32-8add-392dea8d6d9d", - "lastUpdateDateTime": "2020-11-04T13:54:06Z", - "createdDateTime": "2020-11-04T13:54:06Z", - "expirationDateTime": "2020-11-05T13:54:06Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/97f1a4df-b0df-4e32-8add-392dea8d6d9d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a701cb20bb11a529608aebe12f36a48e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ef6e332f-e4a5-40b7-84b4-92e1ee72ad99", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:07 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": "97f1a4df-b0df-4e32-8add-392dea8d6d9d", - "lastUpdateDateTime": "2020-11-04T13:54:06Z", - "createdDateTime": "2020-11-04T13:54:06Z", - "expirationDateTime": "2020-11-05T13:54:06Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/97f1a4df-b0df-4e32-8add-392dea8d6d9d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "03c09e10ea8d7fc1b629f4abf8984821", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7525ef71-cb1c-480b-a189-12162966609b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:08 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": "97f1a4df-b0df-4e32-8add-392dea8d6d9d", - "lastUpdateDateTime": "2020-11-04T13:54:06Z", - "createdDateTime": "2020-11-04T13:54:06Z", - "expirationDateTime": "2020-11-05T13:54:06Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/97f1a4df-b0df-4e32-8add-392dea8d6d9d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "93bde9d0616598a24035cb771c26c3ba", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "26114e95-736f-4f4e-b5f7-bcf9373b61b4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:09 GMT", + "Date": "Wed, 04 Nov 2020 22:27:38 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": "97f1a4df-b0df-4e32-8add-392dea8d6d9d", - "lastUpdateDateTime": "2020-11-04T13:54:06Z", - "createdDateTime": "2020-11-04T13:54:06Z", - "expirationDateTime": "2020-11-05T13:54:06Z", - "status": "notStarted", + "jobId": "a03dfffc-a892-4474-bcee-6bd512f2522f", + "lastUpdateDateTime": "2020-11-04T22:27:39Z", + "createdDateTime": "2020-11-04T22:27:39Z", + "expirationDateTime": "2020-11-05T22:27:39Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/97f1a4df-b0df-4e32-8add-392dea8d6d9d", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a03dfffc-a892-4474-bcee-6bd512f2522f", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -197,61 +89,25 @@ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "f8591cd0562136ad0a82f0e8c77dacc7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6ad1d741-80bb-485c-b61b-b4cf5640df80", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54: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": "97f1a4df-b0df-4e32-8add-392dea8d6d9d", - "lastUpdateDateTime": "2020-11-04T13:54:06Z", - "createdDateTime": "2020-11-04T13:54:06Z", - "expirationDateTime": "2020-11-05T13:54:06Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/97f1a4df-b0df-4e32-8add-392dea8d6d9d", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4511ca421179ae28fc28c2571f4a628f", + "x-ms-client-request-id": "a701cb20bb11a529608aebe12f36a48e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b5eec320-0696-4b37-8134-1db3d3fc1515", + "apim-request-id": "00048a9e-2978-4ca6-bdee-0b5e13db6825", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:11 GMT", + "Date": "Wed, 04 Nov 2020 22:27:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "77" + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { - "jobId": "97f1a4df-b0df-4e32-8add-392dea8d6d9d", - "lastUpdateDateTime": "2020-11-04T13:54:10Z", - "createdDateTime": "2020-11-04T13:54:06Z", - "expirationDateTime": "2020-11-05T13:54:06Z", + "jobId": "a03dfffc-a892-4474-bcee-6bd512f2522f", + "lastUpdateDateTime": "2020-11-04T22:27:39Z", + "createdDateTime": "2020-11-04T22:27:39Z", + "expirationDateTime": "2020-11-05T22:27:39Z", "status": "succeeded", "errors": [], "results": { @@ -435,6 +291,6 @@ "Variables": { "RandomSeed": "1686725774", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json index 8068fe193d203..29bf0e28b3c04 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "100", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5000d6b6c115ec4281975c272dc0ebe0-1272cb570cc5cf4b-00", + "traceparent": "00-1b2220473ed8384fb4e3bf5f1ccba283-eded3b234f904343-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,9 +30,9 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "0b6ac987-6c44-4757-919a-27f3da800512", - "Date": "Wed, 04 Nov 2020 13:54:56 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/31423846-9118-482c-a16f-6dcdf40201eb", + "apim-request-id": "9ac5b685-95d4-47ab-94f9-9048323d861e", + "Date": "Wed, 04 Nov 2020 22:28:03 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0e9a33d3-be22-4e3f-9a2b-783ca89c9653", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -41,7 +41,7 @@ "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/31423846-9118-482c-a16f-6dcdf40201eb", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0e9a33d3-be22-4e3f-9a2b-783ca89c9653", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -59,25 +59,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4242ea96-f419-4ab2-8375-ec8686b4493e", + "apim-request-id": "a59a7078-87e2-4306-ba86-af999d321271", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:56 GMT", + "Date": "Wed, 04 Nov 2020 22:28:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { - "jobId": "31423846-9118-482c-a16f-6dcdf40201eb", - "lastUpdateDateTime": "2020-11-04T13:54:56Z", - "createdDateTime": "2020-11-04T13:54:56Z", - "expirationDateTime": "2020-11-05T13:54:56Z", + "jobId": "0e9a33d3-be22-4e3f-9a2b-783ca89c9653", + "lastUpdateDateTime": "2020-11-04T22:28:04Z", + "createdDateTime": "2020-11-04T22:28:04Z", + "expirationDateTime": "2020-11-05T22:28:04Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/31423846-9118-482c-a16f-6dcdf40201eb", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0e9a33d3-be22-4e3f-9a2b-783ca89c9653", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -95,163 +95,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bcaadd8b-e6a3-4270-99d1-0123b0f428b6", + "apim-request-id": "3aaa36a0-a51a-471e-b843-6943e50f5689", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:57 GMT", + "Date": "Wed, 04 Nov 2020 22:28:05 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": "49" }, "ResponseBody": { - "jobId": "31423846-9118-482c-a16f-6dcdf40201eb", - "lastUpdateDateTime": "2020-11-04T13:54:56Z", - "createdDateTime": "2020-11-04T13:54:56Z", - "expirationDateTime": "2020-11-05T13:54:56Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/31423846-9118-482c-a16f-6dcdf40201eb", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b5e59345e53b24c743bd270071a85633", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2b3ee81e-5c7d-4c74-8875-f70b8b721f17", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:58 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": "31423846-9118-482c-a16f-6dcdf40201eb", - "lastUpdateDateTime": "2020-11-04T13:54:56Z", - "createdDateTime": "2020-11-04T13:54:56Z", - "expirationDateTime": "2020-11-05T13:54:56Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/31423846-9118-482c-a16f-6dcdf40201eb", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b0624d7ba0e84c9f0cdc46a153b41a84", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6297f13a-4602-4f71-a434-bed9393b77ab", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:59 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": "31423846-9118-482c-a16f-6dcdf40201eb", - "lastUpdateDateTime": "2020-11-04T13:54:56Z", - "createdDateTime": "2020-11-04T13:54:56Z", - "expirationDateTime": "2020-11-05T13:54:56Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/31423846-9118-482c-a16f-6dcdf40201eb", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d03b9cc7774697c2943b8c4ca0433322", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c2af7a81-ef50-4cb3-90f2-f7a2ae368968", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:55:00 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" - }, - "ResponseBody": { - "jobId": "31423846-9118-482c-a16f-6dcdf40201eb", - "lastUpdateDateTime": "2020-11-04T13:55:00Z", - "createdDateTime": "2020-11-04T13:54:56Z", - "expirationDateTime": "2020-11-05T13:54:56Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/31423846-9118-482c-a16f-6dcdf40201eb", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b79fd9072b9ea435f498a85e9e26d18e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bb0e62ff-7ba5-41a6-b94c-5bf9ebca1b5a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:55:01 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" - }, - "ResponseBody": { - "jobId": "31423846-9118-482c-a16f-6dcdf40201eb", - "lastUpdateDateTime": "2020-11-04T13:55:00Z", - "createdDateTime": "2020-11-04T13:54:56Z", - "expirationDateTime": "2020-11-05T13:54:56Z", + "jobId": "0e9a33d3-be22-4e3f-9a2b-783ca89c9653", + "lastUpdateDateTime": "2020-11-04T22:28:04Z", + "createdDateTime": "2020-11-04T22:28:04Z", + "expirationDateTime": "2020-11-05T22:28:04Z", "status": "succeeded", "errors": [], "results": { @@ -435,6 +291,6 @@ "Variables": { "RandomSeed": "1184190609", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json index a9246703aa2b3..2fd2c6a0a0d9b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "100", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3ff17d440a6a0b43ac45f763388865c8-4d84a95438cfd145-00", + "traceparent": "00-7870f125ea941746b398b5513a630829-ed4152ef419cce48-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,18 +30,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "d2c5b6fb-f648-40ff-bea3-17bb246991bb", - "Date": "Wed, 04 Nov 2020 13:54:11 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/1c594951-c54a-44c6-ad34-2367ed5cc44a", + "apim-request-id": "65cc9e55-7760-4fe7-b6c5-0679d1222f27", + "Date": "Wed, 04 Nov 2020 22:27:40 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/2e2d1272-5041-4c7a-b1ae-80efa1b0c0ee", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "74" + "x-envoy-upstream-service-time": "94" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/1c594951-c54a-44c6-ad34-2367ed5cc44a?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/2e2d1272-5041-4c7a-b1ae-80efa1b0c0ee?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -59,25 +59,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "793c2a20-157d-40d3-abb9-4fb38bb33be9", + "apim-request-id": "a1c4820b-0ee8-4ca4-8c8d-88b4325c98f0", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:11 GMT", + "Date": "Wed, 04 Nov 2020 22:27:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "1c594951-c54a-44c6-ad34-2367ed5cc44a", - "lastUpdateDateTime": "2020-11-04T13:54:11Z", - "createdDateTime": "2020-11-04T13:54:11Z", - "expirationDateTime": "2020-11-05T13:54:11Z", + "jobId": "2e2d1272-5041-4c7a-b1ae-80efa1b0c0ee", + "lastUpdateDateTime": "2020-11-04T22:27:40Z", + "createdDateTime": "2020-11-04T22:27:40Z", + "expirationDateTime": "2020-11-05T22:27:40Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/1c594951-c54a-44c6-ad34-2367ed5cc44a?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/2e2d1272-5041-4c7a-b1ae-80efa1b0c0ee?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -95,25 +95,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "92fdd494-b28a-492f-9c58-2555b051a232", + "apim-request-id": "e16ab6d2-7a90-4142-909d-481f5df70cc4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:12 GMT", + "Date": "Wed, 04 Nov 2020 22:27:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { - "jobId": "1c594951-c54a-44c6-ad34-2367ed5cc44a", - "lastUpdateDateTime": "2020-11-04T13:54:11Z", - "createdDateTime": "2020-11-04T13:54:11Z", - "expirationDateTime": "2020-11-05T13:54:11Z", + "jobId": "2e2d1272-5041-4c7a-b1ae-80efa1b0c0ee", + "lastUpdateDateTime": "2020-11-04T22:27:40Z", + "createdDateTime": "2020-11-04T22:27:40Z", + "expirationDateTime": "2020-11-05T22:27:40Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/1c594951-c54a-44c6-ad34-2367ed5cc44a?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/2e2d1272-5041-4c7a-b1ae-80efa1b0c0ee?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -131,127 +131,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6923f6ed-2e99-4c64-b098-1902a9a0606e", + "apim-request-id": "e61a457d-8906-496b-83fa-4f9878dee32d", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:13 GMT", + "Date": "Wed, 04 Nov 2020 22:27:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { - "jobId": "1c594951-c54a-44c6-ad34-2367ed5cc44a", - "lastUpdateDateTime": "2020-11-04T13:54:11Z", - "createdDateTime": "2020-11-04T13:54:11Z", - "expirationDateTime": "2020-11-05T13:54:11Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/1c594951-c54a-44c6-ad34-2367ed5cc44a?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a4abf7090d51955a436148dd080e8c26", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "dd077f20-b8d0-451a-839f-cc2ed3d8a743", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:14 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": "1c594951-c54a-44c6-ad34-2367ed5cc44a", - "lastUpdateDateTime": "2020-11-04T13:54:11Z", - "createdDateTime": "2020-11-04T13:54:11Z", - "expirationDateTime": "2020-11-05T13:54:11Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/1c594951-c54a-44c6-ad34-2367ed5cc44a?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ac0adb67b502c15a3f4db5b5a873ae0e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a4a44d08-bc70-4bba-9845-ef68c5dfeb8b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:15 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": "1c594951-c54a-44c6-ad34-2367ed5cc44a", - "lastUpdateDateTime": "2020-11-04T13:54:11Z", - "createdDateTime": "2020-11-04T13:54:11Z", - "expirationDateTime": "2020-11-05T13:54:11Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/1c594951-c54a-44c6-ad34-2367ed5cc44a?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b6c77215aeb9d807a159c37ba38bb7b0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e3d91200-a6bf-4878-a266-dd0691415cd5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:16 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" - }, - "ResponseBody": { - "jobId": "1c594951-c54a-44c6-ad34-2367ed5cc44a", - "lastUpdateDateTime": "2020-11-04T13:54:15Z", - "createdDateTime": "2020-11-04T13:54:11Z", - "expirationDateTime": "2020-11-05T13:54:11Z", + "jobId": "2e2d1272-5041-4c7a-b1ae-80efa1b0c0ee", + "lastUpdateDateTime": "2020-11-04T22:27:42Z", + "createdDateTime": "2020-11-04T22:27:40Z", + "expirationDateTime": "2020-11-05T22:27:40Z", "status": "succeeded", "errors": [], "results": { @@ -435,6 +327,6 @@ "Variables": { "RandomSeed": "1940196881", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json index 184a80bafe4ba..2d61adc3d3fd4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "100", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-753cde7bdfc75c4dbdc8dc617deccc3a-bf53216a87705542-00", + "traceparent": "00-685d63155988f3488a22c144cd4caeaa-9b5810b3eff22146-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -30,18 +30,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "d2b40481-6f27-4f73-86fe-81f8b485017f", - "Date": "Wed, 04 Nov 2020 13:55:01 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/608ec3b3-9d73-4273-b85d-aad9bd11bf0c", + "apim-request-id": "f5ce7a45-3c46-4b2a-be99-444e0660b511", + "Date": "Wed, 04 Nov 2020 22:28:05 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/84fde309-a936-4c2a-bace-5372e4d1fcf8", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "66" + "x-envoy-upstream-service-time": "63" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/608ec3b3-9d73-4273-b85d-aad9bd11bf0c?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/84fde309-a936-4c2a-bace-5372e4d1fcf8?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -59,25 +59,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "79ef1955-8d97-4037-a331-37257047c2eb", + "apim-request-id": "526b03d3-7628-47c6-993a-d9d0f7161441", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:55:01 GMT", + "Date": "Wed, 04 Nov 2020 22:28:05 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": "608ec3b3-9d73-4273-b85d-aad9bd11bf0c", - "lastUpdateDateTime": "2020-11-04T13:55:02Z", - "createdDateTime": "2020-11-04T13:55:01Z", - "expirationDateTime": "2020-11-05T13:55:01Z", + "jobId": "84fde309-a936-4c2a-bace-5372e4d1fcf8", + "lastUpdateDateTime": "2020-11-04T22:28:06Z", + "createdDateTime": "2020-11-04T22:28:05Z", + "expirationDateTime": "2020-11-05T22:28:05Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/608ec3b3-9d73-4273-b85d-aad9bd11bf0c?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/84fde309-a936-4c2a-bace-5372e4d1fcf8?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -95,25 +95,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5d5c41ce-5730-4730-a55c-758625da0d5e", + "apim-request-id": "6b34c728-6894-47d7-bbed-98560ef525d3", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:55:03 GMT", + "Date": "Wed, 04 Nov 2020 22:28:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "608ec3b3-9d73-4273-b85d-aad9bd11bf0c", - "lastUpdateDateTime": "2020-11-04T13:55:02Z", - "createdDateTime": "2020-11-04T13:55:01Z", - "expirationDateTime": "2020-11-05T13:55:01Z", + "jobId": "84fde309-a936-4c2a-bace-5372e4d1fcf8", + "lastUpdateDateTime": "2020-11-04T22:28:06Z", + "createdDateTime": "2020-11-04T22:28:05Z", + "expirationDateTime": "2020-11-05T22:28:05Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/608ec3b3-9d73-4273-b85d-aad9bd11bf0c?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/84fde309-a936-4c2a-bace-5372e4d1fcf8?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -131,91 +131,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a3bdc80a-1545-4360-b437-854c401f4e26", + "apim-request-id": "afe06df2-f42d-484e-96fa-b4f74adadfdf", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:55:04 GMT", + "Date": "Wed, 04 Nov 2020 22:28:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "849" }, "ResponseBody": { - "jobId": "608ec3b3-9d73-4273-b85d-aad9bd11bf0c", - "lastUpdateDateTime": "2020-11-04T13:55:02Z", - "createdDateTime": "2020-11-04T13:55:01Z", - "expirationDateTime": "2020-11-05T13:55:01Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/608ec3b3-9d73-4273-b85d-aad9bd11bf0c?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "094430652ca3fb20e319d1fb8ec14f41", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "44d2f7e7-3894-4fb9-a0cb-5c9894a2ac74", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:55:05 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": "608ec3b3-9d73-4273-b85d-aad9bd11bf0c", - "lastUpdateDateTime": "2020-11-04T13:55:02Z", - "createdDateTime": "2020-11-04T13:55:01Z", - "expirationDateTime": "2020-11-05T13:55:01Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/608ec3b3-9d73-4273-b85d-aad9bd11bf0c?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d18df496c7e2aa18718a74d992419ab0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0cad1238-6a68-4682-a0d4-6350bc59ec78", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:55:06 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" - }, - "ResponseBody": { - "jobId": "608ec3b3-9d73-4273-b85d-aad9bd11bf0c", - "lastUpdateDateTime": "2020-11-04T13:55:05Z", - "createdDateTime": "2020-11-04T13:55:01Z", - "expirationDateTime": "2020-11-05T13:55:01Z", + "jobId": "84fde309-a936-4c2a-bace-5372e4d1fcf8", + "lastUpdateDateTime": "2020-11-04T22:28:07Z", + "createdDateTime": "2020-11-04T22:28:05Z", + "expirationDateTime": "2020-11-05T22:28:05Z", "status": "succeeded", "errors": [], "results": { @@ -399,6 +327,6 @@ "Variables": { "RandomSeed": "330150674", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json index a75d9350316f9..404dfe3e25855 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2a530e3ba37d8d478b1e5ca8ca0086da-f3b63522f2b73748-00", + "traceparent": "00-7a2a8b91b27bda45b37a080163ac0dcf-6ea27683c6e83941-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "430e1db0-bc88-4f0a-9b64-0124fab92f87", - "Date": "Wed, 04 Nov 2020 13:54:16 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b2d32b44-d4e3-44db-a1c1-d56f4a410b5e", + "apim-request-id": "5f53a6a4-66ee-4c0c-ab48-05b304d30262", + "Date": "Wed, 04 Nov 2020 22:27:43 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6045f011-90c1-4047-919b-663fad718667", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "74" + "x-envoy-upstream-service-time": "99" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b2d32b44-d4e3-44db-a1c1-d56f4a410b5e?$skip=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6045f011-90c1-4047-919b-663fad718667?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2b6ba6a7-60e1-4633-9d9d-9a770819f0c1", + "apim-request-id": "532bb73d-17e0-462e-9f2a-55eab781aa9d", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:16 GMT", + "Date": "Wed, 04 Nov 2020 22:27:43 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": "17" }, "ResponseBody": { - "jobId": "b2d32b44-d4e3-44db-a1c1-d56f4a410b5e", - "lastUpdateDateTime": "2020-11-04T13:54:16Z", - "createdDateTime": "2020-11-04T13:54:16Z", - "expirationDateTime": "2020-11-05T13:54:16Z", + "jobId": "6045f011-90c1-4047-919b-663fad718667", + "lastUpdateDateTime": "2020-11-04T22:27:43Z", + "createdDateTime": "2020-11-04T22:27:43Z", + "expirationDateTime": "2020-11-05T22:27:43Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b2d32b44-d4e3-44db-a1c1-d56f4a410b5e?$skip=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6045f011-90c1-4047-919b-663fad718667?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -100,127 +100,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c0570f58-639d-4f2a-9dca-080228580b34", + "apim-request-id": "b4583426-d01b-4732-b63b-46089a328982", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:17 GMT", + "Date": "Wed, 04 Nov 2020 22:27:44 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": "38" }, "ResponseBody": { - "jobId": "b2d32b44-d4e3-44db-a1c1-d56f4a410b5e", - "lastUpdateDateTime": "2020-11-04T13:54:16Z", - "createdDateTime": "2020-11-04T13:54:16Z", - "expirationDateTime": "2020-11-05T13:54:16Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b2d32b44-d4e3-44db-a1c1-d56f4a410b5e?$skip=1\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8af430b30bf8a15e3644f66a5d35ac92", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "82dd03ee-5700-4441-b701-86c1904e7dc8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:18 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": "b2d32b44-d4e3-44db-a1c1-d56f4a410b5e", - "lastUpdateDateTime": "2020-11-04T13:54:16Z", - "createdDateTime": "2020-11-04T13:54:16Z", - "expirationDateTime": "2020-11-05T13:54:16Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b2d32b44-d4e3-44db-a1c1-d56f4a410b5e?$skip=1\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "38e04dbc073fd45c14a401c7e229e47f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "50f25792-ea1b-466d-a32c-e6064e848986", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:19 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": "b2d32b44-d4e3-44db-a1c1-d56f4a410b5e", - "lastUpdateDateTime": "2020-11-04T13:54:16Z", - "createdDateTime": "2020-11-04T13:54:16Z", - "expirationDateTime": "2020-11-05T13:54:16Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b2d32b44-d4e3-44db-a1c1-d56f4a410b5e?$skip=1\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8286353c8dfe591a9d2a883e55713d94", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c0bcee31-49b2-498b-b267-05b5d055403a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:20 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" - }, - "ResponseBody": { - "jobId": "b2d32b44-d4e3-44db-a1c1-d56f4a410b5e", - "lastUpdateDateTime": "2020-11-04T13:54:20Z", - "createdDateTime": "2020-11-04T13:54:16Z", - "expirationDateTime": "2020-11-05T13:54:16Z", + "jobId": "6045f011-90c1-4047-919b-663fad718667", + "lastUpdateDateTime": "2020-11-04T22:27:44Z", + "createdDateTime": "2020-11-04T22:27:43Z", + "expirationDateTime": "2020-11-05T22:27:43Z", "status": "succeeded", "errors": [], "results": { @@ -1020,6 +912,6 @@ "Variables": { "RandomSeed": "900872338", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json index d71c3fa92b06f..c62223a98239a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-76301e68d4262c45b567632d8b494cb3-b10c1eb8fd982f46-00", + "traceparent": "00-ba91fdf55f6eb74cbf7a419be71d3b6c-3133c0142777a34d-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "a70a923d-396e-4d78-b73a-a945cf78a4a7", - "Date": "Wed, 04 Nov 2020 13:55:06 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/a756ed27-39a0-4466-8cc0-66d9726577f3", + "apim-request-id": "f5ebc197-8f8c-47a1-bf81-5e8db99d3b4a", + "Date": "Wed, 04 Nov 2020 22:28:09 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/69e5de5b-7ffa-44bd-bafe-0d48a7c73db8", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "110" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/a756ed27-39a0-4466-8cc0-66d9726577f3?$skip=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/69e5de5b-7ffa-44bd-bafe-0d48a7c73db8?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ab0cc27c-ed0e-4989-924f-33aaf8c6077d", + "apim-request-id": "bdd53992-7324-42af-88b1-f9175fcadc39", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:55:06 GMT", + "Date": "Wed, 04 Nov 2020 22:28:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "a756ed27-39a0-4466-8cc0-66d9726577f3", - "lastUpdateDateTime": "2020-11-04T13:55:06Z", - "createdDateTime": "2020-11-04T13:55:06Z", - "expirationDateTime": "2020-11-05T13:55:06Z", + "jobId": "69e5de5b-7ffa-44bd-bafe-0d48a7c73db8", + "lastUpdateDateTime": "2020-11-04T22:28:09Z", + "createdDateTime": "2020-11-04T22:28:09Z", + "expirationDateTime": "2020-11-05T22:28:09Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/a756ed27-39a0-4466-8cc0-66d9726577f3?$skip=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/69e5de5b-7ffa-44bd-bafe-0d48a7c73db8?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "663c789d-511b-4d6c-baec-d3098889e250", + "apim-request-id": "9f1cc916-d2d9-4b86-8f46-fdd73012c4a5", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:55:07 GMT", + "Date": "Wed, 04 Nov 2020 22:28:11 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": "a756ed27-39a0-4466-8cc0-66d9726577f3", - "lastUpdateDateTime": "2020-11-04T13:55:06Z", - "createdDateTime": "2020-11-04T13:55:06Z", - "expirationDateTime": "2020-11-05T13:55:06Z", + "jobId": "69e5de5b-7ffa-44bd-bafe-0d48a7c73db8", + "lastUpdateDateTime": "2020-11-04T22:28:09Z", + "createdDateTime": "2020-11-04T22:28:09Z", + "expirationDateTime": "2020-11-05T22:28:09Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/a756ed27-39a0-4466-8cc0-66d9726577f3?$skip=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/69e5de5b-7ffa-44bd-bafe-0d48a7c73db8?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -136,97 +136,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f371e714-a498-4395-a9c9-6e738a5925d8", + "apim-request-id": "6ca87ef8-7ea1-4513-848e-9f58f6105426", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:55: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": "a756ed27-39a0-4466-8cc0-66d9726577f3", - "lastUpdateDateTime": "2020-11-04T13:55:06Z", - "createdDateTime": "2020-11-04T13:55:06Z", - "expirationDateTime": "2020-11-05T13:55:06Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/a756ed27-39a0-4466-8cc0-66d9726577f3?$skip=1\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9263f6070e8c9068040de978196ddcb4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5fc4570a-68bd-4636-9277-4fdb783ffced", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:55:09 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": "a756ed27-39a0-4466-8cc0-66d9726577f3", - "lastUpdateDateTime": "2020-11-04T13:55:06Z", - "createdDateTime": "2020-11-04T13:55:06Z", - "expirationDateTime": "2020-11-05T13:55:06Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/a756ed27-39a0-4466-8cc0-66d9726577f3?$skip=1\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "57f7a12eef60fdbd0f901f6a0f564dd4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e5711be8-d78b-43b0-b9d2-6c38995c76b1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:55:10 GMT", + "Date": "Wed, 04 Nov 2020 22:28:12 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": "a756ed27-39a0-4466-8cc0-66d9726577f3", - "lastUpdateDateTime": "2020-11-04T13:55:06Z", - "createdDateTime": "2020-11-04T13:55:06Z", - "expirationDateTime": "2020-11-05T13:55:06Z", + "jobId": "69e5de5b-7ffa-44bd-bafe-0d48a7c73db8", + "lastUpdateDateTime": "2020-11-04T22:28:09Z", + "createdDateTime": "2020-11-04T22:28:09Z", + "expirationDateTime": "2020-11-05T22:28:09Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/a756ed27-39a0-4466-8cc0-66d9726577f3?$skip=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/69e5de5b-7ffa-44bd-bafe-0d48a7c73db8?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -238,25 +166,25 @@ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "35ee13a7f6e7730b5210e57d63383fab", + "x-ms-client-request-id": "9263f6070e8c9068040de978196ddcb4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ce814e61-3e49-4c44-86e0-dea88b731a96", + "apim-request-id": "07fb6a7f-00a6-4de2-8d6c-f31d529fc6ca", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:55:11 GMT", + "Date": "Wed, 04 Nov 2020 22:28:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { - "jobId": "a756ed27-39a0-4466-8cc0-66d9726577f3", - "lastUpdateDateTime": "2020-11-04T13:55:10Z", - "createdDateTime": "2020-11-04T13:55:06Z", - "expirationDateTime": "2020-11-05T13:55:06Z", + "jobId": "69e5de5b-7ffa-44bd-bafe-0d48a7c73db8", + "lastUpdateDateTime": "2020-11-04T22:28:12Z", + "createdDateTime": "2020-11-04T22:28:09Z", + "expirationDateTime": "2020-11-05T22:28:09Z", "status": "succeeded", "errors": [], "results": { @@ -1056,6 +984,6 @@ "Variables": { "RandomSeed": "448859439", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json index 1e8293d5a81d7..78d5b87b766ca 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1d69e0b39f87f547b9000e75e93e74bf-851b52e65341724e-00", + "traceparent": "00-8b0ae490aaaecf44b0d7d192e16fca82-a7180145aa2bd84b-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "0fddf4f2-a652-47af-8b73-54769a89d9ca", - "Date": "Wed, 04 Nov 2020 13:54:20 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b27f403b-8803-4802-bb7f-efbe1c226a69", + "apim-request-id": "856d4700-99e3-451d-8dc8-7c0bc591d5e4", + "Date": "Wed, 04 Nov 2020 22:27:45 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9ccdd2db-8ac9-4d94-a981-7546c50e25a0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "85" + "x-envoy-upstream-service-time": "109" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b27f403b-8803-4802-bb7f-efbe1c226a69?$top=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9ccdd2db-8ac9-4d94-a981-7546c50e25a0?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ef0a35da-87df-481f-b1f1-a416dbbd06fb", + "apim-request-id": "f4380e77-b91d-4758-ad8a-62af032c4940", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:20 GMT", + "Date": "Wed, 04 Nov 2020 22:27:45 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": "b27f403b-8803-4802-bb7f-efbe1c226a69", - "lastUpdateDateTime": "2020-11-04T13:54:21Z", - "createdDateTime": "2020-11-04T13:54:20Z", - "expirationDateTime": "2020-11-05T13:54:20Z", + "jobId": "9ccdd2db-8ac9-4d94-a981-7546c50e25a0", + "lastUpdateDateTime": "2020-11-04T22:27:45Z", + "createdDateTime": "2020-11-04T22:27:45Z", + "expirationDateTime": "2020-11-05T22:27:45Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b27f403b-8803-4802-bb7f-efbe1c226a69?$top=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9ccdd2db-8ac9-4d94-a981-7546c50e25a0?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9266e588-9c3d-467e-ad13-e53fa0d09820", + "apim-request-id": "b1a75c8d-021d-4e53-a9b4-544342205354", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:22 GMT", + "Date": "Wed, 04 Nov 2020 22:27:46 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": "13" }, "ResponseBody": { - "jobId": "b27f403b-8803-4802-bb7f-efbe1c226a69", - "lastUpdateDateTime": "2020-11-04T13:54:21Z", - "createdDateTime": "2020-11-04T13:54:20Z", - "expirationDateTime": "2020-11-05T13:54:20Z", + "jobId": "9ccdd2db-8ac9-4d94-a981-7546c50e25a0", + "lastUpdateDateTime": "2020-11-04T22:27:45Z", + "createdDateTime": "2020-11-04T22:27:45Z", + "expirationDateTime": "2020-11-05T22:27:45Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b27f403b-8803-4802-bb7f-efbe1c226a69?$top=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9ccdd2db-8ac9-4d94-a981-7546c50e25a0?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -136,127 +136,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2aff024a-005b-48b8-9f2c-269ec23597d2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:23 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": "b27f403b-8803-4802-bb7f-efbe1c226a69", - "lastUpdateDateTime": "2020-11-04T13:54:21Z", - "createdDateTime": "2020-11-04T13:54:20Z", - "expirationDateTime": "2020-11-05T13:54:20Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b27f403b-8803-4802-bb7f-efbe1c226a69?$top=1\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "34876f37f3038fbdc3134f559df06d66", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1fc34106-7aa0-44bf-a0e0-8bc51e3a8fe5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:24 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": "b27f403b-8803-4802-bb7f-efbe1c226a69", - "lastUpdateDateTime": "2020-11-04T13:54:21Z", - "createdDateTime": "2020-11-04T13:54:20Z", - "expirationDateTime": "2020-11-05T13:54:20Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b27f403b-8803-4802-bb7f-efbe1c226a69?$top=1\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7be29f675ddb7243cafb10efab21972a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "24ac8b33-e3d0-4883-8aea-c1b4d4efc935", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:25 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": "b27f403b-8803-4802-bb7f-efbe1c226a69", - "lastUpdateDateTime": "2020-11-04T13:54:21Z", - "createdDateTime": "2020-11-04T13:54:20Z", - "expirationDateTime": "2020-11-05T13:54:20Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b27f403b-8803-4802-bb7f-efbe1c226a69?$top=1\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "374c2c7b59710901ff1dc62a0af3714c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1d5dcb8d-a5d1-4749-b3a0-ac73412272a5", + "apim-request-id": "15abd3db-93fa-4e62-b0ca-a5f57e93e44a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:54:26 GMT", + "Date": "Wed, 04 Nov 2020 22:27:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { - "jobId": "b27f403b-8803-4802-bb7f-efbe1c226a69", - "lastUpdateDateTime": "2020-11-04T13:54:25Z", - "createdDateTime": "2020-11-04T13:54:20Z", - "expirationDateTime": "2020-11-05T13:54:20Z", + "jobId": "9ccdd2db-8ac9-4d94-a981-7546c50e25a0", + "lastUpdateDateTime": "2020-11-04T22:27:47Z", + "createdDateTime": "2020-11-04T22:27:45Z", + "expirationDateTime": "2020-11-05T22:27:45Z", "status": "succeeded", "errors": [], "results": { @@ -434,13 +326,13 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/b27f403b-8803-4802-bb7f-efbe1c226a69?$skip=1\u0026$top=1" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9ccdd2db-8ac9-4d94-a981-7546c50e25a0?$skip=1\u0026$top=1" } } ], "Variables": { "RandomSeed": "1474656437", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json index 7cdf8f2fd561e..009561b0fe104 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,7 +11,7 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c97ebaa602f4d5418a78a5dc016c1ef5-c026e7d8575cea47-00", + "traceparent": "00-4012ba6bd75c334bb916cdd1f451ace4-bbd73a4df6413d46-00", "User-Agent": [ "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "23a84afa-9301-4427-add7-0996bbf46ec2", - "Date": "Wed, 04 Nov 2020 13:55:11 GMT", - "operation-location": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/70c8c70a-ee1e-4944-bbcd-5ed1237aedd1", + "apim-request-id": "57060423-f66c-4e7b-8443-5a448a5673d3", + "Date": "Wed, 04 Nov 2020 22:28:13 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e19c70c2-7067-40c7-ae38-a3a31568ac49", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "97" + "x-envoy-upstream-service-time": "95" }, "ResponseBody": [] }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/70c8c70a-ee1e-4944-bbcd-5ed1237aedd1?$top=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e19c70c2-7067-40c7-ae38-a3a31568ac49?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "75653fe0-7c8d-41e3-aa29-78b4ab1c1a23", + "apim-request-id": "231780f4-8165-4b91-8d67-0cc76ea5f2a0", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:55:11 GMT", + "Date": "Wed, 04 Nov 2020 22:28:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "70c8c70a-ee1e-4944-bbcd-5ed1237aedd1", - "lastUpdateDateTime": "2020-11-04T13:55:11Z", - "createdDateTime": "2020-11-04T13:55:11Z", - "expirationDateTime": "2020-11-05T13:55:11Z", + "jobId": "e19c70c2-7067-40c7-ae38-a3a31568ac49", + "lastUpdateDateTime": "2020-11-04T22:28:13Z", + "createdDateTime": "2020-11-04T22:28:13Z", + "expirationDateTime": "2020-11-05T22:28:13Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/70c8c70a-ee1e-4944-bbcd-5ed1237aedd1?$top=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e19c70c2-7067-40c7-ae38-a3a31568ac49?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -100,163 +100,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6e187bbb-49d2-4fc7-933d-902ec31cc2f2", + "apim-request-id": "d4cb806d-0748-41a2-8eb2-d1fb450fed63", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:55:12 GMT", + "Date": "Wed, 04 Nov 2020 22:28:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "54" }, "ResponseBody": { - "jobId": "70c8c70a-ee1e-4944-bbcd-5ed1237aedd1", - "lastUpdateDateTime": "2020-11-04T13:55:11Z", - "createdDateTime": "2020-11-04T13:55:11Z", - "expirationDateTime": "2020-11-05T13:55:11Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/70c8c70a-ee1e-4944-bbcd-5ed1237aedd1?$top=1\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9e71f8d80ef6c0f19d12df4640821c87", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a4dd5ad4-0460-4627-b1d5-fa71126c2c85", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:55:13 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": "70c8c70a-ee1e-4944-bbcd-5ed1237aedd1", - "lastUpdateDateTime": "2020-11-04T13:55:11Z", - "createdDateTime": "2020-11-04T13:55:11Z", - "expirationDateTime": "2020-11-05T13:55:11Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/70c8c70a-ee1e-4944-bbcd-5ed1237aedd1?$top=1\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b36aefa4ccd1470681c5338f48c485c4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "811c7f15-b6b3-41b8-8ef3-3e3e1cf977f8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:55: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": "70c8c70a-ee1e-4944-bbcd-5ed1237aedd1", - "lastUpdateDateTime": "2020-11-04T13:55:11Z", - "createdDateTime": "2020-11-04T13:55:11Z", - "expirationDateTime": "2020-11-05T13:55:11Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/70c8c70a-ee1e-4944-bbcd-5ed1237aedd1?$top=1\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "33b4c5160e7da71a10f1311508cf47de", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "68691844-5d3e-4093-98ba-70a9aea50ae6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:55: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": "70c8c70a-ee1e-4944-bbcd-5ed1237aedd1", - "lastUpdateDateTime": "2020-11-04T13:55:15Z", - "createdDateTime": "2020-11-04T13:55:11Z", - "expirationDateTime": "2020-11-05T13:55:11Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/70c8c70a-ee1e-4944-bbcd-5ed1237aedd1?$top=1\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "bb6d491c38630bd6f2291d31db6278d9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5cbd4149-1493-4b2f-940a-71ddddec55f6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 13:55:16 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" - }, - "ResponseBody": { - "jobId": "70c8c70a-ee1e-4944-bbcd-5ed1237aedd1", - "lastUpdateDateTime": "2020-11-04T13:55:15Z", - "createdDateTime": "2020-11-04T13:55:11Z", - "expirationDateTime": "2020-11-05T13:55:11Z", + "jobId": "e19c70c2-7067-40c7-ae38-a3a31568ac49", + "lastUpdateDateTime": "2020-11-04T22:28:14Z", + "createdDateTime": "2020-11-04T22:28:13Z", + "expirationDateTime": "2020-11-05T22:28:13Z", "status": "succeeded", "errors": [], "results": { @@ -434,13 +290,13 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/70c8c70a-ee1e-4944-bbcd-5ed1237aedd1?$skip=1\u0026$top=1" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e19c70c2-7067-40c7-ae38-a3a31568ac49?$skip=1\u0026$top=1" } } ], "Variables": { "RandomSeed": "554796851", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json index e9dc9da87ea30..a125fe568b5e2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a78ad50aef3cc148b848d3820bcb9962-7d071fe5b8b83e4b-00", + "traceparent": "00-c71e50adf442e94f81bdbb6eb9519de9-141264f32f10c340-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d727f8b3ab5caeec2a15d6a3b1743ade", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c0126c89-3fb7-4ad3-a714-186328122022", + "apim-request-id": "7f8d92d3-1b35-466f-9fa0-5fdf2a08d670", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:20 GMT", + "Date": "Wed, 04 Nov 2020 22:28:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "73" }, "ResponseBody": { "documents": [ @@ -147,6 +147,6 @@ "Variables": { "RandomSeed": "1090158568", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json index 0c729afa0fec0..536c2c3a9892d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b1d9ed615538854a99761d5afd9df235-207a19bb9f918a4b-00", + "traceparent": "00-07eea71beb0af44fbb357819b9566ca7-799a9371ea923144-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "476534efbdc7cda5ab406b046713b5b6", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f2a022a9-0e68-4c58-a984-b63c30f4be75", + "apim-request-id": "5930b9b6-825e-49bf-b4b1-a01ede134bc8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:21 GMT", + "Date": "Wed, 04 Nov 2020 22:28:18 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": "40" }, "ResponseBody": { "documents": [ @@ -147,6 +147,6 @@ "Variables": { "RandomSeed": "118147903", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json index 38cbd96f1cfa1..753d819074ade 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-38880f81a636464db3cf4ae6a6fa53eb-16282b3cd800d742-00", + "traceparent": "00-eff1fd0b58e4c645a3dfce6e78ab0386-1f7f613ec695544d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "297e980ed9e8189820ebd45ff129bc5c", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bc023805-2ce9-4dbb-8c3e-bc356b989002", + "apim-request-id": "158d3e62-bd2c-496e-8333-0172d9f79c91", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:20 GMT", + "Date": "Wed, 04 Nov 2020 22:28:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "52" }, "ResponseBody": { "statistics": { @@ -161,6 +161,6 @@ "Variables": { "RandomSeed": "966684010", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json index daa7e78025adf..14ea64386d1f2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3bbdb794990979479613216cc7b6ce38-9350c57c5e178241-00", + "traceparent": "00-e3033d6676efed4ba5cd9f70542c78a2-df1e844e46613447-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "efbfe45b25f6d2a2775e1edd2fe4e7aa", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3a098e6a-94b0-4809-9971-978cf8162640", + "apim-request-id": "9d328cd7-a1af-428c-ae8b-8d9377f5716f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:21 GMT", + "Date": "Wed, 04 Nov 2020 22:28:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "statistics": { @@ -161,6 +161,6 @@ "Variables": { "RandomSeed": "1003575897", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json index c7f5dbca211b3..95f4af01b9479 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1b9200c983fdbe4bbab0733da3f27066-6bc36de615874742-00", + "traceparent": "00-ab6ab61a3ed19a41883994e5afe55d4f-961136de9b011043-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "70aff255bc0a587f23734ec6facb2924", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "14f8dcb7-5731-4d28-8210-5b1688a7bc7e", + "apim-request-id": "8f4b2526-ec3f-4ce5-a439-79ce11b986ad", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:20 GMT", + "Date": "Wed, 04 Nov 2020 22:28:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "documents": [ @@ -147,6 +147,6 @@ "Variables": { "RandomSeed": "1863021454", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json index bba121b37789d..592eab84d5f57 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-efec682816ba84419ba9c542671f12bc-ca166d8a802b2e4d-00", + "traceparent": "00-5f1ddbb6bfdb2945ad248a6cbe2844f8-b0fada14923e6047-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b6c8d0c26960e1039b6b5addff48c5fe", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1ef28a48-de2e-4ba2-83ee-6e2632892433", + "apim-request-id": "523db044-fe92-490b-be1d-23ea92364eb4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:21 GMT", + "Date": "Wed, 04 Nov 2020 22:28:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "documents": [ @@ -147,6 +147,6 @@ "Variables": { "RandomSeed": "1694310088", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json index b2a77ac6aa82e..acd93277e94c3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "229", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ce326fa76fbcca489cd28a192a01a7f3-4858326607870747-00", + "traceparent": "00-bdbe42295883cd4b9321e6e7d5eeba2f-f205d2c3b0472547-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1199dc8afc6a0ac5f0743171c35d6934", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8b8572a1-8d2b-4c4a-8433-5bd12677f094", + "apim-request-id": "702bc1a6-5a74-49eb-8b6f-dc4d4c4e0cfa", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:20 GMT", + "Date": "Wed, 04 Nov 2020 22:28:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "documents": [ @@ -164,6 +164,6 @@ "Variables": { "RandomSeed": "2120326363", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json index fc6f5c57d2287..097eb69a4ccef 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "229", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8c231a4809342f458f3fdafb9d0cd06a-bbab249c2e21114d-00", + "traceparent": "00-10402173aa58bc49b0f03dd2b0dd43c7-bb1c3f02575d7d43-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4f030e46456aaab2ab975c8325cfab86", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d21890d8-575f-415d-8bbd-95a2a7841b9d", + "apim-request-id": "c415d15e-068c-4f02-b7ea-3f9445d5c69b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:21 GMT", + "Date": "Wed, 04 Nov 2020 22:28:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "documents": [ @@ -164,6 +164,6 @@ "Variables": { "RandomSeed": "1773584232", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json index f97f23d342544..d9bdeb7236a6c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "561", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9aaea3b31da42441a6d61e3d794b4c5e-23bfce0927460740-00", + "traceparent": "00-b790ae7bc2ae0b469c16aa2606b75b5d-8c300f00f7ab6042-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "192c3c1f91647770ee90b0e32a189a79", @@ -55,13 +55,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "6ba40248-2481-4e89-9cfc-a03b260d5d63", + "apim-request-id": "b7e38cda-de4f-42ee-843c-38b5400ad896", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:19:20 GMT", + "Date": "Wed, 04 Nov 2020 22:28:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "error": { @@ -78,6 +78,6 @@ "Variables": { "RandomSeed": "907456664", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json index a6988f76901b3..d019110dcaecb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "561", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5b5c23d5246f5b43abd63f09a9ced399-b5eb78eae8e6114b-00", + "traceparent": "00-5839e115f1c6ac4cb49ae8089b09e8b0-4746d9ebdc449245-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "aa01d6b77b2b2d76ec0e72d5ad5d4024", @@ -55,13 +55,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "63bf28a8-0984-40ac-8e87-314445feb4df", + "apim-request-id": "b01d9c6e-e842-460d-b72a-b41bb0cdaa98", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:19:21 GMT", + "Date": "Wed, 04 Nov 2020 22:28:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "error": { @@ -78,6 +78,6 @@ "Variables": { "RandomSeed": "602192603", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json index e8c12e78690ae..b6f0453fa3c0d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-264861adaf387149b0f6f72fccd3610e-ddafd71bef6cb245-00", + "traceparent": "00-1f9fe4ba9033024a92b9993e8e586f84-676621fa9fd2784e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "39e775856c33e5040de74ed9f57d5d06", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "cf8f71ae-3cf8-4865-9f54-e1caa08d29cb", + "apim-request-id": "87e2c99c-b46f-4688-b261-a8995a29fa95", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:19:20 GMT", + "Date": "Wed, 04 Nov 2020 22:28:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "error": { @@ -53,6 +53,6 @@ "Variables": { "RandomSeed": "143174300", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json index 4922fea857d2c..2fe80d424c075 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-143de273d056cb448f09caab87315b99-a9cda52726947345-00", + "traceparent": "00-c53f9787c095eb498427e61a8d0bc5aa-981fc8566f83194c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9f2af246abde141d1e5ee3f98d0120cc", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "2b7a838f-918a-4379-a937-985f1375f8cd", + "apim-request-id": "fd55b13c-1dbe-4b26-8f1c-6ffca4982963", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:19:21 GMT", + "Date": "Wed, 04 Nov 2020 22:28:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { @@ -53,6 +53,6 @@ "Variables": { "RandomSeed": "688120200", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json index ef7f8063c4e76..b33ae1b727be1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-617c37782639ee498c33e5256d96072c-c7bc0f42d8874f44-00", + "traceparent": "00-4c37c44db196a34db7a541edc7e83092-2316bae5abb6c744-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "73d297ac9bb0c1f746fd7bde1da9241c", @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c511124a-302e-4ccd-90a8-c231e64d27d4", + "apim-request-id": "d8f1312a-7779-4f55-8a16-2d1dbd6936e4", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:19:20 GMT", + "Date": "Wed, 04 Nov 2020 22:28:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "documents": [], @@ -60,6 +60,6 @@ "Variables": { "RandomSeed": "857365247", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json index 5ab659bcfe087..2465e8517223d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3addec65a8cbc24d8fb0b89ae841bcbc-4921f8b658b31241-00", + "traceparent": "00-3d806de16a77ce4eac0e81058c206f4c-c8d3626ff0b34c4b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "eb53c4f0f4de762a1a8dd9e931cc3cf8", @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "25bb5b5e-7d78-428e-be1f-bed20250865e", + "apim-request-id": "06b2ff1e-602b-45d9-8177-3b1b3be53cd1", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 02 Nov 2020 19:19:21 GMT", + "Date": "Wed, 04 Nov 2020 22:28:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "documents": [], @@ -60,6 +60,6 @@ "Variables": { "RandomSeed": "1341433425", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json index 9e3775480630c..39fa7efb763d1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-09fbc1a7397f024386af4c227efbc2a2-0f90edebe01c8b4b-00", + "traceparent": "00-fe0c54c59692d443b086e3bfc772015f-1071c9cfbffaed40-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "07178a1f00e9eae492911a1486f7f75f", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "57e4efd6-9981-48d8-bf61-ee4c00bf7808", + "apim-request-id": "7949a9b0-2260-482a-b6a6-60a5e255ef4e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:20 GMT", + "Date": "Wed, 04 Nov 2020 22:28:16 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": "25" }, "ResponseBody": { "statistics": { @@ -161,6 +161,6 @@ "Variables": { "RandomSeed": "775198464", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json index 66fcd945ad250..74d3ce82518b8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-669155f3fa2ed543b361a0fbfd18377a-e64afa6861dd0c41-00", + "traceparent": "00-727128ca27dfd040ba42a2096b1f6217-55fa36fee3bce548-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c81f2c7c8424b466b144609b6251448a", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "405b2c07-e33b-4609-9cec-aa2fe6dd050c", + "apim-request-id": "82d84ced-61d5-48f7-ac10-015c9a8dd7a6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:21 GMT", + "Date": "Wed, 04 Nov 2020 22:28:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "statistics": { @@ -161,6 +161,6 @@ "Variables": { "RandomSeed": "1369620328", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json index 048ead4a249ea..d4f2fa74d1ac0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7a694a764b0fdb48b254c01b697ef6a2-6087e3940bf6d24b-00", + "traceparent": "00-95cbd2474d274143ac9a34c6d5a2073a-e531ff07621bcf4d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5dbd0e4d74f1991eb1c26555a87606e8", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4a78fc1d-6c64-44a2-a0c5-18ae8fe6cffc", + "apim-request-id": "c41f2381-bdc0-4d32-a351-7916cf434bb4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:20 GMT", + "Date": "Wed, 04 Nov 2020 22:28:16 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": "34" }, "ResponseBody": { "documents": [ @@ -104,6 +104,6 @@ "Variables": { "RandomSeed": "862299711", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json index 1b59df8a11677..773138e541cec 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-34ff81720738c647b762ffb27284f0b7-c28aefc5f04d4445-00", + "traceparent": "00-573b3e204847f64dbf79cbc1dd7e3f4b-ffeeaf2807f56344-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "552924120f9751fcf8de062c168ba5ca", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "28f8c1f6-84dc-4224-9d78-6337c4e321b1", + "apim-request-id": "905c2b1f-1d2d-44fa-98ba-9967b47e7ae3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:21 GMT", + "Date": "Wed, 04 Nov 2020 22:28:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "documents": [ @@ -104,6 +104,6 @@ "Variables": { "RandomSeed": "451982382", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json index d58d4ab32c6de..278b1d6cbd03e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ffcb91dfadf68143a28942df009cf65f-e5949a8509c5d046-00", + "traceparent": "00-84df59259eff7b4cb0a19ffb12e01cf2-f7d4a0017a75f241-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "934878dc21c8a0a984e7d2d9ad60c773", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "992eac05-f939-4e19-ad9c-95ef559be6ec", + "apim-request-id": "382316c1-0eaf-4f46-b7c4-55fc57cd0c33", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:21 GMT", + "Date": "Wed, 04 Nov 2020 22:28:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "736" }, "ResponseBody": { "documents": [ @@ -104,6 +104,6 @@ "Variables": { "RandomSeed": "1916186259", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json index 3017266c06c3b..e2e712196798f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9bf5b95a67cc744e95d22242b65479e0-b477512e8378c34e-00", + "traceparent": "00-10ad4b0ea43229418d63fde8503c28b2-987f0587c084894c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "25dfcc445911727a9003f8f77dc4c2e5", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e6ae4d6a-a3d7-4388-bde3-65d6822540e7", + "apim-request-id": "081034b7-7f95-4cb8-984c-d3e54a0d6561", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:21 GMT", + "Date": "Wed, 04 Nov 2020 22:28:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "documents": [ @@ -104,6 +104,6 @@ "Variables": { "RandomSeed": "1422875153", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json index e7b8d36b8f90f..ac9f873ed7ccd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5c99ca22200b3d4a814aeb8422eaa406-9e8a3937a1bcbf4c-00", + "traceparent": "00-00e96aa6d024424285733b28d3cc4f77-325b98411dcde94c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c173c94341dba618c4f393086e026774", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d6fbb1f4-5db8-4499-bffa-1c240243c925", + "apim-request-id": "2ff00581-409d-4eaf-83ed-b6b1154856e0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Tue, 03 Nov 2020 19:58:34 GMT", + "Date": "Wed, 04 Nov 2020 22:28:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "144" + "x-envoy-upstream-service-time": "1557" }, "ResponseBody": { "documents": [ @@ -104,6 +104,6 @@ "Variables": { "RandomSeed": "820182005", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json index 07935f886b1ec..0ef31d43d3d66 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-954282b1ff1b1d4d9020fa3ff0f91af1-9998c0817b54ee40-00", + "traceparent": "00-cba3deac3939214190f149c5b8fc58ad-e21782602633bd49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2cf317139685f87e3e57184c7620cca1", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ad5e0723-c3b9-49ec-800e-4efbb259c802", + "apim-request-id": "1c371dbb-fe68-427f-aa88-d0f96afe45a0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:22 GMT", + "Date": "Wed, 04 Nov 2020 22:28:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "131" + "x-envoy-upstream-service-time": "1864" }, "ResponseBody": { "documents": [ @@ -104,6 +104,6 @@ "Variables": { "RandomSeed": "573069134", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json index 15c6a3a10aa28..0fa043aa5f581 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1d6f0ffe48505c48a11b12d6c887c0c8-1271f954e6ab3946-00", + "traceparent": "00-cc2c79c6311efc43b778d4d3b7ecc335-2f384c85e031e44f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "eecc011d319477b6a3836264a1185b02", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "619f7e1e-9425-437f-bd3e-4f9b6aba372f", + "apim-request-id": "18647117-7aa7-4c39-92d4-847a2fc95657", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:21 GMT", + "Date": "Wed, 04 Nov 2020 22:28:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "133" + "x-envoy-upstream-service-time": "1192" }, "ResponseBody": { "statistics": { @@ -118,6 +118,6 @@ "Variables": { "RandomSeed": "1097726284", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json index fb69b88baec88..f079c5aa91c24 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7c4fc89c32af5b48b35ed6ffbb0c4efa-b1b7743239e75947-00", + "traceparent": "00-e80dd1ba1e6d3c4fba160e74d6cc12c7-5a49441478c50742-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8ceec0e33c8ae486f712d7bec0815450", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cead06ec-ad69-443c-85b0-35677262ed58", + "apim-request-id": "b4a0dbb2-4b31-4f98-80ee-a6b774f6ec7e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:22 GMT", + "Date": "Wed, 04 Nov 2020 22:28:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "126" + "x-envoy-upstream-service-time": "1729" }, "ResponseBody": { "statistics": { @@ -118,6 +118,6 @@ "Variables": { "RandomSeed": "822339012", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json index ef75a220c3d48..208a03336ceb8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8cfbe5aaf58ad64a8c1bc36c8d923979-e690c1ea65f56b42-00", + "traceparent": "00-f42466bc2d6b8d4aaa0f07aa33bc3259-c6af36138e4f8640-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f53bbc38a2b6814e4c65b541758c5e0a", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7dd8f74b-2b29-4f7f-90c3-a66f62f11c63", + "apim-request-id": "ab7ad582-9f72-4b3c-8d5c-244f85ae3a17", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:21 GMT", + "Date": "Wed, 04 Nov 2020 22:28:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "138" + "x-envoy-upstream-service-time": "1663" }, "ResponseBody": { "documents": [ @@ -104,6 +104,6 @@ "Variables": { "RandomSeed": "169579662", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json index c4cdf73e0b3cf..ec4e1b6c9397c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7293d3f3622c3845983257237b805593-3a9e04984517b543-00", + "traceparent": "00-0336428fe1b76d4fbc9732d98e54836f-b9d37b8befffe94d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "79f5f1883ef14a0947e802df013a4e11", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "609b26cb-a8ef-4127-9e8e-2457f9399d14", + "apim-request-id": "185a101d-1b7a-463d-9ea0-c127da496ada", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:22 GMT", + "Date": "Wed, 04 Nov 2020 22:28:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "141" + "x-envoy-upstream-service-time": "912" }, "ResponseBody": { "documents": [ @@ -104,6 +104,6 @@ "Variables": { "RandomSeed": "1167133842", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json index 621c7d709d125..630ab892c7fc0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "331", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f3e0408b80324f4ebad819357dbacdd4-f80e54eddcae1140-00", + "traceparent": "00-0d4101e01b14f440a5fdd4ddcfca8462-b469eba67d660f46-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e382b2e96bf3675f4d7d7960b8b32916", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "96ef5504-3c20-4a19-b4f3-f220abc5e95f", + "apim-request-id": "b03c7140-12ef-4085-b54a-de780c8d665f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Tue, 03 Nov 2020 19:58:40 GMT", + "Date": "Wed, 04 Nov 2020 22:28:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "128" + "x-envoy-upstream-service-time": "784" }, "ResponseBody": { "documents": [ @@ -121,6 +121,6 @@ "Variables": { "RandomSeed": "239145501", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json index e8d319f32d365..4bb7bcbeaaa61 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "331", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-47cb294495da594cb0e807827b30a6b4-56cefc34269fa347-00", + "traceparent": "00-a2786bf5b71a4f4997565041c3479484-c9ffe9e34495b545-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201103.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e218864f9605e01c86941869a0be6841", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c11368cd-e6b0-49b2-9e17-e7c9c91fb243", + "apim-request-id": "333a6c0f-d08b-4378-88db-2abf579047af", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Tue, 03 Nov 2020 19:58:40 GMT", + "Date": "Wed, 04 Nov 2020 22:28:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "136" + "x-envoy-upstream-service-time": "2217" }, "ResponseBody": { "documents": [ @@ -121,6 +121,6 @@ "Variables": { "RandomSeed": "1607409987", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json index e78bbe1560547..03b99d7e05bd3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ddcc3e91466e07479062ba6d14f112d3-a09df18755e86047-00", + "traceparent": "00-2c98a1ceb1833f429ee7eccabfabf47b-aa64132fbfadb04e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9d7c7445e676a32cbc4854ae746d53b1", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "578d8c10-cd1d-45be-a17e-cb22b7c287bb", + "apim-request-id": "1dac8220-82ca-4df7-a56b-f03e18f895dd", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:22 GMT", + "Date": "Wed, 04 Nov 2020 22:28:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "147" + "x-envoy-upstream-service-time": "555" }, "ResponseBody": { "statistics": { @@ -118,6 +118,6 @@ "Variables": { "RandomSeed": "448790314", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json index c62c5095d4ee0..93c7ef41c5af4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-876d4eaa8c77024fbbc2a7439cddc67a-7d013d8f21a33e45-00", + "traceparent": "00-fd1d6f77d89b2348b8c5107f31e1dec8-88e547ee3f75ea4d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6372c6fc37bbef8068bba6a5d3c4483a", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "95fc9b3f-f29a-4427-962d-cf3c853cba7b", + "apim-request-id": "c6d2ead5-6600-4462-b098-be1751183860", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Mon, 02 Nov 2020 19:19:23 GMT", + "Date": "Wed, 04 Nov 2020 22:28:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "126" + "x-envoy-upstream-service-time": "1137" }, "ResponseBody": { "statistics": { @@ -118,6 +118,6 @@ "Variables": { "RandomSeed": "747198553", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json index b1198f78c18c6..2b91a2225a3b6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-98ac69e92a6af748b573a871adee8c59-3e4cfb3b598ab44a-00", + "traceparent": "00-3c51949e310b1f4995edb486cc419516-e217cdeabd87d44e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "40f3d388777c07f3a5efa0af174b7c81", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "81ff0113-de20-4eba-b8f6-57056cbe1db4", + "apim-request-id": "9ddbb6d0-26b0-41ed-aac1-26e288fabc95", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:22 GMT", + "Date": "Wed, 04 Nov 2020 22:28:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "106" + "x-envoy-upstream-service-time": "1373" }, "ResponseBody": { "documents": [ @@ -71,6 +71,6 @@ "Variables": { "RandomSeed": "1989383672", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json index db3aea1116437..daf8d6365dcae 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-26dea1841ac9c347b4067bbb1c064844-ac4fa97edee66d4c-00", + "traceparent": "00-95b17da3bc013a4d829ba6f0a609a005-7cddaa3bd0ef0b48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b40e3ff9f3697ab649fbbfa57575c10c", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "450503a2-5822-4b50-a68b-4527d324c033", + "apim-request-id": "44971277-2cee-4eb4-baa0-e32086fba78c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:23 GMT", + "Date": "Wed, 04 Nov 2020 22:28:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "100" + "x-envoy-upstream-service-time": "359" }, "ResponseBody": { "documents": [ @@ -71,6 +71,6 @@ "Variables": { "RandomSeed": "1876268396", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json index 54c6c2e4dea2d..6bcce654ba353 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "107", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7d95e7e673143e4ba903f198f693c495-d534b6687e888c48-00", + "traceparent": "00-b65e8e0596945a479e7368964b5f9283-e3818b5aa639164a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5757e3544f245670b8a4c82d4b10bc4c", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2eb72309-73e4-4de2-b848-8c3caae81d49", + "apim-request-id": "362bc8fc-7e76-430c-b7f8-166beecc4b82", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:22 GMT", + "Date": "Wed, 04 Nov 2020 22:28:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "92" + "x-envoy-upstream-service-time": "877" }, "ResponseBody": { "documents": [ @@ -64,6 +64,6 @@ "Variables": { "RandomSeed": "114454170", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json index ca85f252e9de1..91ecddb34bd5c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "107", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e8ed08c42de9014a952a773ffb3c3c2a-1d6fc7ea2bc51f47-00", + "traceparent": "00-c18722f0336a8642b2f0d545aa04d869-433b34e3ef89ff43-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4a37fade57ea6b5a5ff8ab22891b6b20", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "424e5837-8d3d-4937-b56a-3cac484d3315", + "apim-request-id": "14cfd063-9732-4c01-b6fd-28d30f3abf6b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:23 GMT", + "Date": "Wed, 04 Nov 2020 22:28:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-envoy-upstream-service-time": "420" }, "ResponseBody": { "documents": [ @@ -64,6 +64,6 @@ "Variables": { "RandomSeed": "820241717", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json index 3399392b4d66d..6fbab9b91a725 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-105141f86ca79942a7358ddfa5109acb-a8a556c8b29f8e4b-00", + "traceparent": "00-eaeeb8943d672a459ab6b547131479f3-5dd12f61dd913947-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2a5fd4f3bf3db4629b14e3f9050dd01c", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "503eeae6-60ca-4738-bf18-76ab99f5b49a", + "apim-request-id": "3f998d8f-2722-4390-b220-0b2ddf1e7f5c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:22 GMT", + "Date": "Wed, 04 Nov 2020 22:28:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "115" + "x-envoy-upstream-service-time": "471" }, "ResponseBody": { "documents": [ @@ -71,6 +71,6 @@ "Variables": { "RandomSeed": "2103634278", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json index ab2e4d864311a..f38221ef2ef93 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-48a6d158439cf347aba9ac8d73ca4bfe-65412a1e3d075c4c-00", + "traceparent": "00-cec2ed73d814714fadf1d91fc530c299-21f98027e09b974c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "df1d0a85dc552d663ac944ac69a80a0d", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b81e0c74-b87c-431d-af93-29da64c12edf", + "apim-request-id": "e71687a0-4413-4b75-837c-a0bc16b98a57", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:23 GMT", + "Date": "Wed, 04 Nov 2020 22:28:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "101" + "x-envoy-upstream-service-time": "995" }, "ResponseBody": { "documents": [ @@ -71,6 +71,6 @@ "Variables": { "RandomSeed": "1408135123", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json index 448f8a559eeba..968fe092cb2f3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?model-version=2020-02-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?model-version=2020-02-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1764b947a64f6f43a9a9a75476a2435f-0de9b12d51f0704f-00", + "traceparent": "00-d322e0565d6a564487e90d04484ad006-405b6826b7ffc44f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2bbb7414e3ce80e03f8df0adf3eb7d0c", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ba07d89a-d97b-4588-82bf-7adca1dc73fe", + "apim-request-id": "bfd32fc1-b8b8-4eb0-a4e5-5684921b89a5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:23 GMT", + "Date": "Wed, 04 Nov 2020 22:28:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "58" + "x-envoy-upstream-service-time": "334" }, "ResponseBody": { "documents": [ @@ -78,6 +78,6 @@ "Variables": { "RandomSeed": "1654409937", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json index 0fbed8aeee5fe..1158b7bc78ba4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?model-version=2020-02-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?model-version=2020-02-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0b06ce92b5ded54fafcc68c06056a647-4ce80955a375ee4e-00", + "traceparent": "00-1cf696161a9dfe40b0e18405c7ec7ba4-fd1defc97bcf2a48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6470d4cf3910c27ceead9bc2cf6c8aa0", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "97eb8de0-867c-47a9-a1a2-d1b2873e6de7", + "apim-request-id": "a04420aa-dabd-4421-b29a-a6232817cf2a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:23 GMT", + "Date": "Wed, 04 Nov 2020 22:28:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "58" + "x-envoy-upstream-service-time": "1184" }, "ResponseBody": { "documents": [ @@ -78,6 +78,6 @@ "Variables": { "RandomSeed": "62086103", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json index 5bcd79de23a7d..f4081dcccc9e2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6a2257ae6f21a74b91492cdf22fa360f-0d66df0d70e8164d-00", + "traceparent": "00-4475cef298275845b44f3dfe1787d503-24dbd057c6c55a44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "31841aab9edddcddb56c91e8fafcead5", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bbdf4b88-33ee-4027-8fcb-c072b921b639", + "apim-request-id": "11ae83ff-9eaf-438c-8c48-6d74630794b4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:23 GMT", + "Date": "Wed, 04 Nov 2020 22:28:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "documents": [ @@ -56,7 +56,7 @@ } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -66,9 +66,9 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f09176826643f542ae75cc3eef0b6d2e-e3fe25005e3f234b-00", + "traceparent": "00-2a60c4668c64754abf40f284fb8813d9-efdf0de8717c624e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "13daa31269993bffe7f19e3dc94f204e", @@ -85,18 +85,13 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "2dfa8cb3-fd9a-4ce7-97c5-b024d1790b1a", - "Content-Length": "225", - "Content-Type": "application/json", - "Date": "Mon, 02 Nov 2020 19:19:23 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "WWW-Authenticate": "AzureApiManagementKey realm=\u0022https://cognitiveusw2dev.azure-api.net/text/analytics\u0022,name=\u0022Ocp-Apim-Subscription-Key\u0022,type=\u0022header\u0022", - "X-Content-Type-Options": "nosniff" + "Content-Length": "224", + "Date": "Wed, 04 Nov 2020 22:28:41 GMT" }, - "ResponseBody": "{\u0022error\u0022:{\u0022code\u0022:\u0022401\u0022,\u0022message\u0022: \u0022Access denied due to invalid subscription key or wrong API endpoint. Make sure to provide a valid key for an active subscription and use a correct regional API endpoint for your resource.\u0022}}" + "ResponseBody": "eyJlcnJvciI6eyJjb2RlIjoiNDAxIiwibWVzc2FnZSI6IkFjY2VzcyBkZW5pZWQgZHVlIHRvIGludmFsaWQgc3Vic2NyaXB0aW9uIGtleSBvciB3cm9uZyBBUEkgZW5kcG9pbnQuIE1ha2Ugc3VyZSB0byBwcm92aWRlIGEgdmFsaWQga2V5IGZvciBhbiBhY3RpdmUgc3Vic2NyaXB0aW9uIGFuZCB1c2UgYSBjb3JyZWN0IHJlZ2lvbmFsIEFQSSBlbmRwb2ludCBmb3IgeW91ciByZXNvdXJjZS4ifX0=" }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -106,9 +101,9 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1ac7b18bba8fcd4ca8ede792281b0a81-a228f7b5bdd41341-00", + "traceparent": "00-e7d7f3b6d6405d4b8403931e0044c636-de835d1686c7ad45-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d85ee288a420af625bce0d2748754fc8", @@ -125,14 +120,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "861fdcc6-9099-41b4-8fc7-768d432c15d9", + "apim-request-id": "cab14e4a-efff-4f75-9137-1bbbc1e60c57", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:23 GMT", + "Date": "Wed, 04 Nov 2020 22:28:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "documents": [ @@ -154,6 +149,6 @@ "Variables": { "RandomSeed": "1557994243", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json index 18d71495bf5c0..98e12fc9ac4a6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-818acfbd68c9ad4db2913599f2973943-ca2c375357ea4540-00", + "traceparent": "00-62524459e894fc4a8c918bc568ac777a-e2f8d7ace9dae547-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fb9f47ae04f9d825012386a2a51b9727", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7ad44339-b819-42b0-bce7-2d8f1f0c2a41", + "apim-request-id": "7b840bb5-5b34-47e2-9b9d-963a9c7ff83d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:23 GMT", + "Date": "Wed, 04 Nov 2020 22:28:45 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": "22" }, "ResponseBody": { "documents": [ @@ -56,7 +56,7 @@ } }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -66,9 +66,9 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1d4bcda58587654b87eb710042130a63-4da4ed4dc071ed4a-00", + "traceparent": "00-f11bf8864d6b3744b049d16f3ce49f31-3f7d5703975a3941-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5aa0f7e4723c7c582e8ca602e03d8c8c", @@ -85,18 +85,13 @@ }, "StatusCode": 401, "ResponseHeaders": { - "apim-request-id": "908d7032-8272-4a36-9415-1316798c5991", - "Content-Length": "225", - "Content-Type": "application/json", - "Date": "Mon, 02 Nov 2020 19:19:23 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "WWW-Authenticate": "AzureApiManagementKey realm=\u0022https://cognitiveusw2dev.azure-api.net/text/analytics\u0022,name=\u0022Ocp-Apim-Subscription-Key\u0022,type=\u0022header\u0022", - "X-Content-Type-Options": "nosniff" + "Content-Length": "224", + "Date": "Wed, 04 Nov 2020 22:28:45 GMT" }, - "ResponseBody": "{\u0022error\u0022:{\u0022code\u0022:\u0022401\u0022,\u0022message\u0022: \u0022Access denied due to invalid subscription key or wrong API endpoint. Make sure to provide a valid key for an active subscription and use a correct regional API endpoint for your resource.\u0022}}" + "ResponseBody": "eyJlcnJvciI6eyJjb2RlIjoiNDAxIiwibWVzc2FnZSI6IkFjY2VzcyBkZW5pZWQgZHVlIHRvIGludmFsaWQgc3Vic2NyaXB0aW9uIGtleSBvciB3cm9uZyBBUEkgZW5kcG9pbnQuIE1ha2Ugc3VyZSB0byBwcm92aWRlIGEgdmFsaWQga2V5IGZvciBhbiBhY3RpdmUgc3Vic2NyaXB0aW9uIGFuZCB1c2UgYSBjb3JyZWN0IHJlZ2lvbmFsIEFQSSBlbmRwb2ludCBmb3IgeW91ciByZXNvdXJjZS4ifX0=" }, { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/languages", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -106,9 +101,9 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e22fdeb2f093c947835c5ca3fec0cf5a-60a0b6b289a4294e-00", + "traceparent": "00-2275d8a1fcd50647bdefdd0fa03a241a-45fd348c8cdaf747-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1a26406b44799ec461ce0951aebc7b46", @@ -125,14 +120,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a9fc6516-cd48-40bb-bfb3-bf7e45beeb5b", + "apim-request-id": "eddc5c95-a539-4019-ad56-7e85b8c812be", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:24 GMT", + "Date": "Wed, 04 Nov 2020 22:28:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "documents": [ @@ -154,6 +149,6 @@ "Variables": { "RandomSeed": "1997725308", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json index c3dfb60d75017..6e292f164004c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4ed4e474903ff940823d5b02dc117396-20e5d1ed8925a84c-00", + "traceparent": "00-f64636315287b843a6c73a41903a7488-45170cc395dcfa4b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "af25edec94c2cbbfd63455e84047f9b5", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cfe7015a-110c-4ac3-b2b5-220246b3256a", + "apim-request-id": "0c1eae55-6abe-432f-aa94-ed0f858fef52", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:23 GMT", + "Date": "Wed, 04 Nov 2020 22:28:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "71" + "x-envoy-upstream-service-time": "208" }, "ResponseBody": { "documents": [ @@ -63,6 +63,6 @@ "Variables": { "RandomSeed": "514682034", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json index 95a60820117e2..15cb00c6c8ed2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4b491cefbf90b14f908070f01de34dd8-60d2e8103f26b34b-00", + "traceparent": "00-305e35dad1fadb4ebf48a91d2127ef71-61f3dc881adf634f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "66b8ef6aed4353af1a0a6380bef4513f", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "075f1052-e971-4fd9-aa04-4c5c75bbbcd6", + "apim-request-id": "c1e506c3-b970-4332-802d-91c1be3c3f30", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:24 GMT", + "Date": "Wed, 04 Nov 2020 22:28:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "75" + "x-envoy-upstream-service-time": "76" }, "ResponseBody": { "documents": [ @@ -63,6 +63,6 @@ "Variables": { "RandomSeed": "1998010767", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json index 471ee19ac8258..5b4f9e108148e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "70", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-064c2989b370a84d80de594d5f67b3fe-a193db7d482eb24a-00", + "traceparent": "00-7eefbdd490d78640811070bccc913f1b-6d4f983816374f48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9c096f0bd3a36f626316eda5be1e28c8", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "679ee9a6-672d-46b3-b18b-08f03a240c58", + "apim-request-id": "7e64e46b-472e-4e9f-9b0e-6ac634a7d42f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:23 GMT", + "Date": "Wed, 04 Nov 2020 22:28:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" + "x-envoy-upstream-service-time": "180" }, "ResponseBody": { "documents": [ @@ -63,6 +63,6 @@ "Variables": { "RandomSeed": "665053590", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json index 5a67b2048daec..79692da3f2cb8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "70", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-61952aecea21fe42a40c630408a21115-7463614330e79a4d-00", + "traceparent": "00-d1e93576f5cd424d83aa77ac61ac10ef-d030dbe86c145c4d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a71f02631f3c7a05f4cb179d2fb85aac", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0d444fb1-8653-4406-bbc9-86fbc5b83150", + "apim-request-id": "f526a8fa-4895-4ec9-98db-35b92f051827", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:24 GMT", + "Date": "Wed, 04 Nov 2020 22:28:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-envoy-upstream-service-time": "65" }, "ResponseBody": { "documents": [ @@ -63,6 +63,6 @@ "Variables": { "RandomSeed": "1077947182", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json index 112932bef8e9a..52013b3766806 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e2e4d1064aa9664a96323734ead20215-b20b9bb53e3b9b44-00", + "traceparent": "00-31d17af4710f284c8dd742e1be6f7041-02494de9b1573844-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a12918df519b0dc53f87435017a62e99", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c1fab6e4-6452-4a87-ad4d-c14e38cf20ac", + "apim-request-id": "dda0bd41-7b69-4af1-8d68-d047323a3d69", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:23 GMT", + "Date": "Wed, 04 Nov 2020 22:28:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "75" + "x-envoy-upstream-service-time": "842" }, "ResponseBody": { "documents": [ @@ -63,6 +63,6 @@ "Variables": { "RandomSeed": "1277894095", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json index 97e5c32bfd59e..cf0869201e954 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { "Accept": [ @@ -11,9 +11,9 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6224b8ebf0f05945a2edebc423bdc669-5a83498802d34646-00", + "traceparent": "00-8aa7ca34c3a04e41a6ef8b2a8fbee5c7-ce70d62e77ebcf45-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201102.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "05b9b9c88ccd2f82a72e96b9014b88fb", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b71b82b4-233f-482f-b444-f25f86c47f9c", + "apim-request-id": "b1d3098f-c478-4534-9b3b-34c93197a9b9", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Mon, 02 Nov 2020 19:19:24 GMT", + "Date": "Wed, 04 Nov 2020 22:28:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-envoy-upstream-service-time": "1940" }, "ResponseBody": { "documents": [ @@ -63,6 +63,6 @@ "Variables": { "RandomSeed": "1551033461", "TEXT_ANALYTICS_API_KEY": "Sanitized", - "TEXT_ANALYTICS_ENDPOINT": "https://cognitiveusw2dev.azure-api.net" + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" } } \ No newline at end of file From dbe7b97dcc92a31863cd23ad04bc84da9a7f2275 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Wed, 4 Nov 2020 16:51:07 -0800 Subject: [PATCH 33/58] update readme --- .../Azure.AI.TextAnalytics/README.md | 44 ++++++++ .../Sample_RecognizeHealthcareEntities.md | 104 ++++++++++++++++++ ...ShowStats.cs => Sample_HealthcareBatch.cs} | 14 ++- ...tats.cs => Sample_HealthcareBatchAsync.cs} | 4 +- 4 files changed, 161 insertions(+), 5 deletions(-) create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/samples/Sample_RecognizeHealthcareEntities.md rename sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/{Sample_Healthcare_ShowStats.cs => Sample_HealthcareBatch.cs} (68%) rename sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/{Sample_HealthcareAsync_ShowStats.cs => Sample_HealthcareBatchAsync.cs} (97%) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/README.md b/sdk/textanalytics/Azure.AI.TextAnalytics/README.md index 2f803cdd67c2c..ed273f1ec30fd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/README.md +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/README.md @@ -6,6 +6,7 @@ Azure Cognitive Services Text Analytics is a cloud service that provides advance * Named Entity Recognition * Personally Identifiable Information (PII) Recognition * Linked Entity Recognition +* Healthcare Recognition [Source code][textanalytics_client_src] | [Package (NuGet)][textanalytics_nuget_package] | [API reference documentation][textanalytics_refdocs] | [Product documentation][textanalytics_docs] | [Samples][textanalytics_samples] @@ -131,6 +132,7 @@ The following section provides several code snippets using the `client` [created ### Async examples * [Detect Language Asynchronously](#detect-language-asynchronously) * [Recognize Entities Asyncronously](#recognize-entities-asynchronously) +* [Recognize Healthcare Entities Asyncronously](#recognize-entities-asynchronously) ### Detect Language Run a Text Analytics predictive model to determine the language that the passed-in document or batch of documents are written in. @@ -279,6 +281,45 @@ foreach (CategorizedEntity entity in entities) } ``` +### Recognize Healthcare Entities Asynchronously +Text Analytics for health is a containerized service that extracts and labels relevant medical information from unstructured texts such as doctor's notes, discharge summaries, clinical documents, and electronic health records. For more information see [How to: Use Text Analytics for health][healthcare]. + +```C# Snippet:RecognizeHealthcareEntitiesAsync +string document = "Subject is taking 100mg of ibuprofen twice daily."; + +HealthcareOperation healthOperation = await client.StartHealthcareAsync(document); + +await healthOperation.WaitForCompletionAsync(); + +RecognizeHealthcareEntitiesResultCollection results = healthOperation.Value; + +Console.WriteLine($"Results of Azure Text Analytics \"Healthcare Async\" Model, version: \"{results.ModelVersion}\""); +Console.WriteLine(""); + +foreach (DocumentHealthcareResult result in results) +{ + Console.WriteLine($" Recognized the following {result.Entities.Count} healthcare entities:"); + + foreach (HealthcareEntity entity in result.Entities) + { + Console.WriteLine($" Entity: {entity.Text}"); + Console.WriteLine($" Subcategory: {entity.Subcategory}"); + Console.WriteLine($" Offset: {entity.Offset}"); + Console.WriteLine($" Length: {entity.Length}"); + Console.WriteLine($" IsNegated: {entity.IsNegated}"); + Console.WriteLine($" Links:"); + + foreach (HealthcareEntityLink healthcareEntityLink in entity.Links) + { + Console.WriteLine($" ID: {healthcareEntityLink.Id}"); + Console.WriteLine($" DataSource: {healthcareEntityLink.DataSource}"); + } + } + Console.WriteLine(""); +} +``` +For samples on using the production recommended options `DocumentHealthcareResult` see [here][recognize_healthcare_sample]. + ## Troubleshooting ### General @@ -340,6 +381,7 @@ Samples are provided for each main functional area, and for each area, samples a - [Recognize Entities][recognize_entities_sample] - [Recognize PII Entities][recognize_pii_entities_sample] - [Recognize Linked Entities][recognize_linked_entities_sample] +- [Recognize Healthcare Entities][recognize_healthcare_sample] ### Advanced samples - [Analyze Sentiment with Opinion Mining][analyze_sentiment_opinion_mining_sample] @@ -367,6 +409,8 @@ This project has adopted the [Microsoft Open Source Code of Conduct][code_of_con [cognitive_resource_portal]: https://docs.microsoft.com/azure/cognitive-services/cognitive-services-apis-create-account [cognitive_resource_cli]: https://docs.microsoft.com/azure/cognitive-services/cognitive-services-apis-create-account-cli +[recognize_healthcare_sample]: https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/textanalytics/Azure.AI.TextAnalytics/samples/Sample_RecognizeHealthcareEntities.md +[healthcare]: https://docs.microsoft.com/en-us/azure/cognitive-services/text-analytics/how-tos/text-analytics-for-health?tabs=ner [language_detection]: https://docs.microsoft.com/azure/cognitive-services/Text-Analytics/how-tos/text-analytics-how-to-language-detection [sentiment_analysis]: https://docs.microsoft.com/azure/cognitive-services/Text-Analytics/how-tos/text-analytics-how-to-sentiment-analysis [key_phrase_extraction]: https://docs.microsoft.com/azure/cognitive-services/Text-Analytics/how-tos/text-analytics-how-to-keyword-extraction diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/samples/Sample_RecognizeHealthcareEntities.md b/sdk/textanalytics/Azure.AI.TextAnalytics/samples/Sample_RecognizeHealthcareEntities.md new file mode 100644 index 0000000000000..027e92e680867 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/samples/Sample_RecognizeHealthcareEntities.md @@ -0,0 +1,104 @@ +# Recognizing Healthcare Entities from Documents +This sample demonstrates how to recognize healthcare entities in one or more documents and get them asynchronously. To get started you will need a Text Analytics endpoint and credentials. See [README][README] for links and instructions. + +## Creating a `TextAnalyticsClient` + +To create a new `TextAnalyticsClient` to recognize healthcare entities in a document, you need a Text Analytics endpoint and credentials. You can use the [DefaultAzureCredential][DefaultAzureCredential] to try a number of common authentication methods optimized for both running as a service and development. In the sample below, however, you'll use a Text Analytics API key credential by creating an `AzureKeyCredential` object, that if needed, will allow you to update the API key without creating a new client. + +You can set `endpoint` and `apiKey` based on an environment variable, a configuration setting, or any way that works for your application. + +```C# Snippet:TextAnalyticsSample4CreateClient +var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); +``` + +## Recognizing healthcare entities in a single document asynchronously + +To recognize healthcare entities in a document, use the `StarthealthcareAsyc` method. The returned type is a Long Running operation of type `HealthcareOperation` which polls for the results from the API. + +```C# Snippet:RecognizeHealthcareEntities +string document = "Subject is taking 100mg of ibuprofen twice daily."; + +HealthcareOperation healthOperation = await client.StartHealthcareAsync(document); + +await healthOperation.WaitForCompletionAsync(); + +RecognizeHealthcareEntitiesResultCollection results = healthOperation.Value; + +Console.WriteLine($"Results of Azure Text Analytics \"Healthcare Async\" Model, version: \"{results.ModelVersion}\""); +Console.WriteLine(""); + +foreach (DocumentHealthcareResult result in results) +{ + Console.WriteLine($" Recognized the following {result.Entities.Count} healthcare entities:"); + + foreach (HealthcareEntity entity in result.Entities) + { + Console.WriteLine($" Entity: {entity.Text}"); + Console.WriteLine($" Subcategory: {entity.Subcategory}"); + Console.WriteLine($" Offset: {entity.Offset}"); + Console.WriteLine($" Length: {entity.Length}"); + Console.WriteLine($" IsNegated: {entity.IsNegated}"); + Console.WriteLine($" Links:"); + + foreach (HealthcareEntityLink healthcareEntityLink in entity.Links) + { + Console.WriteLine($" ID: {healthcareEntityLink.Id}"); + Console.WriteLine($" DataSource: {healthcareEntityLink.DataSource}"); + } + } + Console.WriteLine(""); +} +} +``` + +## Recognizing healthcare entities in multiple documents + +To recognize healthcare entities in multiple documents, call `StartHealthcareBatchAsync` on an `IEnumerable` of strings. The result is a Long Running operation of type `HealthcareOperation` which polls for the results from the API. + +```C# Snippet:TextAnalyticsSampleRecognizeHealthcare +string document = "Subject is taking 100mg of ibuprofen twice daily."; + +HealthcareOperation healthOperation = await client.StartHealthcareAsync(document); + +await healthOperation.WaitForCompletionAsync(); + +RecognizeHealthcareEntitiesResultCollection results = healthOperation.Value; +``` + +To recognize healthcare entities in a collection of documents in different languages, call `RecognizeHealthcare EntitiesBatch` on an `IEnumerable` of `TextDocumentInput` objects, setting the `Language` on each document. + +```C# Snippet:TextAnalyticsSampleRecognizeHealthcare +var documents = new List +{ + new TextDocumentInput("1", "Subject is taking 100mg of ibuprofen twice daily.") + { + Language = "en", + }, + new TextDocumentInput("2", "Can cause rapid or irregular heartbeat.") + { + Language = "en", + }, + new TextDocumentInput("3", "The patient is a 54-year-old gentleman with a history of progressive angina over the past several months") + { + Language = "en", + } +}; + +HealthcareOperation healthOperation = await client.StartHealthcareAsync(document); + +await healthOperation.WaitForCompletionAsync(); + +RecognizeHealthcareEntitiesResultCollection results = healthOperation.Value; +``` + +To see the full example source files, see: + +* [Synchronously RecognizeHealthcare ](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs) +* [Asynchronously RecognizeHealthcare ](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs) +* [Synchronously RecognizeHealthcareBatch](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareBatch.cs) +* [Asynchronously RecognizeHealthcareBatch](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareBatchAsync.cs) +* [Synchronously RecognizeHealthcare Cancellation](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs) +* [Asynchronously RecognizeHealthcare Cancellation](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Cancellation.cs) + +[DefaultAzureCredential]: https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/identity/Azure.Identity/README.md +[README]: https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/textanalytics/Azure.AI.TextAnalytics/README.md \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareBatch.cs similarity index 68% rename from sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs rename to sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareBatch.cs index ca35605417494..e722c07d1f091 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareBatch.cs @@ -15,15 +15,23 @@ namespace Azure.AI.TextAnalytics.Samples public partial class TextAnalyticsSamples: SamplesBase { [Test] - public async Task HealthcareShowStats() + public async Task HealthcareBatch() { string endpoint = TestEnvironment.Endpoint; string apiKey = TestEnvironment.ApiKey; var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); - #region Snippet:TextAnalyticsSampleHealthcareShowStats - string document = "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; + #region Snippet:TextAnalyticsSampleHealthcareBatch + string document = @"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | \ + Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. \ + HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. \ + The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease ,\ + with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and \ + another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , \ + which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with \ + minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's \ + increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; List batchInput = new List() { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareBatchAsync.cs similarity index 97% rename from sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs rename to sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareBatchAsync.cs index cde7a027cdc17..8a8dd1eae9fd0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareBatchAsync.cs @@ -16,14 +16,14 @@ namespace Azure.AI.TextAnalytics.Samples public partial class TextAnalyticsSamples: SamplesBase { [Test] - public async Task HealthcareAsyncShowStats() + public async Task HealthcareBatchAsync() { string endpoint = TestEnvironment.Endpoint; string apiKey = TestEnvironment.ApiKey; var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); - #region Snippet:TextAnalyticsSampleHealthcareAsyncShowStats + #region Snippet:TextAnalyticsSampleHealthcareBatchAsync string document = @"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | \ Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. \ HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. \ From 3da217c4e51989750fff6efd8ca44940bf58ad63 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Thu, 5 Nov 2020 10:14:05 -0800 Subject: [PATCH 34/58] Revert "update readme" This reverts commit dbe7b97dcc92a31863cd23ad04bc84da9a7f2275. --- .../Azure.AI.TextAnalytics/README.md | 44 -------- .../Sample_RecognizeHealthcareEntities.md | 104 ------------------ ...cs => Sample_HealthcareAsync_ShowStats.cs} | 4 +- ...atch.cs => Sample_Healthcare_ShowStats.cs} | 14 +-- 4 files changed, 5 insertions(+), 161 deletions(-) delete mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/samples/Sample_RecognizeHealthcareEntities.md rename sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/{Sample_HealthcareBatchAsync.cs => Sample_HealthcareAsync_ShowStats.cs} (97%) rename sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/{Sample_HealthcareBatch.cs => Sample_Healthcare_ShowStats.cs} (68%) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/README.md b/sdk/textanalytics/Azure.AI.TextAnalytics/README.md index ed273f1ec30fd..2f803cdd67c2c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/README.md +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/README.md @@ -6,7 +6,6 @@ Azure Cognitive Services Text Analytics is a cloud service that provides advance * Named Entity Recognition * Personally Identifiable Information (PII) Recognition * Linked Entity Recognition -* Healthcare Recognition [Source code][textanalytics_client_src] | [Package (NuGet)][textanalytics_nuget_package] | [API reference documentation][textanalytics_refdocs] | [Product documentation][textanalytics_docs] | [Samples][textanalytics_samples] @@ -132,7 +131,6 @@ The following section provides several code snippets using the `client` [created ### Async examples * [Detect Language Asynchronously](#detect-language-asynchronously) * [Recognize Entities Asyncronously](#recognize-entities-asynchronously) -* [Recognize Healthcare Entities Asyncronously](#recognize-entities-asynchronously) ### Detect Language Run a Text Analytics predictive model to determine the language that the passed-in document or batch of documents are written in. @@ -281,45 +279,6 @@ foreach (CategorizedEntity entity in entities) } ``` -### Recognize Healthcare Entities Asynchronously -Text Analytics for health is a containerized service that extracts and labels relevant medical information from unstructured texts such as doctor's notes, discharge summaries, clinical documents, and electronic health records. For more information see [How to: Use Text Analytics for health][healthcare]. - -```C# Snippet:RecognizeHealthcareEntitiesAsync -string document = "Subject is taking 100mg of ibuprofen twice daily."; - -HealthcareOperation healthOperation = await client.StartHealthcareAsync(document); - -await healthOperation.WaitForCompletionAsync(); - -RecognizeHealthcareEntitiesResultCollection results = healthOperation.Value; - -Console.WriteLine($"Results of Azure Text Analytics \"Healthcare Async\" Model, version: \"{results.ModelVersion}\""); -Console.WriteLine(""); - -foreach (DocumentHealthcareResult result in results) -{ - Console.WriteLine($" Recognized the following {result.Entities.Count} healthcare entities:"); - - foreach (HealthcareEntity entity in result.Entities) - { - Console.WriteLine($" Entity: {entity.Text}"); - Console.WriteLine($" Subcategory: {entity.Subcategory}"); - Console.WriteLine($" Offset: {entity.Offset}"); - Console.WriteLine($" Length: {entity.Length}"); - Console.WriteLine($" IsNegated: {entity.IsNegated}"); - Console.WriteLine($" Links:"); - - foreach (HealthcareEntityLink healthcareEntityLink in entity.Links) - { - Console.WriteLine($" ID: {healthcareEntityLink.Id}"); - Console.WriteLine($" DataSource: {healthcareEntityLink.DataSource}"); - } - } - Console.WriteLine(""); -} -``` -For samples on using the production recommended options `DocumentHealthcareResult` see [here][recognize_healthcare_sample]. - ## Troubleshooting ### General @@ -381,7 +340,6 @@ Samples are provided for each main functional area, and for each area, samples a - [Recognize Entities][recognize_entities_sample] - [Recognize PII Entities][recognize_pii_entities_sample] - [Recognize Linked Entities][recognize_linked_entities_sample] -- [Recognize Healthcare Entities][recognize_healthcare_sample] ### Advanced samples - [Analyze Sentiment with Opinion Mining][analyze_sentiment_opinion_mining_sample] @@ -409,8 +367,6 @@ This project has adopted the [Microsoft Open Source Code of Conduct][code_of_con [cognitive_resource_portal]: https://docs.microsoft.com/azure/cognitive-services/cognitive-services-apis-create-account [cognitive_resource_cli]: https://docs.microsoft.com/azure/cognitive-services/cognitive-services-apis-create-account-cli -[recognize_healthcare_sample]: https://github.com/Azure/azure-sdk-for-net/tree/master/sdk/textanalytics/Azure.AI.TextAnalytics/samples/Sample_RecognizeHealthcareEntities.md -[healthcare]: https://docs.microsoft.com/en-us/azure/cognitive-services/text-analytics/how-tos/text-analytics-for-health?tabs=ner [language_detection]: https://docs.microsoft.com/azure/cognitive-services/Text-Analytics/how-tos/text-analytics-how-to-language-detection [sentiment_analysis]: https://docs.microsoft.com/azure/cognitive-services/Text-Analytics/how-tos/text-analytics-how-to-sentiment-analysis [key_phrase_extraction]: https://docs.microsoft.com/azure/cognitive-services/Text-Analytics/how-tos/text-analytics-how-to-keyword-extraction diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/samples/Sample_RecognizeHealthcareEntities.md b/sdk/textanalytics/Azure.AI.TextAnalytics/samples/Sample_RecognizeHealthcareEntities.md deleted file mode 100644 index 027e92e680867..0000000000000 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/samples/Sample_RecognizeHealthcareEntities.md +++ /dev/null @@ -1,104 +0,0 @@ -# Recognizing Healthcare Entities from Documents -This sample demonstrates how to recognize healthcare entities in one or more documents and get them asynchronously. To get started you will need a Text Analytics endpoint and credentials. See [README][README] for links and instructions. - -## Creating a `TextAnalyticsClient` - -To create a new `TextAnalyticsClient` to recognize healthcare entities in a document, you need a Text Analytics endpoint and credentials. You can use the [DefaultAzureCredential][DefaultAzureCredential] to try a number of common authentication methods optimized for both running as a service and development. In the sample below, however, you'll use a Text Analytics API key credential by creating an `AzureKeyCredential` object, that if needed, will allow you to update the API key without creating a new client. - -You can set `endpoint` and `apiKey` based on an environment variable, a configuration setting, or any way that works for your application. - -```C# Snippet:TextAnalyticsSample4CreateClient -var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); -``` - -## Recognizing healthcare entities in a single document asynchronously - -To recognize healthcare entities in a document, use the `StarthealthcareAsyc` method. The returned type is a Long Running operation of type `HealthcareOperation` which polls for the results from the API. - -```C# Snippet:RecognizeHealthcareEntities -string document = "Subject is taking 100mg of ibuprofen twice daily."; - -HealthcareOperation healthOperation = await client.StartHealthcareAsync(document); - -await healthOperation.WaitForCompletionAsync(); - -RecognizeHealthcareEntitiesResultCollection results = healthOperation.Value; - -Console.WriteLine($"Results of Azure Text Analytics \"Healthcare Async\" Model, version: \"{results.ModelVersion}\""); -Console.WriteLine(""); - -foreach (DocumentHealthcareResult result in results) -{ - Console.WriteLine($" Recognized the following {result.Entities.Count} healthcare entities:"); - - foreach (HealthcareEntity entity in result.Entities) - { - Console.WriteLine($" Entity: {entity.Text}"); - Console.WriteLine($" Subcategory: {entity.Subcategory}"); - Console.WriteLine($" Offset: {entity.Offset}"); - Console.WriteLine($" Length: {entity.Length}"); - Console.WriteLine($" IsNegated: {entity.IsNegated}"); - Console.WriteLine($" Links:"); - - foreach (HealthcareEntityLink healthcareEntityLink in entity.Links) - { - Console.WriteLine($" ID: {healthcareEntityLink.Id}"); - Console.WriteLine($" DataSource: {healthcareEntityLink.DataSource}"); - } - } - Console.WriteLine(""); -} -} -``` - -## Recognizing healthcare entities in multiple documents - -To recognize healthcare entities in multiple documents, call `StartHealthcareBatchAsync` on an `IEnumerable` of strings. The result is a Long Running operation of type `HealthcareOperation` which polls for the results from the API. - -```C# Snippet:TextAnalyticsSampleRecognizeHealthcare -string document = "Subject is taking 100mg of ibuprofen twice daily."; - -HealthcareOperation healthOperation = await client.StartHealthcareAsync(document); - -await healthOperation.WaitForCompletionAsync(); - -RecognizeHealthcareEntitiesResultCollection results = healthOperation.Value; -``` - -To recognize healthcare entities in a collection of documents in different languages, call `RecognizeHealthcare EntitiesBatch` on an `IEnumerable` of `TextDocumentInput` objects, setting the `Language` on each document. - -```C# Snippet:TextAnalyticsSampleRecognizeHealthcare -var documents = new List -{ - new TextDocumentInput("1", "Subject is taking 100mg of ibuprofen twice daily.") - { - Language = "en", - }, - new TextDocumentInput("2", "Can cause rapid or irregular heartbeat.") - { - Language = "en", - }, - new TextDocumentInput("3", "The patient is a 54-year-old gentleman with a history of progressive angina over the past several months") - { - Language = "en", - } -}; - -HealthcareOperation healthOperation = await client.StartHealthcareAsync(document); - -await healthOperation.WaitForCompletionAsync(); - -RecognizeHealthcareEntitiesResultCollection results = healthOperation.Value; -``` - -To see the full example source files, see: - -* [Synchronously RecognizeHealthcare ](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare.cs) -* [Asynchronously RecognizeHealthcare ](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync.cs) -* [Synchronously RecognizeHealthcareBatch](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareBatch.cs) -* [Asynchronously RecognizeHealthcareBatch](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareBatchAsync.cs) -* [Synchronously RecognizeHealthcare Cancellation](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs) -* [Asynchronously RecognizeHealthcare Cancellation](https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Cancellation.cs) - -[DefaultAzureCredential]: https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/identity/Azure.Identity/README.md -[README]: https://github.com/Azure/azure-sdk-for-net/blob/master/sdk/textanalytics/Azure.AI.TextAnalytics/README.md \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareBatchAsync.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs similarity index 97% rename from sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareBatchAsync.cs rename to sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs index 8a8dd1eae9fd0..cde7a027cdc17 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareBatchAsync.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_ShowStats.cs @@ -16,14 +16,14 @@ namespace Azure.AI.TextAnalytics.Samples public partial class TextAnalyticsSamples: SamplesBase { [Test] - public async Task HealthcareBatchAsync() + public async Task HealthcareAsyncShowStats() { string endpoint = TestEnvironment.Endpoint; string apiKey = TestEnvironment.ApiKey; var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); - #region Snippet:TextAnalyticsSampleHealthcareBatchAsync + #region Snippet:TextAnalyticsSampleHealthcareAsyncShowStats string document = @"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | \ Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. \ HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. \ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareBatch.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs similarity index 68% rename from sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareBatch.cs rename to sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs index e722c07d1f091..ca35605417494 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareBatch.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs @@ -15,23 +15,15 @@ namespace Azure.AI.TextAnalytics.Samples public partial class TextAnalyticsSamples: SamplesBase { [Test] - public async Task HealthcareBatch() + public async Task HealthcareShowStats() { string endpoint = TestEnvironment.Endpoint; string apiKey = TestEnvironment.ApiKey; var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); - #region Snippet:TextAnalyticsSampleHealthcareBatch - string document = @"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | \ - Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. \ - HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. \ - The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease ,\ - with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and \ - another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , \ - which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with \ - minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's \ - increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; + #region Snippet:TextAnalyticsSampleHealthcareShowStats + string document = "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; List batchInput = new List() { From 2c9db4abbaf00fd67f6c7d511c845d1873e5a08c Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Thu, 5 Nov 2020 11:23:48 -0800 Subject: [PATCH 35/58] resolved comments --- .../src/HealthcareOperation.cs | 16 +++--- .../src/TextAnalyticsClient.cs | 51 ++++++++++++------- 2 files changed, 40 insertions(+), 27 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs index c0b036c76affc..7782ec7ed4314 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareOperation.cs @@ -25,7 +25,7 @@ public class HealthcareOperation : Operation /// Provides the input to be part of HealthcareOperation class /// - private readonly IDictionary _idToIndexMap; + internal readonly IDictionary _idToIndexMap; /// /// Gets an ID representing the operation that can be used to poll for the status @@ -36,7 +36,7 @@ public class HealthcareOperation : Operation /// next link string for pagination /// - public string NextLink { get; set; } + internal string NextLink { get; set; } /// /// Final result of the long-running operation. @@ -77,11 +77,7 @@ public override RecognizeHealthcareEntitiesResultCollection Value private int? _top { get; } private int? _skip { get; } - - /// - /// For showing Statistics for request as well as document. - /// - public bool? ShowStats { get; } + private bool? _showStats { get; } /// /// Returns true if the long-running operation completed successfully and has produced final result (accessible by Value property). @@ -119,7 +115,7 @@ internal HealthcareOperation(TextAnalyticsRestClient serviceClient, ClientDiagno _idToIndexMap = idToIndexMap; _top = top; _skip = skip; - ShowStats = showStats; + _showStats = showStats; // TODO: Add validation here // https://github.com/Azure/azure-sdk-for-net/issues/11505 @@ -202,8 +198,8 @@ private async ValueTask UpdateStatusAsync(bool async, CancellationToke try { Response update = async - ? await _serviceClient.HealthStatusAsync(new Guid(Id), _top, _skip, ShowStats, cancellationToken).ConfigureAwait(false) - : _serviceClient.HealthStatus(new Guid(Id), _top, _skip, ShowStats, cancellationToken); + ? await _serviceClient.HealthStatusAsync(new Guid(Id), _top, _skip, _showStats, cancellationToken).ConfigureAwait(false) + : _serviceClient.HealthStatus(new Guid(Id), _top, _skip, _showStats, cancellationToken); _response = update.GetRawResponse(); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index 0c9cfbb54a150..294698bef1e02 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -27,7 +27,6 @@ public partial class TextAnalyticsClient private readonly TextAnalyticsClientOptions _options; private readonly string DefaultCognitiveScope = "https://cognitiveservices.azure.com/.default"; private const string AuthorizationHeader = "Ocp-Apim-Subscription-Key"; - private IDictionary _idToIndexMap; // Specifies the method used to interpret string offsets. Default to . private readonly StringIndexType _stringCodeUnit = StringIndexType.Utf16CodeUnit; @@ -2078,7 +2077,9 @@ private Response RecognizeLinkedEntitie #region Healthcare /// - /// . + /// Runs a predictive model to identify a collection of healthcare entities + /// found in the passed-in document, and include information linking the + /// entities to their corresponding entries in a well-known knowledge base. /// For a list of languages supported by this operation, see /// . /// For document length limits, maximum batch size, and supported text encoding, see @@ -2109,7 +2110,7 @@ public virtual async Task StartHealthcareAsync(string docum IDictionary idToIndexMap = CreateIdToIndexMap(documentInputs.Documents); - return new HealthcareOperation(_serviceRestClient, _clientDiagnostics, location, idToIndexMap); + return new HealthcareOperation(_serviceRestClient, _clientDiagnostics, location, idToIndexMap, options.Top, options.Skip, options.IncludeStatistics); } catch (Exception e) { @@ -2120,7 +2121,9 @@ public virtual async Task StartHealthcareAsync(string docum } /// - /// . + /// Runs a predictive model to identify a collection of healthcare entities + /// found in the passed-in document, and include information linking the + /// entities to their corresponding entries in a well-known knowledge base. /// For a list of languages supported by this operation, see /// . /// For document length limits, maximum batch size, and supported text encoding, see @@ -2151,7 +2154,7 @@ public virtual HealthcareOperation StartHealthcare(string document, string langu IDictionary idToIndexMap = CreateIdToIndexMap(documentInputs.Documents); - return new HealthcareOperation(_serviceRestClient, _clientDiagnostics, location, idToIndexMap); + return new HealthcareOperation(_serviceRestClient, _clientDiagnostics, location, idToIndexMap, options.Top, options.Skip, options.IncludeStatistics); } catch (Exception e) { @@ -2161,7 +2164,9 @@ public virtual HealthcareOperation StartHealthcare(string document, string langu } /// - /// . + /// Runs a predictive model to identify a collection of healthcare entities + /// found in the passed-in document, and include information linking the + /// entities to their corresponding entries in a well-known knowledge base. /// For a list of languages supported by this operation, see /// . /// For document length limits, maximum batch size, and supported text encoding, see @@ -2183,9 +2188,9 @@ public virtual async Task StartHealthcareBatchAsync(IEnumer } /// - /// StartHealthcare - /// For more information on available categories, see - /// . + /// Runs a predictive model to identify a collection of healthcare entities + /// found in the passed-in document, and include information linking the + /// entities to their corresponding entries in a well-known knowledge base. /// For a list of languages supported by this operation, see /// . /// For document length limits, maximum batch size, and supported text encoding, see @@ -2197,7 +2202,7 @@ public virtual async Task StartHealthcareBatchAsync(IEnumer /// in the request sent to the /// service. If set to an empty string, the service will apply a model /// where the language is explicitly set to "None". - /// The additional configurable that may be passed when + /// The additional configurable that may be passed when /// recognizing PII entities. Options include entity domain filters, model version, and more. /// A /// controlling the request lifetime. @@ -2235,7 +2240,13 @@ public virtual HealthcareOperation StartHealthcareBatch(IEnumerable - /// Recognizes layout elements from one or more passed-in forms. + /// Runs a predictive model to identify a collection of healthcare entities + /// found in the passed-in document, and include information linking the + /// entities to their corresponding entries in a well-known knowledge base. + /// For a list of languages supported by this operation, see + /// . + /// For document length limits, maximum batch size, and supported text encoding, see + /// . /// /// /// @@ -2265,7 +2276,7 @@ private HealthcareOperation StartHealthcareBatch(MultiLanguageBatchInput batchIn ResponseWithHeaders response = _serviceRestClient.Health(batchInput, options.ModelVersion, _stringCodeUnit, cancellationToken); string location = response.Headers.OperationLocation; - _idToIndexMap = CreateIdToIndexMap(batchInput.Documents); + var _idToIndexMap = CreateIdToIndexMap(batchInput.Documents); return new HealthcareOperation(_serviceRestClient, _clientDiagnostics, location, _idToIndexMap, options.Top, options.Skip, options.IncludeStatistics); } @@ -2288,7 +2299,7 @@ private async Task StartHealthcareBatchAsync(MultiLanguageB ResponseWithHeaders response = await _serviceRestClient.HealthAsync(batchInput, options.ModelVersion, _stringCodeUnit, cancellationToken).ConfigureAwait(false); string location = response.Headers.OperationLocation; - _idToIndexMap = CreateIdToIndexMap(batchInput.Documents); + var _idToIndexMap = CreateIdToIndexMap(batchInput.Documents); return new HealthcareOperation(_serviceRestClient, _clientDiagnostics, location, _idToIndexMap, options.Top, options.Skip, options.IncludeStatistics); } @@ -2382,10 +2393,11 @@ async Task> NextPageFunc(string nextLink, int? pa { int top = default; int skip = default; + bool showStats = default; // Extracting Job ID and parameters from the URL. // TODO - Update with Regex for cleaner implementation - // nextLink - https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/8002878d-2e43-4675-ad20-455fe004641b?$skip=20&$top=0 + // nextLink - https://cognitiveusw2dev.azure-api.net/text/analytics/v3.1-preview.3/entities/health/jobs/8002878d-2e43-4675-ad20-455fe004641b?$skip=20&$top=0&showStats=true string[] nextLinkSplit = nextLink.Split('/'); // nextLinkSplit = [ 'https:', '', 'cognitiveusw2dev.azure-api.net', 'text', ..., '8002878d-2e43-4675-ad20-455fe004641b?$skip=20&$top=0'] @@ -2404,7 +2416,7 @@ async Task> NextPageFunc(string nextLink, int? pa // Extracting Top and Skip parameter values string[] parameters = jobIdParams[1].Split('&'); - // '$skip=20&$top=0' + // '$skip=20', '$top=0', 'showStats=true' foreach (string paramater in parameters) { @@ -2418,11 +2430,16 @@ async Task> NextPageFunc(string nextLink, int? pa _ = int.TryParse(paramater.Split('=')[1], out skip); // 20 } + if (paramater.Contains("showStats")) + { + _ = bool.TryParse(paramater.Split('=')[1], out showStats); + // 20 + } } - Response jobState = await _serviceRestClient.HealthStatusAsync(new Guid(jobId), top, skip, operation.ShowStats).ConfigureAwait(false); + Response jobState = await _serviceRestClient.HealthStatusAsync(new Guid(jobId), top, skip, showStats).ConfigureAwait(false); - RecognizeHealthcareEntitiesResultCollection result = Transforms.ConvertToRecognizeHealthcareEntitiesResultCollection(jobState.Value.Results, _idToIndexMap); + RecognizeHealthcareEntitiesResultCollection result = Transforms.ConvertToRecognizeHealthcareEntitiesResultCollection(jobState.Value.Results, operation._idToIndexMap); return Page.FromValues(result.AsEnumerable(), jobState.Value.NextLink, jobState.GetRawResponse()); } catch (Exception e) From 348d269958c6d2999bc2f21c5079bacfecd5d95a Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Thu, 5 Nov 2020 11:59:21 -0800 Subject: [PATCH 36/58] run export.ps1 --- .../Azure.AI.TextAnalytics.netstandard2.0.cs | 94 +++++++------------ 1 file changed, 32 insertions(+), 62 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/api/Azure.AI.TextAnalytics.netstandard2.0.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/api/Azure.AI.TextAnalytics.netstandard2.0.cs index 882d50b833234..d4eb82992a816 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/api/Azure.AI.TextAnalytics.netstandard2.0.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/api/Azure.AI.TextAnalytics.netstandard2.0.cs @@ -90,7 +90,12 @@ internal DocumentSentiment() { } public partial class EntitiesTask { public EntitiesTask() { } - public Azure.AI.TextAnalytics.Models.EntitiesTaskParameters Parameters { get { throw null; } set { } } + public Azure.AI.TextAnalytics.EntitiesTaskParameters Parameters { get { throw null; } set { } } + } + public partial class EntitiesTaskParameters + { + public EntitiesTaskParameters() { } + public string ModelVersion { get { throw null; } set { } } } public partial class Entity { @@ -169,7 +174,6 @@ public HealthcareOperation(string operationId, Azure.AI.TextAnalytics.TextAnalyt public override bool HasCompleted { get { throw null; } } public override bool HasValue { get { throw null; } } public override string Id { get { throw null; } } - public string NextLink { get { throw null; } set { } } public override Azure.AI.TextAnalytics.RecognizeHealthcareEntitiesResultCollection Value { get { throw null; } } public override Azure.Response GetRawResponse() { throw null; } public override Azure.Response UpdateStatus(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } @@ -233,7 +237,12 @@ internal KeyPhraseExtractionTasksItem() { } public partial class KeyPhrasesTask { public KeyPhrasesTask() { } - public Azure.AI.TextAnalytics.Models.KeyPhrasesTaskParameters Parameters { get { throw null; } set { } } + public Azure.AI.TextAnalytics.KeyPhrasesTaskParameters Parameters { get { throw null; } set { } } + } + public partial class KeyPhrasesTaskParameters + { + public KeyPhrasesTaskParameters() { } + public string ModelVersion { get { throw null; } set { } } } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct LinkedEntity @@ -310,9 +319,26 @@ public PiiTask() { } public partial class PiiTaskParameters { public PiiTaskParameters() { } - public Azure.AI.TextAnalytics.Models.PiiTaskParametersDomain? Domain { get { throw null; } set { } } + public Azure.AI.TextAnalytics.PiiTaskParametersDomain? Domain { get { throw null; } set { } } public string ModelVersion { get { throw null; } set { } } - public Azure.AI.TextAnalytics.StringIndexType? StringIndexType { get { throw null; } set { } } + } + [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] + public readonly partial struct PiiTaskParametersDomain : System.IEquatable + { + private readonly object _dummy; + private readonly int _dummyPrimitive; + public PiiTaskParametersDomain(string value) { throw null; } + public static Azure.AI.TextAnalytics.PiiTaskParametersDomain None { get { throw null; } } + public static Azure.AI.TextAnalytics.PiiTaskParametersDomain Phi { get { throw null; } } + public bool Equals(Azure.AI.TextAnalytics.PiiTaskParametersDomain other) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override bool Equals(object obj) { throw null; } + [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] + public override int GetHashCode() { throw null; } + public static bool operator ==(Azure.AI.TextAnalytics.PiiTaskParametersDomain left, Azure.AI.TextAnalytics.PiiTaskParametersDomain right) { throw null; } + public static implicit operator Azure.AI.TextAnalytics.PiiTaskParametersDomain (string value) { throw null; } + public static bool operator !=(Azure.AI.TextAnalytics.PiiTaskParametersDomain left, Azure.AI.TextAnalytics.PiiTaskParametersDomain right) { throw null; } + public override string ToString() { throw null; } } public partial class RecognizeEntitiesResult : Azure.AI.TextAnalytics.TextAnalyticsResult { @@ -331,11 +357,6 @@ internal RecognizeHealthcareEntitiesResultCollection() : base (default(System.Co public string ModelVersion { get { throw null; } } public Azure.AI.TextAnalytics.TextDocumentBatchStatistics Statistics { get { throw null; } } } - public partial class RecognizeHealthcareEntititesResult : Azure.AI.TextAnalytics.TextAnalyticsResult - { - internal RecognizeHealthcareEntititesResult() { } - public Azure.AI.TextAnalytics.DocumentHealthcareResult Result { get { throw null; } } - } public partial class RecognizeLinkedEntitiesResult : Azure.AI.TextAnalytics.TextAnalyticsResult { internal RecognizeLinkedEntitiesResult() { } @@ -381,25 +402,6 @@ internal SentimentConfidenceScores() { } public double Neutral { get { throw null; } } public double Positive { get { throw null; } } } - [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] - public readonly partial struct StringIndexType : System.IEquatable - { - private readonly object _dummy; - private readonly int _dummyPrimitive; - public StringIndexType(string value) { throw null; } - public static Azure.AI.TextAnalytics.StringIndexType TextElementsV8 { get { throw null; } } - public static Azure.AI.TextAnalytics.StringIndexType UnicodeCodePoint { get { throw null; } } - public static Azure.AI.TextAnalytics.StringIndexType Utf16CodeUnit { get { throw null; } } - public bool Equals(Azure.AI.TextAnalytics.StringIndexType other) { throw null; } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public override bool Equals(object obj) { throw null; } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public override int GetHashCode() { throw null; } - public static bool operator ==(Azure.AI.TextAnalytics.StringIndexType left, Azure.AI.TextAnalytics.StringIndexType right) { throw null; } - public static implicit operator Azure.AI.TextAnalytics.StringIndexType (string value) { throw null; } - public static bool operator !=(Azure.AI.TextAnalytics.StringIndexType left, Azure.AI.TextAnalytics.StringIndexType right) { throw null; } - public override string ToString() { throw null; } - } public partial class TasksStateTasks { internal TasksStateTasks() { } @@ -485,7 +487,7 @@ public TextAnalyticsClient(System.Uri endpoint, Azure.Core.TokenCredential crede public virtual System.Threading.Tasks.Task StartHealthcareAsync(string document, string language = null, Azure.AI.TextAnalytics.HealthcareOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.AI.TextAnalytics.HealthcareOperation StartHealthcareBatch(System.Collections.Generic.IEnumerable documents, Azure.AI.TextAnalytics.HealthcareOptions options, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.AI.TextAnalytics.HealthcareOperation StartHealthcareBatch(System.Collections.Generic.IEnumerable documents, string language = null, Azure.AI.TextAnalytics.HealthcareOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task StartHealthcareBatchAsync(System.Collections.Generic.IEnumerable documents, Azure.AI.TextAnalytics.HealthcareOptions options, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartHealthcareBatchAsync(System.Collections.Generic.IEnumerable documents, Azure.AI.TextAnalytics.HealthcareOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task StartHealthcareBatchAsync(System.Collections.Generic.IEnumerable documents, string language = null, Azure.AI.TextAnalytics.HealthcareOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] public override string ToString() { throw null; } @@ -662,38 +664,6 @@ public enum TextSentiment Mixed = 3, } } -namespace Azure.AI.TextAnalytics.Models -{ - public partial class EntitiesTaskParameters - { - public EntitiesTaskParameters() { } - public string ModelVersion { get { throw null; } set { } } - public Azure.AI.TextAnalytics.StringIndexType? StringIndexType { get { throw null; } set { } } - } - public partial class KeyPhrasesTaskParameters - { - public KeyPhrasesTaskParameters() { } - public string ModelVersion { get { throw null; } set { } } - } - [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] - public readonly partial struct PiiTaskParametersDomain : System.IEquatable - { - private readonly object _dummy; - private readonly int _dummyPrimitive; - public PiiTaskParametersDomain(string value) { throw null; } - public static Azure.AI.TextAnalytics.Models.PiiTaskParametersDomain None { get { throw null; } } - public static Azure.AI.TextAnalytics.Models.PiiTaskParametersDomain Phi { get { throw null; } } - public bool Equals(Azure.AI.TextAnalytics.Models.PiiTaskParametersDomain other) { throw null; } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public override bool Equals(object obj) { throw null; } - [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)] - public override int GetHashCode() { throw null; } - public static bool operator ==(Azure.AI.TextAnalytics.Models.PiiTaskParametersDomain left, Azure.AI.TextAnalytics.Models.PiiTaskParametersDomain right) { throw null; } - public static implicit operator Azure.AI.TextAnalytics.Models.PiiTaskParametersDomain (string value) { throw null; } - public static bool operator !=(Azure.AI.TextAnalytics.Models.PiiTaskParametersDomain left, Azure.AI.TextAnalytics.Models.PiiTaskParametersDomain right) { throw null; } - public override string ToString() { throw null; } - } -} namespace Microsoft.Extensions.Azure { public static partial class TextAnalyticsClientBuilderExtensions From a64ebd15974e6e87a14df83500fc0bd95b44156d Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Thu, 5 Nov 2020 13:02:26 -0800 Subject: [PATCH 37/58] update session records --- ...lyzeSentimentBatchConvenienceFullTest.json | 10 +- ...entimentBatchConvenienceFullTestAsync.json | 10 +- .../AnalyzeSentimentBatchConvenienceTest.json | 10 +- ...yzeSentimentBatchConvenienceTestAsync.json | 10 +- ...tBatchConvenienceWithCancellationTest.json | 10 +- ...hConvenienceWithCancellationTestAsync.json | 10 +- ...nienceWithLanguageAndCancellationTest.json | 10 +- ...eWithLanguageAndCancellationTestAsync.json | 10 +- ...venienceWithLanguageAndStatisticsTest.json | 10 +- ...nceWithLanguageAndStatisticsTestAsync.json | 10 +- ...imentBatchConvenienceWithLanguageTest.json | 10 +- ...BatchConvenienceWithLanguageTestAsync.json | 10 +- ...BatchConvenienceWithOpinionMiningTest.json | 10 +- ...ConvenienceWithOpinionMiningTestAsync.json | 10 +- ...enceWithStatisticsAndCancellationTest.json | 8 +- ...ithStatisticsAndCancellationTestAsync.json | 10 +- ...entBatchConvenienceWithStatisticsTest.json | 10 +- ...tchConvenienceWithStatisticsTestAsync.json | 10 +- .../AnalyzeSentimentBatchTest.json | 10 +- .../AnalyzeSentimentBatchTestAsync.json | 10 +- .../AnalyzeSentimentBatchWithErrorTest.json | 10 +- ...alyzeSentimentBatchWithErrorTestAsync.json | 10 +- .../AnalyzeSentimentBatchWithNullIdTest.json | 10 +- ...lyzeSentimentBatchWithNullIdTestAsync.json | 10 +- ...AnalyzeSentimentBatchWithNullTextTest.json | 10 +- ...zeSentimentBatchWithNullTextTestAsync.json | 10 +- ...zeSentimentBatchWithOpinionMiningTest.json | 10 +- ...timentBatchWithOpinionMiningTestAsync.json | 10 +- ...alyzeSentimentBatchWithStatisticsTest.json | 10 +- ...SentimentBatchWithStatisticsTestAsync.json | 10 +- .../AnalyzeSentimentTest.json | 10 +- .../AnalyzeSentimentTestAsync.json | 10 +- .../AnalyzeSentimentWithCancellationTest.json | 10 +- ...yzeSentimentWithCancellationTestAsync.json | 10 +- ...timentWithLanguageAndCancellationTest.json | 10 +- ...tWithLanguageAndCancellationTestAsync.json | 10 +- .../AnalyzeSentimentWithLanguageTest.json | 10 +- ...AnalyzeSentimentWithLanguageTestAsync.json | 10 +- .../AnalyzeSentimentWithOpinionMining.json | 10 +- ...nalyzeSentimentWithOpinionMiningAsync.json | 10 +- ...nalyzeSentimentWithOpinionMiningEmpty.json | 10 +- ...eSentimentWithOpinionMiningEmptyAsync.json | 10 +- ...lyzeSentimentWithOpinionMiningNegated.json | 10 +- ...entimentWithOpinionMiningNegatedAsync.json | 10 +- .../DetectLanguageBatchConvenienceTest.json | 10 +- ...tectLanguageBatchConvenienceTestAsync.json | 10 +- ...ageBatchConvenienceWithStatisticsTest.json | 10 +- ...tchConvenienceWithStatisticsTestAsync.json | 10 +- .../DetectLanguageBatchTest.json | 10 +- .../DetectLanguageBatchTestAsync.json | 10 +- .../DetectLanguageBatchWithErrorTest.json | 10 +- ...DetectLanguageBatchWithErrorTestAsync.json | 10 +- .../DetectLanguageBatchWithNullIdTest.json | 10 +- ...etectLanguageBatchWithNullIdTestAsync.json | 10 +- .../DetectLanguageBatchWithNullTextTest.json | 10 +- ...ectLanguageBatchWithNullTextTestAsync.json | 10 +- ...DetectLanguageBatchWithStatisticsTest.json | 10 +- ...tLanguageBatchWithStatisticsTestAsync.json | 10 +- .../DetectLanguageTest.json | 10 +- .../DetectLanguageTestAsync.json | 10 +- .../DetectLanguageWithCountryHintTest.json | 10 +- ...etectLanguageWithCountryHintTestAsync.json | 10 +- ...etectLanguageWithErrorCountryHintTest.json | 10 +- ...LanguageWithErrorCountryHintTestAsync.json | 10 +- ...DetectLanguageWithNoneCountryHintTest.json | 10 +- ...tLanguageWithNoneCountryHintTestAsync.json | 10 +- ...anguageWithNoneDefaultCountryHintTest.json | 10 +- ...geWithNoneDefaultCountryHintTestAsync.json | 10 +- ...ExtractKeyPhrasesBatchConvenienceTest.json | 10 +- ...ctKeyPhrasesBatchConvenienceTestAsync.json | 10 +- ...sesBatchConvenienceWithStatisticsTest.json | 10 +- ...tchConvenienceWithStatisticsTestAsync.json | 10 +- .../ExtractKeyPhrasesBatchTest.json | 10 +- .../ExtractKeyPhrasesBatchTestAsync.json | 10 +- .../ExtractKeyPhrasesBatchWithErrorTest.json | 10 +- ...ractKeyPhrasesBatchWithErrorTestAsync.json | 10 +- .../ExtractKeyPhrasesBatchWithNullIdTest.json | 10 +- ...actKeyPhrasesBatchWithNullIdTestAsync.json | 10 +- ...xtractKeyPhrasesBatchWithNullTextTest.json | 10 +- ...tKeyPhrasesBatchWithNullTextTestAsync.json | 10 +- ...tractKeyPhrasesBatchWithSatisticsTest.json | 10 +- ...KeyPhrasesBatchWithSatisticsTestAsync.json | 10 +- .../ExtractKeyPhrasesTest.json | 10 +- .../ExtractKeyPhrasesTestAsync.json | 10 +- .../ExtractKeyPhrasesWithLanguageTest.json | 10 +- ...xtractKeyPhrasesWithLanguageTestAsync.json | 10 +- .../ExtractKeyPhrasesWithWarningTest.json | 10 +- ...ExtractKeyPhrasesWithWarningTestAsync.json | 10 +- ...RecognizeEntitiesBatchConvenienceTest.json | 10 +- ...nizeEntitiesBatchConvenienceTestAsync.json | 10 +- ...iesBatchConvenienceWithStatisticsTest.json | 10 +- ...tchConvenienceWithStatisticsTestAsync.json | 10 +- .../RecognizeEntitiesBatchTest.json | 10 +- .../RecognizeEntitiesBatchTestAsync.json | 10 +- .../RecognizeEntitiesBatchWithErrorTest.json | 10 +- ...ognizeEntitiesBatchWithErrorTestAsync.json | 10 +- ...EntitiesBatchWithInvalidDocumentBatch.json | 10 +- ...iesBatchWithInvalidDocumentBatchAsync.json | 10 +- .../RecognizeEntitiesBatchWithNullIdTest.json | 10 +- ...gnizeEntitiesBatchWithNullIdTestAsync.json | 10 +- ...ecognizeEntitiesBatchWithNullTextTest.json | 8 +- ...izeEntitiesBatchWithNullTextTestAsync.json | 10 +- ...ognizeEntitiesBatchWithStatisticsTest.json | 10 +- ...eEntitiesBatchWithStatisticsTestAsync.json | 10 +- .../RecognizeEntitiesTest.json | 10 +- .../RecognizeEntitiesTestAsync.json | 10 +- .../RecognizeEntitiesWithLanguageTest.json | 10 +- ...ecognizeEntitiesWithLanguageTestAsync.json | 10 +- .../RecognizeEntitiesWithSubCategoryTest.json | 10 +- ...gnizeEntitiesWithSubCategoryTestAsync.json | 10 +- ...ealthcareEntitiesBatchConvenienceTest.json | 109 ++---- ...careEntitiesBatchConvenienceTestAsync.json | 57 +-- ...iesBatchConvenienceWithStatisticsTest.json | 55 +-- ...tchConvenienceWithStatisticsTestAsync.json | 73 ++-- .../RecognizeHealthcareEntitiesBatchTest.json | 93 ++--- ...gnizeHealthcareEntitiesBatchTestAsync.json | 55 +-- ...eHealthcareEntitiesBatchWithErrorTest.json | 55 +-- ...thcareEntitiesBatchWithErrorTestAsync.json | 73 ++-- ...HealthcareEntitiesBatchWithPagination.json | 171 +++++---- ...hcareEntitiesBatchWithPaginationAsync.json | 153 ++++---- ...thcareEntitiesBatchWithStatisticsTest.json | 327 ++++++++++++++++-- ...eEntitiesBatchWithStatisticsTestAsync.json | 55 +-- .../RecognizeHealthcareEntitiesTest.json | 89 +++-- .../RecognizeHealthcareEntitiesTestAsync.json | 49 +-- ...izeHealthcareEntitiesWithLanguageTest.json | 85 ++--- ...althcareEntitiesWithLanguageTestAsync.json | 67 ++-- ...zeHealthcareEntitiesWithSkipParameter.json | 54 +-- ...lthcareEntitiesWithSkipParameterAsync.json | 126 ++----- ...izeHealthcareEntitiesWithTopParameter.json | 91 ++--- ...althcareEntitiesWithTopParameterAsync.json | 89 +++-- ...izeLinkedEntitiesBatchConvenienceTest.json | 10 +- ...nkedEntitiesBatchConvenienceTestAsync.json | 10 +- ...iesBatchConvenienceWithStatisticsTest.json | 10 +- ...tchConvenienceWithStatisticsTestAsync.json | 10 +- .../RecognizeLinkedEntitiesBatchTest.json | 10 +- ...RecognizeLinkedEntitiesBatchTestAsync.json | 10 +- ...gnizeLinkedEntitiesBatchWithErrorTest.json | 10 +- ...LinkedEntitiesBatchWithErrorTestAsync.json | 10 +- ...EntitiesBatchWithInvalidDocumentBatch.json | 10 +- ...iesBatchWithInvalidDocumentBatchAsync.json | 10 +- ...nizeLinkedEntitiesBatchWithNullIdTest.json | 10 +- ...inkedEntitiesBatchWithNullIdTestAsync.json | 8 +- ...zeLinkedEntitiesBatchWithNullTextTest.json | 8 +- ...kedEntitiesBatchWithNullTextTestAsync.json | 10 +- ...LinkedEntitiesBatchWithStatisticsTest.json | 10 +- ...dEntitiesBatchWithStatisticsTestAsync.json | 10 +- .../RecognizeLinkedEntitiesTest.json | 10 +- .../RecognizeLinkedEntitiesTestAsync.json | 10 +- ...cognizeLinkedEntitiesWithLanguageTest.json | 10 +- ...zeLinkedEntitiesWithLanguageTestAsync.json | 10 +- ...ognizePiiEntitiesBatchConvenienceTest.json | 10 +- ...ePiiEntitiesBatchConvenienceTestAsync.json | 10 +- ...iesBatchConvenienceWithStatisticsTest.json | 10 +- ...tchConvenienceWithStatisticsTestAsync.json | 10 +- .../RecognizePiiEntitiesBatchTest.json | 10 +- .../RecognizePiiEntitiesBatchTestAsync.json | 10 +- ...ecognizePiiEntitiesBatchWithErrorTest.json | 10 +- ...izePiiEntitiesBatchWithErrorTestAsync.json | 10 +- ...izePiiEntitiesBatchWithStatisticsTest.json | 10 +- ...iEntitiesBatchWithStatisticsTestAsync.json | 10 +- .../RecognizePiiEntitiesTest.json | 10 +- .../RecognizePiiEntitiesTestAsync.json | 10 +- .../RecognizePiiEntitiesWithDomainTest.json | 10 +- ...cognizePiiEntitiesWithDomainTestAsync.json | 10 +- .../RecognizePiiEntitiesWithLanguageTest.json | 10 +- ...gnizePiiEntitiesWithLanguageTestAsync.json | 10 +- .../EntitiesCategories.json | 10 +- .../EntitiesCategoriesAsync.json | 10 +- .../RotateApiKey.json | 26 +- .../RotateApiKeyAsync.json | 26 +- .../TextInKoreanNFC.json | 10 +- .../TextInKoreanNFCAsync.json | 10 +- .../TextWithDiacriticsNFC.json | 10 +- .../TextWithDiacriticsNFCAsync.json | 10 +- .../TextWithEmoji.json | 10 +- .../TextWithEmojiAsync.json | 10 +- 176 files changed, 1852 insertions(+), 1658 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json index 84c81469db4b3..986c3386fb5db 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-eba5277f446bef4785644a6e786ab5da-01e92ceebef9c94c-00", + "traceparent": "00-63786838ca499b4eb50627dd4483ad8f-02b7756309dfc54c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7fbb9dea32b8080ffdad856789b2330d", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7cfb5566-5132-42c5-bc40-02f3f53b58e4", + "apim-request-id": "ec3eb933-1269-405d-9502-ea677d0563e3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:31 GMT", + "Date": "Thu, 05 Nov 2020 20:52:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "111" + "x-envoy-upstream-service-time": "103" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json index 7fcb031ec63d1..22d660fdb7acb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-84f580ab78368f489659cdd79d91c77b-09153d0ce673e541-00", + "traceparent": "00-7b54af3d25713d4f81427ef5439aa8af-237e604fe12c0e4e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9ce6282fe98018f1ea732ad3ecd9e59c", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0c8a5711-f68e-49dc-b432-1ac153994a92", + "apim-request-id": "2869bd6c-6139-43a7-b9f3-7d0a8371efb7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:38 GMT", + "Date": "Thu, 05 Nov 2020 20:52:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "112" + "x-envoy-upstream-service-time": "111" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json index 5220fd1d3f2e8..6256a48be2ed5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b3212ad516f71348a2b4e2292df1ea72-cdd33bb69e9bd943-00", + "traceparent": "00-23ad581dd7995245b6aac51b355b4c24-5dca04ce50bb8b42-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "119c99db1e02c34777426e77d5c75cb6", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "138d21f3-7ea0-49fe-96cf-a496a251ba09", + "apim-request-id": "acedfb78-bdac-44e0-8af7-362f105a7b6e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:31 GMT", + "Date": "Thu, 05 Nov 2020 20:52:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "98" + "x-envoy-upstream-service-time": "106" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json index 5b5108173efff..8822d476b453f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-87d64195ef4f1b4598346d57e200e045-71713760b9edfb47-00", + "traceparent": "00-bcd043f332f9fe45a11a1d60f963689f-d3725306bc06134f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9d1067da67ede0f99771b2c8070f5079", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7f3e7413-b60b-4a99-ab29-50dcfc6182a2", + "apim-request-id": "296ecd10-4b1f-4c78-9b77-7fab2326e954", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:38 GMT", + "Date": "Thu, 05 Nov 2020 20:52:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "111" + "x-envoy-upstream-service-time": "102" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json index 95305daf5f796..7d616dc2ea2e6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-189d2f0460fd6747be3c5aadb22d2107-03f75b7d70d5dc48-00", + "traceparent": "00-a8ee6e9780a0b340a6de42219a5b60d1-cb5a8d08bb489144-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "86b79e2f0559eb97f25b1c5b233a68dd", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "03577640-2343-4834-b1bd-4396c25ade06", + "apim-request-id": "8946863d-bdf6-4649-ad85-3749f35ff2c7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:31 GMT", + "Date": "Thu, 05 Nov 2020 20:52:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "108" + "x-envoy-upstream-service-time": "103" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json index 38d4bf72447e9..c88497006c5ef 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b3e2cd093d105149b1d8a9326a7737c7-ce2ad28c09b67548-00", + "traceparent": "00-5b560f21d934ce4e8c95169ff2b4fc53-edeaa8e4b124e34d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "300adb4a8ab9aa03c50b104c35b7e035", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c3a88309-bc18-48db-94b3-f8137ccbfe5d", + "apim-request-id": "096e77f9-ba84-4a39-9660-6db800a56f9e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:38 GMT", + "Date": "Thu, 05 Nov 2020 20:52:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "186" + "x-envoy-upstream-service-time": "123" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json index 4e2b659481d46..461e9b9f22128 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ed3f65c803dd6e42a119f700a3ee035c-6e086393fb48bc48-00", + "traceparent": "00-ebe82730afb17848846ee19bd61bd68f-6368d0c4f67a3d44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "abe848a0b41107615847f9d88e292402", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b89f0854-4f75-416e-bf12-deabd2cf89af", + "apim-request-id": "485afdd2-8769-4200-b6a2-b67597c9d685", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:33 GMT", + "Date": "Thu, 05 Nov 2020 20:52:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "115" + "x-envoy-upstream-service-time": "106" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json index 17d5d9392854c..69534d096b727 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7315df88429e8149a1aff36e944f02d6-76317aa9b1709343-00", + "traceparent": "00-3fecd8adea9f8e4b9b3d123b07c78578-793980787f77534b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e76a4622dec6c96d7ae12bfd307d2c70", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e803ee95-856c-40c6-a599-e56d80858e35", + "apim-request-id": "1dbee381-45c8-4afd-9f76-df5b95d0c1ab", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:40 GMT", + "Date": "Thu, 05 Nov 2020 20:52:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "115" + "x-envoy-upstream-service-time": "104" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json index 768003cb34cee..9e4355ba30b5c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5651d1266ad8e541ab6da4851160dd29-2d42126079a8e348-00", + "traceparent": "00-fb199005e0e59a4b82cfadd9f16d4a4e-46c197166d3f944b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ddaaf35e96b9dae8e520d1e25db41ef1", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ef74e705-c7c3-4737-80db-0c4fa2cc6f8a", + "apim-request-id": "00c26263-9a7a-4a26-8b2e-a21a8ae682a0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:33 GMT", + "Date": "Thu, 05 Nov 2020 20:52:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "107" + "x-envoy-upstream-service-time": "102" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json index 40b1d23f5018a..c9b219a823f6a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bbc149468f92e44ca2e3e80bed9ef03a-ed9ea28021cfa14a-00", + "traceparent": "00-1c1440216fd1194fbb0572b416de18f1-6436a937fd7f7a45-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a461009a7ec465a3d8be1a54c58e3575", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2c38a868-3a30-4fae-9095-ffa60febbd44", + "apim-request-id": "95478309-75af-4777-8b05-cd14d41af5ec", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:40 GMT", + "Date": "Thu, 05 Nov 2020 20:52:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "115" + "x-envoy-upstream-service-time": "109" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json index 2b795e3c9610c..6868c49f96b67 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8cfb7dbbfdc23843a951fe8e82527835-ea3ad082a40f884d-00", + "traceparent": "00-6145cf4ebaeb6c4abdd1e3319a5b97f6-abf07e4de4b3e040-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f4f79420d55186c560e783cd65904498", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b45275a0-0d11-4e2b-bf84-08950a5326a2", + "apim-request-id": "8a6a5f12-2f5a-45d0-8f94-7c45e5ce654f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:33 GMT", + "Date": "Thu, 05 Nov 2020 20:52:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "108" + "x-envoy-upstream-service-time": "98" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json index aa8113e386045..4b562c08cdc05 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fa3db5637b77984d8fd02ab191c3c8c2-ef607ceff4d4af41-00", + "traceparent": "00-38e204419cea6b419c053f61f46b68b8-4bf5ae0736185b4d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a82300e8850457b9e1ddd84e5e66ebf5", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "74e3e542-cc4e-401a-9d0e-224fab7b3357", + "apim-request-id": "8ec999d1-e42b-461c-887a-5bbc662176a4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:40 GMT", + "Date": "Thu, 05 Nov 2020 20:52:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "104" + "x-envoy-upstream-service-time": "105" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json index d100bad7fba2c..4d073d8187cc4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json @@ -11,9 +11,9 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f8c88810eff4574bbe90df99f4c5a563-fbcd34fe07fb2a49-00", + "traceparent": "00-2a8514c88c5ca840adfa296845587160-f95e94e095aa1e45-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d0c9faccbe22f6229408f2811c507283", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "efed8094-1ed7-4a55-9403-ea1221573c83", + "apim-request-id": "26733d6a-c4d4-4b25-882e-bc52d8f5d081", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:33 GMT", + "Date": "Thu, 05 Nov 2020 20:52:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "115" + "x-envoy-upstream-service-time": "103" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json index bbccd7bcdad9e..bf49b52e9e680 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9e6f31c83d855747bda5936c17b9675e-b2087a50c4b41c47-00", + "traceparent": "00-70fd27ef8ec82b428a660f17bd40a82c-62b57eb89a338e4d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "99f36dc03d5b69cad15ff682fb68e8a9", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e1c8bc3d-33d9-4968-b88e-b90bd98faf59", + "apim-request-id": "1d132eab-32f1-4872-813f-43f8370e74f7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:40 GMT", + "Date": "Thu, 05 Nov 2020 20:52:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "127" + "x-envoy-upstream-service-time": "106" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json index 3533e06b05a20..ed3e08e0145b2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c8712397243098408c48278c636153be-5506a31acbd9f349-00", + "traceparent": "00-d0b592284c63044787629d7eb7155893-5712efd55bde0445-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ea37c4c5b43ade506c055e9d1167082c", @@ -35,10 +35,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6ca4511a-c87e-40dc-a28c-79cf0fc35a9e", + "apim-request-id": "54b9d055-0b04-4cfe-bd33-2be8971b194c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:34 GMT", + "Date": "Thu, 05 Nov 2020 20:52:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json index 6b236f6cddf81..fa692bd858cc7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5619baa93138fb4684bc63c742d42224-b90ca9305e2e6640-00", + "traceparent": "00-47791658edaf334f8d9505e7dad881e0-82b7fc44e249814b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d297a709781eea07c58dac26eba5fefd", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "58dac5d4-7556-45ff-9ddd-c649ec82e140", + "apim-request-id": "3932d9ea-9d6d-48f2-b017-341b13248983", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:41 GMT", + "Date": "Thu, 05 Nov 2020 20:52:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "116" + "x-envoy-upstream-service-time": "108" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json index 6c35ce35fbc0c..2aaa26e7371dd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ae15a2a8d59c344fbd62a704d1ad74ca-e26225a90d2b3444-00", + "traceparent": "00-4563ad4775c0b54eb8b975087f203b10-a8385dc01853f64e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b93a282865c5e574aa1703755dff0595", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "23b63799-2cd4-49c4-be10-2224bd86584c", + "apim-request-id": "8cb3ee89-4721-4bdc-a79b-15a6e0aec7d4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:34 GMT", + "Date": "Thu, 05 Nov 2020 20:52:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "117" + "x-envoy-upstream-service-time": "105" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json index 2219cbcd25168..608e3bb7bbe11 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b7ec6da0db2a1a47b07437006b552f0d-5a755fb10557e947-00", + "traceparent": "00-7fd815f271d93b40ab777d5defc65c81-2a354505abb9f74d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "896aa869bee9e15710e9b281353ff7e1", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fd616cc3-95b5-422c-8663-3638fac2879e", + "apim-request-id": "55ec3982-ed46-4961-a388-959d4c6b9b7f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:41 GMT", + "Date": "Thu, 05 Nov 2020 20:52:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "123" + "x-envoy-upstream-service-time": "109" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json index 529d0b740ffac..47c14492531bf 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json @@ -11,9 +11,9 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bc47ae91a03c3d49a3f6de85901c4964-9130011d92cb334f-00", + "traceparent": "00-0c7a1935d7de4b408998fa00e055b00b-3725a2183c00554b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f4c1d2e666ddf215fcefdfedc5dd71c8", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "31c19daa-eb06-4dca-bca2-3072f91b59b3", + "apim-request-id": "a3187b35-47e5-4c0a-9af3-136a28a0a7ea", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:34 GMT", + "Date": "Thu, 05 Nov 2020 20:52:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "388" + "x-envoy-upstream-service-time": "122" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json index cddbb546e1080..9336dd8ac0bf2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a9eb59c616049b448f28ae738e384efd-b1a9a13e87ab3347-00", + "traceparent": "00-80c8e904e762f64bad1227f69eaa38b7-5c9fa8cdb9ae6540-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "26baa46075d446ba158f6fd6eeae447a", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3269fdc6-2ade-4398-976b-f6557816cadc", + "apim-request-id": "56421070-89b6-478a-81d0-9f92291f9754", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:41 GMT", + "Date": "Thu, 05 Nov 2020 20:52:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "143" + "x-envoy-upstream-service-time": "116" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json index d9f5c1eb1da1d..6ecc8e2665fa4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json @@ -11,9 +11,9 @@ "Content-Length": "207", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cd3a40c2d5aa38459a0c846aca468f64-643687557017a24a-00", + "traceparent": "00-0c1b03e73a26264c94c8e46602bd24f9-9dec0fa6d968fc42-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "381e2b63f2088d45202cae7fd25e5042", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b29740eb-1c8f-42a1-9e5e-ae80ac5d3581", + "apim-request-id": "71e9dabb-cd1d-4436-b212-22416b688620", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:35 GMT", + "Date": "Thu, 05 Nov 2020 20:52:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "120" + "x-envoy-upstream-service-time": "117" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json index b76aea569a2dc..a6b46320d34d7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "207", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ce591cb4e641e04785ff946692acbe70-62504df15470f049-00", + "traceparent": "00-a4c3dc90a6cec74197f8f3f0d99a084d-2aae3b2827c0e34e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "29ac615e7a25f0506bd8c86ac7133e14", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "15882727-d374-4c21-bc53-0b280d140b6d", + "apim-request-id": "87b1e812-1ccc-402d-9290-64622da649b0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:41 GMT", + "Date": "Thu, 05 Nov 2020 20:52:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "125" + "x-envoy-upstream-service-time": "105" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json index 3ae4842afd56d..d59331c8e0e9a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json @@ -11,9 +11,9 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c018213fadb4844eb46fe611e98c34cf-9fefbf5122fd9248-00", + "traceparent": "00-b8eb6e000b45ad4d88b3877cc2b493d2-21123cf28e3eac4a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e97c715478efd2b509099d562415356f", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "ef5857cd-f0de-451e-bd43-7d8530a3ee28", + "apim-request-id": "0ac5cda0-44f9-4563-8bc0-9461420908c6", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:26:35 GMT", + "Date": "Thu, 05 Nov 2020 20:52:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json index afdfda68b0db1..ad8ff7f42a40e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8354aa33c6147b42acbcc045e7a07957-80680e17acb05a4b-00", + "traceparent": "00-c73cf1597a7046409be42a05f7d0bccd-3beee5977d2be14c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7d28785fafea6a705989dd511c352058", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "b1929088-36be-4b0c-b834-72f7ccf64df8", + "apim-request-id": "d342ea74-4b7f-44a7-b08d-9b0ca2129dfc", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:26:42 GMT", + "Date": "Thu, 05 Nov 2020 20:52:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json index 925491cb51c1b..b6acaca59e827 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json @@ -11,9 +11,9 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2b6d14c196d89040855e21c8855cda54-766a48a1767cdc4e-00", + "traceparent": "00-d8d36d1881c5a949bcef5fcf5da6aec3-795140ce27d6f54f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a82047bc1e56521f19fee095619725e3", @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "15a7a12d-866d-4f68-9eb6-c7e537a0bcaa", + "apim-request-id": "1761e869-1998-4173-8653-df9f76bc1682", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:26:35 GMT", + "Date": "Thu, 05 Nov 2020 20:52:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json index 699cb75e56e50..3df040c5fac24 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-aa888f50590a2242834d4965c4379022-b7f9fbf1af62df41-00", + "traceparent": "00-4c1c34a8bf6b8e478730b9e48f654789-1fedac3b2083f247-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e4b5e1c573e3bc3fc5137a6a90633740", @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2feccaf8-ef09-45c1-a90b-9c4644d8320d", + "apim-request-id": "d29171bf-03f3-413a-935e-bdc23d4e903c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:26:42 GMT", + "Date": "Thu, 05 Nov 2020 20:52:24 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": "2" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json index cfc1bd2e46f86..cf079d786f03b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json @@ -11,9 +11,9 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-376019fd9b88f5459f619866c763fe9e-eedaad4017a0c54d-00", + "traceparent": "00-e3023c73a88c4946a2eec48e6b10cfd0-b1e1a23358cbc94a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4bb052b32c66958101e8bfb2d70a96bf", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "30a16aaa-a3a5-4161-9ea1-f4c3e1ad7d4b", + "apim-request-id": "d12177eb-8647-4c7e-bfab-28acad0a0a8d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:35 GMT", + "Date": "Thu, 05 Nov 2020 20:52:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "178" + "x-envoy-upstream-service-time": "118" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json index 807d462ae52ed..4df6577c42207 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-26942abcb4e1094ba1cae4c3c07393f5-fc026f22f8ab3342-00", + "traceparent": "00-6f11270c6096394d8be72cb71339f4c7-57e5c1e209f45e49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "10469efe411909195ef72681bf249b22", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ad0c39b2-7245-4144-bc86-5f367c9d7ee9", + "apim-request-id": "23bc695e-cb5f-4d37-8f3b-bd9661bea6d8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:42 GMT", + "Date": "Thu, 05 Nov 2020 20:52:24 GMT", "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": "109" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json index 9001fe3052df6..6534abcf90acd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cf5d1a49152e894e93328d5b996bc8c7-bd19d583186cb040-00", + "traceparent": "00-8e0977e13674c846a256cbbf8d0baebb-5c5fb6e9f0894246-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "380d3332cec3ce7a5b0d21c20c2f8b8d", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d1350550-34a2-46b2-b143-0d4bd37a8973", + "apim-request-id": "7c9ebf50-2b3c-47a0-a0f2-105e16c69586", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:36 GMT", + "Date": "Thu, 05 Nov 2020 20:52:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "153" + "x-envoy-upstream-service-time": "126" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json index 566121cf95e92..6f23234152f55 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-283cc9f81f355b489a3a6971aebe5e3a-bd2c7ed94e707944-00", + "traceparent": "00-72e5a17c21daa047883c0728bc36fd8c-44013c6127852245-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f794f0733bb3c43d680189f109278930", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a40a184b-b04b-4547-8596-6ec812cf1460", + "apim-request-id": "4afcfae0-0087-4265-9825-3163cb80704e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:42 GMT", + "Date": "Thu, 05 Nov 2020 20:52:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "108" + "x-envoy-upstream-service-time": "103" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json index f55680df241a0..76ec6ad2cd4db 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json @@ -11,9 +11,9 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7643d11364a93048aa094debb4dc520e-598fdcfc96c5b44e-00", + "traceparent": "00-ff12c7f22941624d93f2b1fba0acd158-1940997b2b25364d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4e5bdbe5820d38723d195b24082e286d", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "42ebcfc0-0b15-4e48-a746-ebe10f1383a9", + "apim-request-id": "1c533bdc-0fe4-48f7-b80b-013ac0483473", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:36 GMT", + "Date": "Thu, 05 Nov 2020 20:52:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "194" + "x-envoy-upstream-service-time": "105" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json index b8c39d0b4e35b..aa87ffb007bcf 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6ef801a7b71dbc409c29841b1f5a74ee-4061d2159b11ff42-00", + "traceparent": "00-bbfc1087f0a3534584c3095e74d47102-2ea97ba0ae2e0b44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "03ba29d245db7d4660e70538d783a159", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e0b57cd7-8d8a-4e91-84a6-56ac285b65ee", + "apim-request-id": "5ce5a1a9-f30c-4aae-b205-6c4ccc391768", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:43 GMT", + "Date": "Thu, 05 Nov 2020 20:52:25 GMT", "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": "105" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json index ddc4140071e93..9ace5f98b7e71 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json @@ -11,9 +11,9 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-95ab735acec8e64ba66ea7961bffa4bc-6a5910d08fb39d47-00", + "traceparent": "00-e2df4e09b9134a4b8fa7d185b3fe6cbd-f19e763e2e1fe147-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1cd519dfbccdba31b1f719f550932df6", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7a56d706-1580-4aba-9749-491ea37060e6", + "apim-request-id": "7a661328-22a5-42a5-b64f-5950a13fdd99", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:36 GMT", + "Date": "Thu, 05 Nov 2020 20:52:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "101" + "x-envoy-upstream-service-time": "107" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json index 6b5e1412615c6..a0e6be20b5000 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-89d88e445aca0149a41848164f0250d3-14ef364131bafd4d-00", + "traceparent": "00-713dc9504639274caf7625d609427d9c-66c0200192feab41-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e4628ff9d75e35fa30a2a74d75b5d054", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "97eff2ab-d23a-4425-9857-7de46b5f91b2", + "apim-request-id": "dea736c6-54d0-443e-bf38-bd6b364afc19", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:43 GMT", + "Date": "Thu, 05 Nov 2020 20:52:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "159" + "x-envoy-upstream-service-time": "101" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json index a504b13079587..c6fe51af20f0f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json @@ -11,9 +11,9 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-43f2a6a9bc6d0e409c311fc2a0bf0c51-2085d6d77b8ecd4f-00", + "traceparent": "00-9c75d21382dc4c4391eb021e893bf547-21a9e0b27b966e40-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0226741a4a3852fb661facf15a20cdfc", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a45d2efc-8e51-4ae0-923a-433d7990e00b", + "apim-request-id": "acac3729-ae9b-494d-9321-9db858bb7c18", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:37 GMT", + "Date": "Thu, 05 Nov 2020 20:52:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "127" + "x-envoy-upstream-service-time": "103" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json index 870e166695c20..f543c54c615a2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4fe3f01c0edc9e459c6fc8e3972594d2-726cf0cc39751a49-00", + "traceparent": "00-ae372ecb2297a841aee39886405f6e81-2c46709ac1889344-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1d19c9bc741aeaae2a3044500760d7de", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1e9a8141-ae51-4b79-9217-c1478bca9128", + "apim-request-id": "adbb4594-c02b-440d-947c-c65cf23d3fc0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:43 GMT", + "Date": "Thu, 05 Nov 2020 20:52:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "126" + "x-envoy-upstream-service-time": "117" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json index 0339ae092f43d..d70ddb68fe5c9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json @@ -11,9 +11,9 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4454c413c62c9349af28321dd75f7381-ff2cb8d3941bb54b-00", + "traceparent": "00-4cc70647ea19fa469941946596e1bf7c-8a98875dc744dd4d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b1c263e328066fc8dce532b649cbfd03", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e35c9b81-61c9-42c8-af82-82b4bd6a94ab", + "apim-request-id": "afb3b813-9d7b-4f99-8102-3e5f1aa61b93", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:37 GMT", + "Date": "Thu, 05 Nov 2020 20:52:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "124" + "x-envoy-upstream-service-time": "100" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json index bae7ba2fa8f29..8137864601159 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-58077726575323428c5f15003c346199-eafe143edd2be447-00", + "traceparent": "00-13de5b3ef96e6c48ba1eebbba5a8234b-ce3db9641c2f9749-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "61e4104888cde5cbe34786063a0401dd", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7b38de61-a0f5-40f8-97cd-609776e53e9f", + "apim-request-id": "fed5ec52-aa22-4328-8a2b-5d38cef01f9b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:43 GMT", + "Date": "Thu, 05 Nov 2020 20:52:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "117" + "x-envoy-upstream-service-time": "98" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json index a362d2cb46371..d82dbb8672df1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json @@ -11,9 +11,9 @@ "Content-Length": "127", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f555faa4a89a5240aca2f70e2ad0c331-f912337c2e6eee4d-00", + "traceparent": "00-86fd16d2e9304f439182d70341e2530a-61e363a7f0cebc49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1e33ed24967d42087f8188a6111ef9b0", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "22a3a1f2-ea41-4098-90ed-95d174623dd7", + "apim-request-id": "51cb12b0-18ea-40ef-bf59-fd6eff1c7ff3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:37 GMT", + "Date": "Thu, 05 Nov 2020 20:52:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "109" + "x-envoy-upstream-service-time": "112" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json index 03d3124c0f2d5..5cedc1c96f088 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json @@ -11,9 +11,9 @@ "Content-Length": "127", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dcb10f5a75f8f54aa4217775f3e07abb-d879afbebad3914d-00", + "traceparent": "00-04dd3001a4254b4cb7a55079bb745598-dc1e4ba39828f240-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "504a9c53bf1eca7814bfce867e01718a", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b8280865-6b3d-407c-b918-72e93e5cea1d", + "apim-request-id": "19ed79ec-26fa-4179-987e-3c08d6f7ecf5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:44 GMT", + "Date": "Thu, 05 Nov 2020 20:52:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "120" + "x-envoy-upstream-service-time": "99" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json index 873374f5a3886..42af203282ccb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json @@ -11,9 +11,9 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b2dc372d823c3b498bdec6fed5b93471-ed7c6a8cd76d5543-00", + "traceparent": "00-9172b9beab08714fb45ce77d7bb86e0e-2fc45035c7b64b41-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "558a7442c3b1c5137141db1dd8ca6858", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e89baeb9-e520-44cb-8dcd-7c91253e7afe", + "apim-request-id": "4ec89203-2e34-44b1-bde1-db3408821aa9", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:37 GMT", + "Date": "Thu, 05 Nov 2020 20:52:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "112" + "x-envoy-upstream-service-time": "101" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json index a68d22a1b72e8..da876f6730b9c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json @@ -11,9 +11,9 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0bfd1977bd046a469354882515245b62-59a2cba3d6083141-00", + "traceparent": "00-e908513919779842862fdc23a61be2e4-2e4d99673f37ad4e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f6867f38d810d57a89dad763eab07a05", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8e1c4797-f543-49a7-b4e5-59a0b516bd26", + "apim-request-id": "338655a4-70d6-47c8-bbca-d84d3b8dd15c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:44 GMT", + "Date": "Thu, 05 Nov 2020 20:52:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "114" + "x-envoy-upstream-service-time": "102" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json index d9d5f79190149..f756d2cf1204c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json @@ -11,9 +11,9 @@ "Content-Length": "80", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b97f49f6cc691d47abf709b5915b072f-5c27ea9084c1aa4c-00", + "traceparent": "00-3c08aa66d4e82047b5ebb1de4246e68c-9101449b08e1e548-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8d0590d28394353aadd5df7e697ac312", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d2033af6-cd16-4600-b915-519d74cce9b4", + "apim-request-id": "a8e1bae4-2110-4f4d-9a20-5e22a8575ae4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:38 GMT", + "Date": "Thu, 05 Nov 2020 20:52:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "124" + "x-envoy-upstream-service-time": "102" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json index fd939ae95111f..1ee44a7af4067 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json @@ -11,9 +11,9 @@ "Content-Length": "80", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bec37934f528d84ebe26b6c22b72364d-1b30ad6261d6fe4e-00", + "traceparent": "00-b8c66b03599c0f4e9da4ff7003dff0d2-e735283d9ce4974f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "94ab183ce7dcf7c7f3beeb119ae08867", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9eb7ddba-6d6b-4ef0-8611-dcb64053f0ec", + "apim-request-id": "c1b7b559-3e20-4403-860a-aaf761a7d6fc", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:44 GMT", + "Date": "Thu, 05 Nov 2020 20:52:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "100" + "x-envoy-upstream-service-time": "96" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json index ecf5afcb1e501..9533625a13ab6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json @@ -11,9 +11,9 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-257094ae735b90468c057b0e715bb868-c50fbc5cd002e84d-00", + "traceparent": "00-797f6a50ea34d64188cfa066a122b55a-c5fad9c4847b7748-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5005f5e8a08b47218215f19574b370f6", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5b19b256-fd27-43e3-93ba-d4b1930928fb", + "apim-request-id": "95320e53-cfae-47cc-8f0d-f21f0edcaeab", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Wed, 04 Nov 2020 22:26:44 GMT", + "Date": "Thu, 05 Nov 2020 20:52:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json index 613da477b79b3..937463e2a8396 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-708ebb9860ebe74388b57b3044b25d60-c370eca86d72de42-00", + "traceparent": "00-f29e4592e1390e418f704526b7ed9fa3-8c6e9d677d598540-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3574863b78b3d4b99962ee1a8b7bbd89", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bc62a513-e60b-4f66-b595-e8ea2566f05a", + "apim-request-id": "43bf9565-d18a-4417-8f9d-e771e505ae2a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Wed, 04 Nov 2020 22:26:47 GMT", + "Date": "Thu, 05 Nov 2020 20:52:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json index 4d184b02b2a4e..3c2cbf0333527 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8a66d4132051db4aac9410a9b7a4f41f-694963f42581cd4c-00", + "traceparent": "00-db77a7d140164644ba32bac3740de44a-44b0e20cb5d1564a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "738db85ac016be284349434968e4adff", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e48dd82c-62dc-469b-91e3-ff2df65c91a2", + "apim-request-id": "313813cc-cad8-47a1-a2f9-6b0f56fa500d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Wed, 04 Nov 2020 22:26:44 GMT", + "Date": "Thu, 05 Nov 2020 20:52:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json index 12c4b59c646e8..c1b2ce0e22644 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-da301d45ba0bd142aad7d8b8dd3e03e4-c526c5021a472442-00", + "traceparent": "00-9b859f5fe6375b4f80e21cad06a55816-c2fcc16725b87f4d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6246079b8393935bca52b813124b2ad7", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9ec43df9-1ed1-4e04-8d68-d3b8540efdb8", + "apim-request-id": "ea6c26e6-233b-44f5-ad2e-eefe4a2037b7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Wed, 04 Nov 2020 22:26:47 GMT", + "Date": "Thu, 05 Nov 2020 20:52:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json index 9756d9acca316..1003273947cc4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json @@ -11,9 +11,9 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d1a78e622c615e41a739312b88626bb3-f63850effd06704c-00", + "traceparent": "00-aacc265c5315824889c3c85e93d77dfc-937859af89c96f4c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9ed49d935379ea824d7c2153a1e6e6e4", @@ -45,14 +45,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "897de6f2-3ab0-4b55-8da7-93f6da964af0", + "apim-request-id": "00ee01e6-ae2d-44da-82bc-92ab811283ff", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Wed, 04 Nov 2020 22:26:46 GMT", + "Date": "Thu, 05 Nov 2020 20:52:27 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": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json index b31b413b571dd..7b9ed3d402476 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-eeb9c778a4440a46820ead0a98650f5a-c864d7210498624f-00", + "traceparent": "00-9d0cb7b12590a94589cee05d0f7ac466-04cec48df9541e4a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "da5f41d41140dce5b95983493bb999e3", @@ -45,14 +45,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b88b4014-ad1f-4f42-b96e-65f63edac629", + "apim-request-id": "d3c89170-1ae6-4337-a6cd-cfa63b5fb1e0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Wed, 04 Nov 2020 22:26:48 GMT", + "Date": "Thu, 05 Nov 2020 20:52:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json index 3b052407c889d..9b21326d47ad7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json @@ -11,9 +11,9 @@ "Content-Length": "156", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-929cccfa62357d40a099a513f358c5a3-0630e7c41ca45c4b-00", + "traceparent": "00-91f6c04591571b41a7c8802f12041e9d-506df9ffb4244948-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3ce40d8d4db949068b12a56808d1cfa5", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9974ff70-5b69-4955-b1d6-2970584cab9f", + "apim-request-id": "8ab98dbf-2076-4d32-b910-012317ede59f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:46 GMT", + "Date": "Thu, 05 Nov 2020 20:52:27 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": "6" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json index e255a5ce5edad..0db915001f1b8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "156", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bd0e9d4b01d09441a2c3b71d640497de-b5ff6d4be5616143-00", + "traceparent": "00-918794844f60144ca31b98502cb34754-073de0cf2367f347-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "51807d44b190171f3639086e14582723", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "775cb6aa-97d9-4851-a448-7e4737ce2da8", + "apim-request-id": "c1b9e680-1e13-4d5b-a45b-cf3ae4895ae0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:48 GMT", + "Date": "Thu, 05 Nov 2020 20:52:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json index 05091a85a44e1..0405515153149 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json @@ -11,9 +11,9 @@ "Content-Length": "67", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7ecf9aa2748364439064e2440b6aa4be-fef1d853219c6a4c-00", + "traceparent": "00-209584acbbcc464cbd179e23b283cdf2-28081364df726343-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1a3b3f53b2eb19e83bb91b78bee10b95", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "984cd53f-6553-4de0-bfa5-bd81d22e6538", + "apim-request-id": "a2823bcd-48fe-4537-b70a-2a366f1eceb3", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:26:46 GMT", + "Date": "Thu, 05 Nov 2020 20:52:27 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": "5" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json index 9c62462e44774..5648816686d65 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "67", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5dc61821167dab478dfe2d527f281d7b-4c29a990d8c32f47-00", + "traceparent": "00-53c84eb89bdd7240af7cc47c3e66b0c3-c4f5ad9c992b7640-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b23c80179f571f450cf30413f8966972", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "0da74946-78dd-4f4c-bd90-f2e276d40d51", + "apim-request-id": "0c660e39-5a99-496d-86b5-b2c4c9c91b5a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:26:48 GMT", + "Date": "Thu, 05 Nov 2020 20:52:29 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": "6" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json index d37d0fdf68f44..bd9713eecf3a6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json @@ -11,9 +11,9 @@ "Content-Length": "57", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e1da8e9471a0cf4f9389dee96d882797-e64fef35e86e774d-00", + "traceparent": "00-de123f3d59e0d241a658552673ebfdba-7f5dbcfd7d9f5a44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ed66d74da14036cde144d6235dacd6d3", @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b531d02a-f03a-4124-a3fa-b39e3ddfdd02", + "apim-request-id": "83eaf45e-7f5a-499c-8d15-48d9a20d5372", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:26:46 GMT", + "Date": "Thu, 05 Nov 2020 20:52:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "2" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json index 2f87c87c61fe4..826a5ee04a148 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "57", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-46f1ad6189e7f742a25d9d3c96b5e017-613ee6d79cc48d43-00", + "traceparent": "00-6ec886e52cf20e47888c56f23671bb12-ead25ae82d34bf44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "46af5eece4595e8658920ddb272bdb42", @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "40980d86-04fb-4190-96a9-74039df082eb", + "apim-request-id": "1641ba27-b7ca-4732-835a-011dc2c4159a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:26:48 GMT", + "Date": "Thu, 05 Nov 2020 20:52:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "2" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json index b9b6b44a17f39..f7569d643a125 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fcd9030ca4013c42b4ca5e89a6af196b-e291d8b5a143254a-00", + "traceparent": "00-a0324fec39477947b8ad49150a1af7b8-e4513f2b4003e347-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "acad3cc12aa10a7667d1533045b0a321", @@ -45,14 +45,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e7dd87cc-2306-4a9e-ab91-63736c29ca3e", + "apim-request-id": "1d7c8f1f-f2a3-409f-ae07-a3a6bc48491c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Wed, 04 Nov 2020 22:26:46 GMT", + "Date": "Thu, 05 Nov 2020 20:52:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json index aba41127b9dde..164671078d76b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-68726e988209e140a7ba604f54c52319-667667859a6fe843-00", + "traceparent": "00-52cc847348faa7458e311683b624346b-f5870dc1d3218b4d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "50a7683e77aad92fe53b41b770dfa6fb", @@ -45,14 +45,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ce68d1c5-2cb5-4df4-b5ef-4c1cebdaf762", + "apim-request-id": "938ef710-913b-45f4-a682-56fdf98cede8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Wed, 04 Nov 2020 22:26:48 GMT", + "Date": "Thu, 05 Nov 2020 20:52:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json index 45388526b0d54..711023e5a358c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json @@ -11,9 +11,9 @@ "Content-Length": "82", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a2744eaa8f52aa44be2c0f4c80020281-78c3323834df8f40-00", + "traceparent": "00-33b875938f51a64583f2791f15dc7e33-4e71ad0d097dc74e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7aaab163ed1d982c319bbad40483549a", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2b798158-4e9f-4f1a-9dfb-a124414add4b", + "apim-request-id": "e042aea3-bd79-4b5b-9630-0195083a9673", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:46 GMT", + "Date": "Thu, 05 Nov 2020 20:52:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json index 3e6f7463c7b4c..555e214603207 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "82", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5fb4987a35a8ef46a0d3d193449cb16c-ce45c0217634a748-00", + "traceparent": "00-8e14483d677e874bbb57d84f90334d76-9ddca748444b524c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d4cc6357ff58c85240bd64c6445c1d0f", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "740bd3f7-c0a8-4109-a93d-e2dc3c2d2812", + "apim-request-id": "01acc79b-be73-48ec-abcb-a4a513ccd668", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:48 GMT", + "Date": "Thu, 05 Nov 2020 20:52:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json index 7ec9527ae1891..4b54ae62d61cf 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json @@ -11,9 +11,9 @@ "Content-Length": "95", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d3968d76dca37f4b8c2d9465a48055ba-19a4030219bfba45-00", + "traceparent": "00-a420baf4d4153c4f884b55464d07a9cc-dea89817c625154b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "98a2a27e9082d475805aa932800b5cf6", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "060762d7-9079-471a-8dc1-e7a279bc2032", + "apim-request-id": "d3763c31-1492-4cfa-b57d-744afe8d0857", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:47 GMT", + "Date": "Thu, 05 Nov 2020 20:52:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json index cc5605afc8fa9..5e6c81b8aa02b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "95", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-84c7e10cd2cadb42aded9c6eab6db5c6-7b882f85fc9cee48-00", + "traceparent": "00-26da8c71d27970449bfab9e8c27fa6cf-b1ebb22ea44b374b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f0760fc68cadb07ff1c89a4d1612c056", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4c0911c7-efc0-4be3-b818-dfe16d7c65e2", + "apim-request-id": "c12facf0-f187-48df-9b7e-4c1ec748cf81", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:49 GMT", + "Date": "Thu, 05 Nov 2020 20:52:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json index a7413938885d3..204bc541c5a97 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json @@ -11,9 +11,9 @@ "Content-Length": "101", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6a32e2105780174ca1b7c5db237d72c0-402292d9cda55f48-00", + "traceparent": "00-09cbf756af46cc49bfbd854598ba58ad-5d48e5cf5ba17d49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d6d037d3997433f0d1d408295081d2b0", @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f1836191-17e9-405c-bc3a-4a077cb9e0a3", + "apim-request-id": "a03f0631-39c1-4187-bbe2-d24534fcdd97", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:26:47 GMT", + "Date": "Thu, 05 Nov 2020 20:52: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": "2" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json index 6c928c9786817..e01ab1c6e45ec 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "101", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-22d1cc2ab2ae2a4e973463e1e21a586e-88718408de8a4e49-00", + "traceparent": "00-c07217c4ca389f40bae97604ec39d49b-50984478aa8b5a4e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9d92baec240d7c0e78b80d24d8752359", @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ddba4dbc-5141-4698-97d9-d3c8fe879604", + "apim-request-id": "ad681957-32c5-437f-b4c1-9858401dcf29", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:26:49 GMT", + "Date": "Thu, 05 Nov 2020 20:52:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-envoy-upstream-service-time": "2" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json index 14bf7f81ffe1f..9b443eb226997 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json @@ -11,9 +11,9 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f33556818b2f3d41adcbe035dcfc2499-066b81e215136e45-00", + "traceparent": "00-aa52726efc7e6a49bf39748a35f05f36-883267764a794844-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9cded6f43daa9a1f5be8cb3934e1c44c", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ab2ac609-f235-4ded-91c1-0b80413fbd08", + "apim-request-id": "8b1d1766-f1d8-481a-9b45-390c4ba28b4f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:47 GMT", + "Date": "Thu, 05 Nov 2020 20:52:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json index 5d1272d231bc4..bbbf857637ecb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2f34fc4d0935924dad44f9823e58b503-ae2c96f3b53c264e-00", + "traceparent": "00-2ac670f010632147925aa64de8ecbd1d-66737df742491e44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6124b40a04621bbacc815e287718638c", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e9344a08-3aac-4415-868c-7a1f08f680d7", + "apim-request-id": "3b7523a8-da87-43c5-95ab-ee9623437c1c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:49 GMT", + "Date": "Thu, 05 Nov 2020 20:52:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json index f09fc1f543279..54fa4ebc60c98 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json @@ -11,9 +11,9 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fe91e37d303fde41a6ba1eeeee95938e-58d6011368045642-00", + "traceparent": "00-825a3500e7639d44913d1bba1b51830b-4d0fe92fe83b9d40-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "dda057b9e217d2ba6e5090c17d8fd607", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6405e369-f1fd-48fe-9a9e-827b18a2dadf", + "apim-request-id": "030699cd-4f05-4146-9bb2-ee81af89e486", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:47 GMT", + "Date": "Thu, 05 Nov 2020 20:52:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json index 5c00cadf50e0e..0fcba5f760268 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-39b179dabde27f46abd245019a8409e7-99c592d95c74594d-00", + "traceparent": "00-abc79db689700a4099e0ce025beca49a-0384610c53d42c4f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bfed051a0d9b7fe81f8b58b8ccb397c0", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "87d08bff-fded-41f4-97a6-25b686e8a344", + "apim-request-id": "99b5ee1c-b70f-4374-b628-40fd8e19f11c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:49 GMT", + "Date": "Thu, 05 Nov 2020 20:52:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json index 80dea957a6738..5ff17cb28b8ba 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json @@ -11,9 +11,9 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-473f7060cf96d74abf13a21ba1fccef4-0ac5231e1e03a746-00", + "traceparent": "00-e146abdc969e2b4ba8069b7f4b5f2fc4-805fb6c4fd7e334f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "632e1038e2d2bd9cdcf3dd442e79c63c", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a6ea83e8-0b69-481b-822e-337ed6de2366", + "apim-request-id": "18d4480e-a20e-430c-977a-d64128817664", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:49 GMT", + "Date": "Thu, 05 Nov 2020 20:52:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json index c102a40986187..11e6bbcc19ea1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-848b5cfed3b41b4190c5b2594624e583-80ec5769d1844f43-00", + "traceparent": "00-10c23a5da8358f4d9582daf4d9634bfc-69328f86be712f44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bb6bf08839909e0e578d5bc1b428bcd2", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bdccca95-35e2-4bf3-9b77-28f6e94fb4ee", + "apim-request-id": "2a4a8f12-2ca6-460f-b6e6-9ae8f8f8ac39", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:51 GMT", + "Date": "Thu, 05 Nov 2020 20:52:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json index d6a7d000469d2..f73ec3d0a8e21 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-40f4238462d33444814a272f5650ad3c-2bf10c6c47945343-00", + "traceparent": "00-c98f881a33ab644984c61ca3ea3986c9-e108948694d9c742-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4dfa2958a1568d79bc14e1b570d63d15", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "59111d6e-eb95-4447-a632-3ddc2d6f53bc", + "apim-request-id": "f39dd8db-ae2a-4e09-8da2-0c00771fa742", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:49 GMT", + "Date": "Thu, 05 Nov 2020 20:52:32 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": "13" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json index bc187d2862340..3ee9595f05fdb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-183c21bbc19990469d0f7deabdfdaf67-63c5837ff934c64c-00", + "traceparent": "00-11022f1553238643bcf49cb7155e3059-b2e0cefa5b7e5243-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f8f1e114d697e804255315d1c7e9b6ab", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a3350a66-66ec-46c6-8e05-07d6b6303706", + "apim-request-id": "c53043b9-01e6-4fd8-b2ad-5c64c4b0dde5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:51 GMT", + "Date": "Thu, 05 Nov 2020 20:52:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json index efd46daf8133c..877e15ffb6fca 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json @@ -11,9 +11,9 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3d964b7a11bf184bbd245a9963e185ae-5d6c77e2f9cfc94d-00", + "traceparent": "00-60d147e79bebb24294cc0992c32286de-e652ffda8bd16242-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f8376358e18a19e0b7e6f893926ac745", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "770a73f2-1f96-4be8-a832-c6c9ac12a771", + "apim-request-id": "541dcafc-07cf-47ec-ab8f-ae345110c140", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:50 GMT", + "Date": "Thu, 05 Nov 2020 20:52:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json index 4fb359be5c220..6ac2d15f33575 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6719bf2f0a77054e85e39847a79dc299-ed0299f8dd4e514f-00", + "traceparent": "00-bde9e390b4711e48bfe8e7e29afd33c8-bc3e91fe8b444941-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "272edb015782fb6dbcae1cc2967deed3", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "36020243-f6ce-42b6-94b4-94c7be92fa66", + "apim-request-id": "1394947e-e684-47e7-b29e-43b23693e50d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:52 GMT", + "Date": "Thu, 05 Nov 2020 20:52:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json index 8e42d64efdce7..2a446f4575d90 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json @@ -11,9 +11,9 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0ccf92d97cfa454890f8f09dc3347849-cb4426da11dfa045-00", + "traceparent": "00-253e9df5d6963e45bb8cc5e07e374847-cf633b1972097a46-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "dd92af13693d6c6d10f5b45092a05fbe", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4db0881d-78ce-4d05-8898-819ecfc7f2b6", + "apim-request-id": "755a1b8d-9a01-43b0-999a-47e264199d37", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:50 GMT", + "Date": "Thu, 05 Nov 2020 20:52:32 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": "17" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json index 2eeba42865fbf..e10720c806561 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-51b0998c28fa6a44b1f828aed97ce715-f7646fe968f7524d-00", + "traceparent": "00-af51b7c98c02a94999a04f173d929a8e-4e47028dccf90a4c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "161fb623980eba163f1211744629e747", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "725b5590-eeb6-4a17-9c8f-e851ab28b44d", + "apim-request-id": "71a0ca2d-3494-40ef-87b9-8edd92931596", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:52 GMT", + "Date": "Thu, 05 Nov 2020 20:52:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json index d51d95012f18e..7618a64f99cc7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json @@ -11,9 +11,9 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-71567cfea8bb614cae05a02cbac39cf0-78423b02eae7c449-00", + "traceparent": "00-37f022d40401c44fab9364d363f19462-ebcb9709748dbc4a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "02233abc1a851f8d7b73c3a9864f0660", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "4615e2b1-3748-4ec0-a2c4-ad4c4940d4c3", + "apim-request-id": "43249c49-255e-4bec-9070-fbd633ee59fe", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:26:50 GMT", + "Date": "Thu, 05 Nov 2020 20:52:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json index 8d253fdbd954a..f2fb564116a29 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-06d4a26d13d34d4eb6fa542620e1b7be-807f9c1761189048-00", + "traceparent": "00-e4b780c116f0bf4eb2694d080ecf3583-10613b68dd86b641-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d3ffef96a22198e4e5a15a93f55c6a25", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "4c0406b1-570e-4aca-883f-8e2a5e1bcc21", + "apim-request-id": "27cde3b5-2017-46eb-a3cf-040f20a2060c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:26:52 GMT", + "Date": "Thu, 05 Nov 2020 20:52:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json index 318188ebd427d..d76f3a9f527e0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json @@ -11,9 +11,9 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-26f0f0a4105e064a984abc57fd787b98-a9b9997d87013e44-00", + "traceparent": "00-e8a0dcfc31e60844bbcc4cbf3771d2aa-dea8989867738b49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5bf1e93674612a2cd70f69188e2d39f7", @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e01a6f7a-e7bd-49d3-a07b-c64f7b0b32c5", + "apim-request-id": "941edf35-c3f4-4133-af5b-c1d280d54283", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:26:50 GMT", + "Date": "Thu, 05 Nov 2020 20:52:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json index 871cff89801a9..8303a7350b100 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-85cf941fab330649beb19c30d2734ec2-46e3d966c914e848-00", + "traceparent": "00-d8c6bf3974e8aa4e97ed1818a199c62d-5e8999a851ac6b41-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5dbd36794559c388c50dd26e725f8f67", @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e8c68291-19da-42d5-ac5c-329ad77bcc30", + "apim-request-id": "2bbb6af0-3ae6-4d47-bf8a-9cc336b32f7b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:26:52 GMT", + "Date": "Thu, 05 Nov 2020 20:52:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "2" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json index 7d98702cbe450..f04840f93a85a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-602eaf9992653a4f931e3a2d5d19f496-b52d4fd527d31f40-00", + "traceparent": "00-95abb3c0412a314296b22cbc202ca5d3-4c69aff5afbeff43-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "481340828d769a0d6f19ecfe6b0d9666", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2061b3da-fcd6-4c1e-a755-aeb0d53fa0d6", + "apim-request-id": "d8e4e4b0-db93-4cad-9b51-d397a613f347", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:50 GMT", + "Date": "Thu, 05 Nov 2020 20:52:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json index 402bf7f822fb6..27cf77f54381d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-594c8b0dfccd6a44859971be0de96e62-e28d3e9d58bd594e-00", + "traceparent": "00-6f4f8b33f918a34590bd0d6b4f042bf3-a2c453ea33bc2e42-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fcabdefd3d51a89852601fc0d61f3468", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3dd08da5-be25-408a-8f8c-64c3cb351827", + "apim-request-id": "3efac656-1125-4d37-a491-88d87959f826", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:52 GMT", + "Date": "Thu, 05 Nov 2020 20:52:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json index 8b12bc58e9ce1..1477c0a81fbb5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json @@ -11,9 +11,9 @@ "Content-Length": "92", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-554d544849a0d2458b1c9c2a273ed818-f02db9b3d7635344-00", + "traceparent": "00-a41015ebd158b4458517434ceb999003-1a0b930ce168bc4a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b86575e1b38857965c8495535ac2b899", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a0a21526-2706-45b9-a1ab-2cea1feabb1d", + "apim-request-id": "2e2e4e3f-5db5-4dd4-8dcf-a5ad7b435cf4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:51 GMT", + "Date": "Thu, 05 Nov 2020 20:52:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json index 7645a783755fd..f55554fb7222b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "92", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-683a1ec597e4524fbc7a9b4c2b64d315-5d6cb595854bbe43-00", + "traceparent": "00-4e517e15ec9a49408c8454f1c1465fc5-4a936a42cd330c4e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f80f56a1c735d323972d5c2c674aed06", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "de4cfda3-f4d7-4bb3-b4be-0ab83f444234", + "apim-request-id": "73ffd334-87ca-49e4-8562-61035b614e97", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:52 GMT", + "Date": "Thu, 05 Nov 2020 20:52:34 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": "10" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json index 9f848cf0afe1e..b31bcd30d5a46 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json @@ -11,9 +11,9 @@ "Content-Length": "88", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3b49668271b195459e443ead8014aa22-c5baa858f8658841-00", + "traceparent": "00-a67aaa1482836b4a9ad3a60ad37ca901-cde43ccd50b0b94c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fee09dae9a1670151c1a3a802afd3e61", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e46ce839-e697-44f7-9344-73c989e169bb", + "apim-request-id": "55ed9eda-6345-49c5-bbf5-98a4f2f77e32", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:51 GMT", + "Date": "Thu, 05 Nov 2020 20:52:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json index 21f7dace69932..a4c570207d981 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "88", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1305bf3da4ae5e408ad0b9a992b2351d-4cf127e0a10c264f-00", + "traceparent": "00-a08f9c31394a8a4086b4cd6328868974-2e87db93e308e74b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3bfc775f82d23a381e7a3b00a0305c6c", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e89d33e4-2cd3-400b-8e73-bc0f12ace1e7", + "apim-request-id": "e45db815-17dc-4acc-ba4e-dcdb63e69816", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:53 GMT", + "Date": "Thu, 05 Nov 2020 20:52:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json index b45b656a8d9e6..77603fddf6bc7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json @@ -11,9 +11,9 @@ "Content-Length": "180", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9f5029cbd2997842810053d5e9f4aa9b-917cdb0023a4b14f-00", + "traceparent": "00-9c7cecbbd2379d408882f5cdb10c0539-64cc681bce743844-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7a99e78b28bbdc34334c788be87edcb8", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "db554528-11fc-41e5-a3fa-6ed8698237e3", + "apim-request-id": "b96f6b70-3f74-435a-b1fb-3c9c98f85573", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:51 GMT", + "Date": "Thu, 05 Nov 2020 20:52:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "67" + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json index c47d05bf6aa27..dff7036481530 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "180", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-14c8af5e013903409e75b8d2bd60a454-94defbc1e349da44-00", + "traceparent": "00-c700da8b3cfd174aa196daef33958724-947bd7db3e55f44e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d687a16b6a26ea445556f8b3c125785e", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3414e0db-84d5-4d43-9556-c4ec78afa085", + "apim-request-id": "0c6a66e1-7fea-4008-a6bd-416990f12cff", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:26:53 GMT", + "Date": "Thu, 05 Nov 2020 20:52:35 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": "12" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json index 7290f7a817cd6..e6366b10ce456 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json @@ -11,9 +11,9 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bd29d9a207052047b4f41ff437c22288-a9b5aab5e4505b44-00", + "traceparent": "00-940544e564b7bf4190a8b2e87afa34c1-77e265e74ee83547-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "73b99494ac5a2b6a48730fa6d4bda24b", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "29fbc97b-7f91-42fb-a9ad-ad76c23149cb", + "apim-request-id": "63fda960-99f0-47f8-a935-d37a1b4fa5b3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:55 GMT", + "Date": "Thu, 05 Nov 2020 20:52:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "834" + "x-envoy-upstream-service-time": "93" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json index 01893de494d08..7f24666e45023 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-385205625e6a7e46886436a0deff8b15-10b186de4f73104f-00", + "traceparent": "00-314e39fb038d5d45a1a09a4e0312a365-988a3139b9f0e94d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d2ffe8a9cd41c6a7f7eddf3ba0def75e", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cddad800-1888-44a4-b828-0c78e10c37b8", + "apim-request-id": "1ab7c0cd-eac7-4e5f-9af5-8c1b7509d13c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:27:05 GMT", + "Date": "Thu, 05 Nov 2020 20:52:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "956" + "x-envoy-upstream-service-time": "94" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json index c1fc810e5824d..ba66193a4fea7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7aabcfe10b016b47899be3ad48401013-97ced3fe09e05b4d-00", + "traceparent": "00-3f22ac54b619db449de86aefacd09157-600d62ad2b35ac42-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "67616e684f8b043d1e0c71e939770f42", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3e537f92-2e3f-4e90-9a6d-cd5a02cbc5f0", + "apim-request-id": "05be6208-88e1-47ef-a98c-bd7859d9f61a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:55 GMT", + "Date": "Thu, 05 Nov 2020 20:52:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "765" + "x-envoy-upstream-service-time": "107" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json index 0b0a659920486..c41ff7bba3082 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-303859cc24702a49bb9ec865c25a6046-8e11e12cdcd53048-00", + "traceparent": "00-f3bb0da34ab74b4a9686f3748570af7b-2748278f74e3144c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3d6191fdfe339ad3e9a9a23dfab389e2", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "628ac57e-6d79-41b8-bb2c-08153d69e9ab", + "apim-request-id": "40e23821-811f-4989-8bbe-1091042955a3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:27:07 GMT", + "Date": "Thu, 05 Nov 2020 20:52:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1373" + "x-envoy-upstream-service-time": "88" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json index 0e48ea2d641d5..38eff3b9e8171 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json @@ -11,9 +11,9 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e5a60413b66d644d91277acccf98e914-2e876fcea48e8f4e-00", + "traceparent": "00-e6ac6e83f728f84ea503d583e0395e71-0b48169f38f36041-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c2e6195c0f4c89c31e4ed8101a9fceeb", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "de4ad2e8-fc0e-42f8-ae9f-f2ad3f508ef6", + "apim-request-id": "70c96808-11b7-4960-81de-53da99359ac0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:26:57 GMT", + "Date": "Thu, 05 Nov 2020 20:52:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1237" + "x-envoy-upstream-service-time": "90" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json index 3fb0a1c1a35e0..dc284d6bfd549 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-57218a28ca3a9e4c98710de67fa3e478-c170898b18d6614a-00", + "traceparent": "00-32d64a233e330f4ba3a2728644d1baef-4746410d6cafa24d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "74826ca03adf5e0230955bc11a73f253", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "127bad42-0ec2-48f9-907b-a6c099f42ebe", + "apim-request-id": "2e956773-2960-473d-9606-c0c57ea49185", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:27:11 GMT", + "Date": "Thu, 05 Nov 2020 20:52:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2777" + "x-envoy-upstream-service-time": "74" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json index f6983a47ca4d5..dc57debe6b6d6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json @@ -11,9 +11,9 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c5288b35b5fde6489a1e619456f221d4-da3505429b21d547-00", + "traceparent": "00-629efe1753096a46a83eef558830232b-34bde903ab1da644-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e1ab51bf64c496574b45aba2614e8e70", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2f8544bd-23b0-4faa-be99-75e236c5fc48", + "apim-request-id": "9d96ce5c-baba-40f2-b419-6e8afbfc604f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:27:00 GMT", + "Date": "Thu, 05 Nov 2020 20:52:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2563" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json index b55cfdff312c2..77e7139ae609c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-56d2ad5cf6ac0e4d8e31d85c81a0c078-a8f5e6244724094e-00", + "traceparent": "00-da3d063f2777314788a63139d29be34c-503633136385974b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d8b08f95484a0406f97f2f7420372c35", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "499203a0-355c-4a1e-9652-a912f64bd547", + "apim-request-id": "24414548-dfb2-4303-9c2d-f69a1ca7311d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:27:12 GMT", + "Date": "Thu, 05 Nov 2020 20:52:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1129" + "x-envoy-upstream-service-time": "103" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json index da0c88c270a88..e92ed7f31a325 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json @@ -11,9 +11,9 @@ "Content-Length": "297", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e0a7bb38a38ac642a3efee256c14723b-6d557adb0684eb41-00", + "traceparent": "00-65b6ed525580174b929bce1799458062-75a83a2a8ebbc744-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a8ae17c802a6c3ea068b7f13c73b934a", @@ -55,13 +55,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "10198bae-1cd1-4f19-aca7-ab645e483aae", + "apim-request-id": "dc581ca5-0c56-4d00-ad86-7db8096b59c0", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:00 GMT", + "Date": "Thu, 05 Nov 2020 20:52:36 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": "4" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json index 3e223ae184d47..415f28a440770 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json @@ -11,9 +11,9 @@ "Content-Length": "297", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-12a8da2333f59d439503218c450a0f73-cdee7ff8441cee4c-00", + "traceparent": "00-13e4218b5afb4c42b9cac8da389d5892-bb842ac5b89bc841-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "28b544e5b9a5cf3535ddef0fb0fd1d43", @@ -55,13 +55,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "db25c04a-8854-415f-9794-806251c1c4a9", + "apim-request-id": "915cb5f9-bd14-458a-90d9-25d533f6964c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:12 GMT", + "Date": "Thu, 05 Nov 2020 20:52:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json index 15f3e06426dc5..32de1f4c466b6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json @@ -11,9 +11,9 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-705fe3f3b84e88408e731aacd6d205f0-104effaa8c59f341-00", + "traceparent": "00-52c9123c4fb8784eb4dad58d5a82a55a-9add413ca1bdcf48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0394cc79836b8e2a0617730333d293ff", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "4680f807-389d-4aa8-a609-b2444fa37a61", + "apim-request-id": "58b1876d-e7c2-46e7-b9b4-767251e121a9", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:00 GMT", + "Date": "Thu, 05 Nov 2020 20:52:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json index 90b034736069f..928c71179acba 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-403bf1a3e699d94aa93b51bba9203642-02617aabab62b74a-00", + "traceparent": "00-1e276d5edff42a47b2ad8fc0f3832497-82de019153256b4c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d2a606a042fa292271e9e0fd82e50d07", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "435afe92-3033-49b0-9039-fb59d9bc92cc", + "apim-request-id": "5c7a4345-b5c1-4e35-b1aa-619cfc4fc034", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:12 GMT", + "Date": "Thu, 05 Nov 2020 20:52:38 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": "5" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json index 9530775fef750..943f32f923275 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json @@ -11,9 +11,9 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e8874481e5cb814b9d6b67cd6c548cc7-a7c2b7f9b2771b43-00", + "traceparent": "00-4e0bd4e363ff4a4c96bf0a91508c800a-348e0845f9b0a447-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "143a14bc880cd41cfe9c98287e990fb6", @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "75d48ada-96aa-4aff-8d22-02d582e80787", + "apim-request-id": "7776d6b6-5972-4ded-8e87-dbd7c21620ef", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:00 GMT", + "Date": "Thu, 05 Nov 2020 20:52:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json index 12b745fd3c366..f03701b11dc72 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-af31d93e8d37a949b66fe34a92ca045d-eee91c26509ea14f-00", + "traceparent": "00-422e14675c5292439c7cdc20eb20b887-0ad1a6c23b80c846-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7afea088ca0a22de1ccfe4f56367e3ca", @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9298b9c3-89b6-4e5a-93a7-21f91f7d836b", + "apim-request-id": "f4b40806-9491-43f3-9e89-316113ab19a3", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:12 GMT", + "Date": "Thu, 05 Nov 2020 20:52:39 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": "3" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json index 6529493c9bc83..24d331daae2d2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8763130678f3b244a28dab2f0639e630-d4f1f7137eb91640-00", + "traceparent": "00-e152571ab6e8d24caf7d4fea6ccae0f3-a0c3f9884e68364e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3c7b09ea57a0a9f84c938c05ff06e377", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cbbb25c8-3862-483e-a7b4-e8177232032f", + "apim-request-id": "c63e2478-3841-46b9-862b-167d46e89f08", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:27:01 GMT", + "Date": "Thu, 05 Nov 2020 20:52:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "523" + "x-envoy-upstream-service-time": "76" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json index 339a42e967910..0657620d5945a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6babde88624d5843a67987b9b6534851-9c746e43b6024b44-00", + "traceparent": "00-5ac278a8027ac5428c88176dedc8262c-15f50559031dd244-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c386dc48f454868243af3522ce69cb86", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "521ee171-3b99-4d75-8022-9c419bee2f34", + "apim-request-id": "0fed3255-8366-4354-85ca-27531d56d51c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:27:15 GMT", + "Date": "Thu, 05 Nov 2020 20:52:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2582" + "x-envoy-upstream-service-time": "82" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json index 7af3deca3310b..33eb3aa03790e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json @@ -11,9 +11,9 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fa82abf8bc194646b21cd200fc1741eb-caf880b220a9ab4e-00", + "traceparent": "00-f684e0ea0a076c4fb5931d20dd1675a8-f5dea828777fbb4a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "483a789eb74f49281b818c10882907cc", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e8eafad4-0f5e-4dc6-a1c3-4f67279c97bd", + "apim-request-id": "3211833d-1e07-46de-a602-dfe3e8db42a3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:27:02 GMT", + "Date": "Thu, 05 Nov 2020 20:52:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1105" + "x-envoy-upstream-service-time": "87" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json index 9ead9840b61f7..f797a9db34430 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dc2e52d7d15da44a9d4892b794174e34-13bc595cc380bf47-00", + "traceparent": "00-62b2d812d2736541b3d8edfee4305540-cf2640921a4d4b48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "700659f3fdefe683be90e2b1951eb421", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "027f411d-8f1a-4054-98ab-4f332db2a8b5", + "apim-request-id": "84ab4014-d4a0-443a-a228-df7df9d4738c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:27:16 GMT", + "Date": "Thu, 05 Nov 2020 20:52:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1060" + "x-envoy-upstream-service-time": "76" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json index 3ad626550c170..712ab54072373 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json @@ -11,9 +11,9 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b4c6416ba976e74f818e997f55c8e7f3-6735856770e94f42-00", + "traceparent": "00-46147af0f7aced429e4ab0b35626850a-53fd7c610c4b9d43-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fb4827053b6a1252c3b25be970bef0ff", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "38dd5ab3-6a14-4793-a818-1e9b7591a3de", + "apim-request-id": "08883442-8843-4997-b0d1-abb0a389cde7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:27:03 GMT", + "Date": "Thu, 05 Nov 2020 20:52:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1290" + "x-envoy-upstream-service-time": "62" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json index 1402483e7b1b5..30802a5cec8d0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-658797023476fd4f861a27b88a17e846-eee40bd194cf1144-00", + "traceparent": "00-4878be2faefe564694b1bb15a9396616-abce757581fdbb49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b55082b33b1fe734efdcbb82c7c8a31b", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e1eabb88-511c-4e9e-9f1d-61944c678eea", + "apim-request-id": "5aaee744-2221-425f-89b8-a5e14af3e435", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:27:17 GMT", + "Date": "Thu, 05 Nov 2020 20:52:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "482" + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json index 11809621250d0..fc44ae5ebf5a6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json @@ -11,9 +11,9 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-799ddcf990514341a3f1b8d9a80e827c-6bd4b9e02cb5be46-00", + "traceparent": "00-aa5c76b7f3667f4fafe15e268ddcb6cf-f61e66b47c772e4b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c580665e455e125e80a821d61e9c3c18", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5bade0da-824a-4436-9ad9-997411b1dc68", + "apim-request-id": "595a650d-2256-413e-96f5-ced00e5faf59", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:27:04 GMT", + "Date": "Thu, 05 Nov 2020 20:52:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1175" + "x-envoy-upstream-service-time": "74" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json index 50a6a1a49e508..ae4ed0c3d1c13 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4b9523cdd8def64b81e28b9963382531-e7434ad61cc7a04f-00", + "traceparent": "00-27c4800e5d95294ebf11a6a64e549201-70a655988eb9f443-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3b4b745166e69035ddd947884a09aa87", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "237d6e50-5e0d-45d5-ad26-3c9baa00f706", + "apim-request-id": "f351200c-c760-43bf-966e-a46feda056f5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:27:19 GMT", + "Date": "Thu, 05 Nov 2020 20:52:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1721" + "x-envoy-upstream-service-time": "77" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json index 42e3881cb2c91..d26a810929e3b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9fcbbc843ef79e47b21f37e11354073d-815782cbd038b049-00", + "traceparent": "00-19b7961545c3ac4784d7b06a44b37433-728974f555fe6a45-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1d7c0f7df9a5be46a7bf1d0b574c6095", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "d1c73d93-b075-4b53-a8ff-67de819784dd", - "Date": "Wed, 04 Nov 2020 22:27:19 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/3f58798c-fda1-4062-abe7-232749bfc828", + "apim-request-id": "c43c2a49-1e7a-460e-ad3d-bb8703cfcdab", + "Date": "Thu, 05 Nov 2020 20:52:40 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9a30a1f5-3606-476c-b6ab-d2b889c19c39", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "92" + "x-envoy-upstream-service-time": "89" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/3f58798c-fda1-4062-abe7-232749bfc828?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9a30a1f5-3606-476c-b6ab-d2b889c19c39?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9441bfd5d8fa13e75ab79017f0dbec22", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cace54d1-d08e-4cd8-a6a0-b5f5746bece9", + "apim-request-id": "7cbe6ef7-1cf9-4b71-8dc5-eab91a07507c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:19 GMT", + "Date": "Thu, 05 Nov 2020 20:52:40 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": "29" }, "ResponseBody": { - "jobId": "3f58798c-fda1-4062-abe7-232749bfc828", - "lastUpdateDateTime": "2020-11-04T22:27:19Z", - "createdDateTime": "2020-11-04T22:27:19Z", - "expirationDateTime": "2020-11-05T22:27:19Z", + "jobId": "9a30a1f5-3606-476c-b6ab-d2b889c19c39", + "lastUpdateDateTime": "2020-11-05T20:52:40Z", + "createdDateTime": "2020-11-05T20:52:40Z", + "expirationDateTime": "2020-11-06T20:52:40Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/3f58798c-fda1-4062-abe7-232749bfc828?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9a30a1f5-3606-476c-b6ab-d2b889c19c39?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1f1476b4f8decd8416de12a15e37d599", @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cfcf3176-b505-4bc0-939a-c51763766ef6", + "apim-request-id": "92f978e2-253b-4419-9d34-f031367d176b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:20 GMT", + "Date": "Thu, 05 Nov 2020 20:52:41 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": "6" }, "ResponseBody": { - "jobId": "3f58798c-fda1-4062-abe7-232749bfc828", - "lastUpdateDateTime": "2020-11-04T22:27:19Z", - "createdDateTime": "2020-11-04T22:27:19Z", - "expirationDateTime": "2020-11-05T22:27:19Z", + "jobId": "9a30a1f5-3606-476c-b6ab-d2b889c19c39", + "lastUpdateDateTime": "2020-11-05T20:52:40Z", + "createdDateTime": "2020-11-05T20:52:40Z", + "expirationDateTime": "2020-11-06T20:52:40Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/3f58798c-fda1-4062-abe7-232749bfc828?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9a30a1f5-3606-476c-b6ab-d2b889c19c39?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -127,7 +127,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9fb8c34e36bba5c72869c2ed682ecdcc", @@ -136,55 +136,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "af416317-e7ce-406d-8e01-ffbdcbd3469d", + "apim-request-id": "602dd612-07a2-4a66-a4ed-5b23bf478144", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:22 GMT", + "Date": "Thu, 05 Nov 2020 20:52:42 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": "48" }, "ResponseBody": { - "jobId": "3f58798c-fda1-4062-abe7-232749bfc828", - "lastUpdateDateTime": "2020-11-04T22:27:22Z", - "createdDateTime": "2020-11-04T22:27:19Z", - "expirationDateTime": "2020-11-05T22:27:19Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/3f58798c-fda1-4062-abe7-232749bfc828?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e057fbd34137dcb63a747e1bc545b423", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0c95d884-2b65-4468-a8f9-4693c811e6c6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:23 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "67" - }, - "ResponseBody": { - "jobId": "3f58798c-fda1-4062-abe7-232749bfc828", - "lastUpdateDateTime": "2020-11-04T22:27:22Z", - "createdDateTime": "2020-11-04T22:27:19Z", - "expirationDateTime": "2020-11-05T22:27:19Z", + "jobId": "9a30a1f5-3606-476c-b6ab-d2b889c19c39", + "lastUpdateDateTime": "2020-11-05T20:52:42Z", + "createdDateTime": "2020-11-05T20:52:40Z", + "expirationDateTime": "2020-11-06T20:52:40Z", "status": "succeeded", "errors": [], "results": { @@ -356,7 +320,8 @@ "source": "#/results/documents/0/entities/2", "target": "#/results/documents/0/entities/1" } - ] + ], + "warnings": [] }, { "id": "1", @@ -1141,7 +1106,9 @@ } ] } - ] + ], + "relations": [], + "warnings": [] } ], "errors": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json index f92416b99fea5..3e2d2fd5a6b0e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f6f5effa2cf33446bac79025ef8ddb38-d78d535d507d8b43-00", + "traceparent": "00-53f6bddfbfa2d54b8e49b2ad69928f73-a56e72a9f2113741-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "99aaf08b1c844fb2d7a9025199ec97e4", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "1995b68b-0464-4213-b8a0-3726563f98d1", - "Date": "Wed, 04 Nov 2020 22:27:48 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4f8b8f76-535f-45f1-8243-d39c5fa0c506", + "apim-request-id": "90ac4a7e-416b-4a82-8f30-fceac2ca9250", + "Date": "Thu, 05 Nov 2020 20:53:13 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b68e191c-c177-4032-8538-be2dcd9f412f", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "109" + "x-envoy-upstream-service-time": "100" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4f8b8f76-535f-45f1-8243-d39c5fa0c506?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b68e191c-c177-4032-8538-be2dcd9f412f?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a6eb27012d3e0231e64179d6488bf525", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c1ac1cb1-1b37-4c02-b2e9-e3e9a7ced2b9", + "apim-request-id": "5208765f-c178-495b-8a12-a54352a6cdf4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:48 GMT", + "Date": "Thu, 05 Nov 2020 20:53:13 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": "13" }, "ResponseBody": { - "jobId": "4f8b8f76-535f-45f1-8243-d39c5fa0c506", - "lastUpdateDateTime": "2020-11-04T22:27:48Z", - "createdDateTime": "2020-11-04T22:27:48Z", - "expirationDateTime": "2020-11-05T22:27:48Z", - "status": "notStarted", + "jobId": "b68e191c-c177-4032-8538-be2dcd9f412f", + "lastUpdateDateTime": "2020-11-05T20:53:14Z", + "createdDateTime": "2020-11-05T20:53:14Z", + "expirationDateTime": "2020-11-06T20:53:14Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4f8b8f76-535f-45f1-8243-d39c5fa0c506?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b68e191c-c177-4032-8538-be2dcd9f412f?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4d12280124119b66ed27d10225884cad", @@ -100,19 +100,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "990b4a29-93fe-41c2-b33e-74d1f8a7c371", + "apim-request-id": "4a5fbaf1-6358-4ec1-b9ec-dbb2e0f350d6", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:50 GMT", + "Date": "Thu, 05 Nov 2020 20:53:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "131" + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { - "jobId": "4f8b8f76-535f-45f1-8243-d39c5fa0c506", - "lastUpdateDateTime": "2020-11-04T22:27:49Z", - "createdDateTime": "2020-11-04T22:27:48Z", - "expirationDateTime": "2020-11-05T22:27:48Z", + "jobId": "b68e191c-c177-4032-8538-be2dcd9f412f", + "lastUpdateDateTime": "2020-11-05T20:53:14Z", + "createdDateTime": "2020-11-05T20:53:14Z", + "expirationDateTime": "2020-11-06T20:53:14Z", "status": "succeeded", "errors": [], "results": { @@ -284,7 +284,8 @@ "source": "#/results/documents/0/entities/2", "target": "#/results/documents/0/entities/1" } - ] + ], + "warnings": [] }, { "id": "1", @@ -1069,7 +1070,9 @@ } ] } - ] + ], + "relations": [], + "warnings": [] } ], "errors": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json index f902c7d3e0aa8..e7cb0a516759f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-028a677ecb49e2438cd11cab891d0ef9-a883d99459b5bf42-00", + "traceparent": "00-126aade25551b9478cb57ca83b7afc14-5c2f21e327c44141-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "87697e405fe3a2c8182b48340c37e5c5", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "91f7c2a0-c8b4-4f0b-995b-6c215b69e3e4", - "Date": "Wed, 04 Nov 2020 22:27:23 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/287ff324-753c-4b91-b5bd-f8eaae64e143", + "apim-request-id": "70d490ac-c878-47cd-b9d0-7762609329ed", + "Date": "Thu, 05 Nov 2020 20:52:43 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0cfe976b-a808-4091-93f0-79f18842a976", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "119" + "x-envoy-upstream-service-time": "133" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/287ff324-753c-4b91-b5bd-f8eaae64e143?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0cfe976b-a808-4091-93f0-79f18842a976?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f1abd77b68195cb092c7f20f1aa7cc84", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9fa1e3e4-10d2-4426-bcea-f90a76bdebc2", + "apim-request-id": "c394982f-f8c2-44e1-9977-8d8b26883fba", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:23 GMT", + "Date": "Thu, 05 Nov 2020 20:52:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "287ff324-753c-4b91-b5bd-f8eaae64e143", - "lastUpdateDateTime": "2020-11-04T22:27:24Z", - "createdDateTime": "2020-11-04T22:27:24Z", - "expirationDateTime": "2020-11-05T22:27:24Z", + "jobId": "0cfe976b-a808-4091-93f0-79f18842a976", + "lastUpdateDateTime": "2020-11-05T20:52:43Z", + "createdDateTime": "2020-11-05T20:52:43Z", + "expirationDateTime": "2020-11-06T20:52:43Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/287ff324-753c-4b91-b5bd-f8eaae64e143?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0cfe976b-a808-4091-93f0-79f18842a976?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "be37acebd508d7a1d3d78987b19e23cf", @@ -100,19 +100,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3249b4d4-6f2c-463b-9a9d-25e3216814b6", + "apim-request-id": "c3a8401e-bed5-42b3-ab70-927191764fa9", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:25 GMT", + "Date": "Thu, 05 Nov 2020 20:52:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { - "jobId": "287ff324-753c-4b91-b5bd-f8eaae64e143", - "lastUpdateDateTime": "2020-11-04T22:27:25Z", - "createdDateTime": "2020-11-04T22:27:24Z", - "expirationDateTime": "2020-11-05T22:27:24Z", + "jobId": "0cfe976b-a808-4091-93f0-79f18842a976", + "lastUpdateDateTime": "2020-11-05T20:52:44Z", + "createdDateTime": "2020-11-05T20:52:43Z", + "expirationDateTime": "2020-11-06T20:52:43Z", "status": "succeeded", "errors": [], "results": { @@ -290,7 +290,8 @@ "source": "#/results/documents/0/entities/2", "target": "#/results/documents/0/entities/1" } - ] + ], + "warnings": [] }, { "id": "1", @@ -1075,7 +1076,9 @@ } ] } - ] + ], + "relations": [], + "warnings": [] } ], "errors": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json index 81b9b67ed1bb6..62dae9bfaa295 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-eacb3db6ac7741438166903f5fe5c620-a8848e82950eec4f-00", + "traceparent": "00-e56253726f8f674ebee7d2ddba403844-f1e52f48bbd1024b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "da8d96a331a03c42a6c41c2d9f512b98", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "b97ea8a7-6d15-4bca-94dd-6ef15066d802", - "Date": "Wed, 04 Nov 2020 22:27:50 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/7e5c9d14-7909-4296-9460-86d6e0f425cb", + "apim-request-id": "8453cda9-0701-4a8b-8049-0ac30ead7e59", + "Date": "Thu, 05 Nov 2020 20:53:16 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b639f4ff-8a12-46aa-858e-f7292750e1c1", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "96" + "x-envoy-upstream-service-time": "97" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/7e5c9d14-7909-4296-9460-86d6e0f425cb?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b639f4ff-8a12-46aa-858e-f7292750e1c1?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a36dbbc9f92b427287ffda298bd01507", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "84fc10dc-9efe-40dd-a713-d82a35d38d2d", + "apim-request-id": "50b5b1a8-a76a-48f3-9b6a-abf46d7bd9b0", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:50 GMT", + "Date": "Thu, 05 Nov 2020 20:53:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "7e5c9d14-7909-4296-9460-86d6e0f425cb", - "lastUpdateDateTime": "2020-11-04T22:27:50Z", - "createdDateTime": "2020-11-04T22:27:50Z", - "expirationDateTime": "2020-11-05T22:27:50Z", + "jobId": "b639f4ff-8a12-46aa-858e-f7292750e1c1", + "lastUpdateDateTime": "2020-11-05T20:53:16Z", + "createdDateTime": "2020-11-05T20:53:16Z", + "expirationDateTime": "2020-11-06T20:53:16Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/7e5c9d14-7909-4296-9460-86d6e0f425cb?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b639f4ff-8a12-46aa-858e-f7292750e1c1?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "86c4abbaba50d8ace0d0fc3795e01d2c", @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "02ff7fd8-56b2-46ee-8f87-316271cec525", + "apim-request-id": "2d2d9401-b913-49df-b8d2-181d6037d227", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:51 GMT", + "Date": "Thu, 05 Nov 2020 20:53:17 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": "6" }, "ResponseBody": { - "jobId": "7e5c9d14-7909-4296-9460-86d6e0f425cb", - "lastUpdateDateTime": "2020-11-04T22:27:50Z", - "createdDateTime": "2020-11-04T22:27:50Z", - "expirationDateTime": "2020-11-05T22:27:50Z", + "jobId": "b639f4ff-8a12-46aa-858e-f7292750e1c1", + "lastUpdateDateTime": "2020-11-05T20:53:16Z", + "createdDateTime": "2020-11-05T20:53:16Z", + "expirationDateTime": "2020-11-06T20:53:16Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/7e5c9d14-7909-4296-9460-86d6e0f425cb?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b639f4ff-8a12-46aa-858e-f7292750e1c1?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -127,7 +127,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "97afe1fd518fa965244a53a05719b0d6", @@ -136,19 +136,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "72f5318a-166a-4bc5-b4f4-c1d2f93e9594", + "apim-request-id": "2655d58e-4b95-4323-a2d3-ae923d41c314", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:52 GMT", + "Date": "Thu, 05 Nov 2020 20:53:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "68" + "x-envoy-upstream-service-time": "55" }, "ResponseBody": { - "jobId": "7e5c9d14-7909-4296-9460-86d6e0f425cb", - "lastUpdateDateTime": "2020-11-04T22:27:52Z", - "createdDateTime": "2020-11-04T22:27:50Z", - "expirationDateTime": "2020-11-05T22:27:50Z", + "jobId": "b639f4ff-8a12-46aa-858e-f7292750e1c1", + "lastUpdateDateTime": "2020-11-05T20:53:17Z", + "createdDateTime": "2020-11-05T20:53:16Z", + "expirationDateTime": "2020-11-06T20:53:16Z", "status": "succeeded", "errors": [], "results": { @@ -326,7 +326,8 @@ "source": "#/results/documents/0/entities/2", "target": "#/results/documents/0/entities/1" } - ] + ], + "warnings": [] }, { "id": "1", @@ -1111,7 +1112,9 @@ } ] } - ] + ], + "relations": [], + "warnings": [] } ], "errors": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json index 19b9039d737f4..953fc7af6ecad 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1e0e345a29c2f44cbf994d2513975bf2-dd36bb6f7dc7614a-00", + "traceparent": "00-0a04016563b93c4293ceb5526ebee529-fd8386a7a389d347-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0d63e53cea7530898179e7904fedbae6", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "d18bfe9b-c811-42ff-84a1-c110aa788d6e", - "Date": "Wed, 04 Nov 2020 22:27:25 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0b4c8b5a-fa85-43ba-9f20-ad496ffbbd67", + "apim-request-id": "2e3d574f-a7d5-49eb-a640-98219c36ba2b", + "Date": "Thu, 05 Nov 2020 20:52:45 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1e1be54e-09bf-4744-9841-bae14b6c5a6b", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-envoy-upstream-service-time": "108" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0b4c8b5a-fa85-43ba-9f20-ad496ffbbd67?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1e1be54e-09bf-4744-9841-bae14b6c5a6b?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7a482533d010f661d7a330e46a9c020c", @@ -64,61 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d7ff4a4d-21f3-4f16-bcd9-79be29084df8", + "apim-request-id": "a899518b-5ca8-4a46-ae42-4b2b275d1b21", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:25 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" - }, - "ResponseBody": { - "jobId": "0b4c8b5a-fa85-43ba-9f20-ad496ffbbd67", - "lastUpdateDateTime": "2020-11-04T22:27:25Z", - "createdDateTime": "2020-11-04T22:27:25Z", - "expirationDateTime": "2020-11-05T22:27:25Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0b4c8b5a-fa85-43ba-9f20-ad496ffbbd67?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d4480f3cd87c0175cc930cf584ae8a9b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "95fdcfc7-d158-471c-8d18-a648c80858a7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:26 GMT", + "Date": "Thu, 05 Nov 2020 20:52:45 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": "0b4c8b5a-fa85-43ba-9f20-ad496ffbbd67", - "lastUpdateDateTime": "2020-11-04T22:27:25Z", - "createdDateTime": "2020-11-04T22:27:25Z", - "expirationDateTime": "2020-11-05T22:27:25Z", - "status": "notStarted", + "jobId": "1e1be54e-09bf-4744-9841-bae14b6c5a6b", + "lastUpdateDateTime": "2020-11-05T20:52:45Z", + "createdDateTime": "2020-11-05T20:52:45Z", + "expirationDateTime": "2020-11-06T20:52:45Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0b4c8b5a-fa85-43ba-9f20-ad496ffbbd67?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1e1be54e-09bf-4744-9841-bae14b6c5a6b?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -127,28 +91,28 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "00da5d97d0326c02836c36d1baa4c6e5", + "x-ms-client-request-id": "d4480f3cd87c0175cc930cf584ae8a9b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a9192a79-2a76-46da-a211-cd194b60033b", + "apim-request-id": "f0d8eb76-dbf4-4db0-aad2-de897f132af8", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:28 GMT", + "Date": "Thu, 05 Nov 2020 20:52:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "58" + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { - "jobId": "0b4c8b5a-fa85-43ba-9f20-ad496ffbbd67", - "lastUpdateDateTime": "2020-11-04T22:27:27Z", - "createdDateTime": "2020-11-04T22:27:25Z", - "expirationDateTime": "2020-11-05T22:27:25Z", + "jobId": "1e1be54e-09bf-4744-9841-bae14b6c5a6b", + "lastUpdateDateTime": "2020-11-05T20:52:46Z", + "createdDateTime": "2020-11-05T20:52:45Z", + "expirationDateTime": "2020-11-06T20:52:45Z", "status": "succeeded", "errors": [], "results": { @@ -320,7 +284,8 @@ "source": "#/results/documents/0/entities/2", "target": "#/results/documents/0/entities/1" } - ] + ], + "warnings": [] }, { "id": "2", @@ -1105,7 +1070,9 @@ } ] } - ] + ], + "relations": [], + "warnings": [] } ], "errors": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json index ea2125fcea9bd..9e3e13f166545 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9e81b00f7cae054f804d9799149a8e39-fb5b11019caebe4c-00", + "traceparent": "00-1f396ae203bfe148bcb089d253447342-993c8a6779dbe94e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "17e898e3099143136b2e35c82964efd9", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "290297e4-643d-4760-9db2-77559a7d6330", - "Date": "Wed, 04 Nov 2020 22:27:52 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0633eb16-34dd-4931-8362-d451d388c646", + "apim-request-id": "a6c8325e-dadb-4524-b1d1-9a54afb278c8", + "Date": "Thu, 05 Nov 2020 20:53:18 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/474bf8d4-6adb-449b-9cdd-73fcc5017c48", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "100" + "x-envoy-upstream-service-time": "86" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0633eb16-34dd-4931-8362-d451d388c646?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/474bf8d4-6adb-449b-9cdd-73fcc5017c48?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7dd0fa2b947b788e4d51b90a9e064f06", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "39b80969-a1d3-47db-ad78-314bbe88b4c0", + "apim-request-id": "8a3d33db-21a3-43be-93db-b13d86b87ec0", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:52 GMT", + "Date": "Thu, 05 Nov 2020 20:53:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "0633eb16-34dd-4931-8362-d451d388c646", - "lastUpdateDateTime": "2020-11-04T22:27:53Z", - "createdDateTime": "2020-11-04T22:27:53Z", - "expirationDateTime": "2020-11-05T22:27:53Z", + "jobId": "474bf8d4-6adb-449b-9cdd-73fcc5017c48", + "lastUpdateDateTime": "2020-11-05T20:53:19Z", + "createdDateTime": "2020-11-05T20:53:19Z", + "expirationDateTime": "2020-11-06T20:53:19Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0633eb16-34dd-4931-8362-d451d388c646?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/474bf8d4-6adb-449b-9cdd-73fcc5017c48?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ddd7cae644b1aa3bb79fb4ecc872f743", @@ -100,19 +100,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "900ac387-9732-451e-9fa9-2e1c16fcfa69", + "apim-request-id": "906d4dd8-344e-435b-981c-5b9170cb9145", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:55 GMT", + "Date": "Thu, 05 Nov 2020 20:53:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "67" + "x-envoy-upstream-service-time": "81" }, "ResponseBody": { - "jobId": "0633eb16-34dd-4931-8362-d451d388c646", - "lastUpdateDateTime": "2020-11-04T22:27:54Z", - "createdDateTime": "2020-11-04T22:27:53Z", - "expirationDateTime": "2020-11-05T22:27:53Z", + "jobId": "474bf8d4-6adb-449b-9cdd-73fcc5017c48", + "lastUpdateDateTime": "2020-11-05T20:53:19Z", + "createdDateTime": "2020-11-05T20:53:19Z", + "expirationDateTime": "2020-11-06T20:53:19Z", "status": "succeeded", "errors": [], "results": { @@ -284,7 +284,8 @@ "source": "#/results/documents/0/entities/2", "target": "#/results/documents/0/entities/1" } - ] + ], + "warnings": [] }, { "id": "2", @@ -1069,7 +1070,9 @@ } ] } - ] + ], + "relations": [], + "warnings": [] } ], "errors": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json index f965e6a818bed..3f47854908ddb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json @@ -11,9 +11,9 @@ "Content-Length": "260", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-33c724637cb1a744806bf076cb54db11-558b0434cdd7604e-00", + "traceparent": "00-91b090f34c88c044a50eef7ef5aed3bd-c6b9b7c8a140c64d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ed679d93c08fe171a9b236aaa757046a", @@ -40,18 +40,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "075620b9-3cde-4752-8049-1e4a3d13aad6", - "Date": "Wed, 04 Nov 2020 22:27:28 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/fbe67d3f-0759-45cd-8a1b-4f18a34be1a9", + "apim-request-id": "968ab852-be03-4dd9-b146-fe5d6de974b2", + "Date": "Thu, 05 Nov 2020 20:52:47 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b25ad6c3-9d7f-4c76-b159-885b1a73d5a6", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "110" + "x-envoy-upstream-service-time": "327" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/fbe67d3f-0759-45cd-8a1b-4f18a34be1a9?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b25ad6c3-9d7f-4c76-b159-885b1a73d5a6?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -60,7 +60,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8ac7fae8cf64a9249598acb3531ad44c", @@ -69,25 +69,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c9f557b2-914a-4218-85c3-591987dbbe7a", + "apim-request-id": "c94f0106-373a-49e9-a195-1bcd7eeabecc", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:29 GMT", + "Date": "Thu, 05 Nov 2020 20:52:47 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": "6" }, "ResponseBody": { - "jobId": "fbe67d3f-0759-45cd-8a1b-4f18a34be1a9", - "lastUpdateDateTime": "2020-11-04T22:27:28Z", - "createdDateTime": "2020-11-04T22:27:28Z", - "expirationDateTime": "2020-11-05T22:27:28Z", + "jobId": "b25ad6c3-9d7f-4c76-b159-885b1a73d5a6", + "lastUpdateDateTime": "2020-11-05T20:52:47Z", + "createdDateTime": "2020-11-05T20:52:47Z", + "expirationDateTime": "2020-11-06T20:52:47Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/fbe67d3f-0759-45cd-8a1b-4f18a34be1a9?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b25ad6c3-9d7f-4c76-b159-885b1a73d5a6?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -96,7 +96,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e1e35bcd7fe4ca895c5026b1fcf89877", @@ -105,19 +105,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6763f200-5464-4e74-940f-d9301b3b6005", + "apim-request-id": "fb0b3029-4ef7-42d6-9907-2e2dab81364f", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:30 GMT", + "Date": "Thu, 05 Nov 2020 20:52:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "61" + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { - "jobId": "fbe67d3f-0759-45cd-8a1b-4f18a34be1a9", - "lastUpdateDateTime": "2020-11-04T22:27:30Z", - "createdDateTime": "2020-11-04T22:27:28Z", - "expirationDateTime": "2020-11-05T22:27:28Z", + "jobId": "b25ad6c3-9d7f-4c76-b159-885b1a73d5a6", + "lastUpdateDateTime": "2020-11-05T20:52:48Z", + "createdDateTime": "2020-11-05T20:52:47Z", + "expirationDateTime": "2020-11-06T20:52:47Z", "status": "succeeded", "errors": [], "results": { @@ -289,7 +289,8 @@ "source": "#/results/documents/0/entities/2", "target": "#/results/documents/0/entities/1" } - ] + ], + "warnings": [] }, { "id": "1", @@ -1074,7 +1075,9 @@ } ] } - ] + ], + "relations": [], + "warnings": [] } ], "errors": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json index c3ed1bafc93c7..4c6355f8fbbc3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "260", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b8794595d8cb2144915637aeeada47f7-410ebc6e037f634d-00", + "traceparent": "00-1a1ee5df05de8241ac08603c6f3ca9c3-e1de48a38bbced4c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4352d8dd6e2ff74a3743e20989f20949", @@ -40,18 +40,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "6289a4c5-44d2-4902-809c-51bea12da489", - "Date": "Wed, 04 Nov 2020 22:27:55 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/646805f4-c360-4e88-a580-053b7a50e4a5", + "apim-request-id": "61a47ba8-8770-41c4-8de9-534053a3a23c", + "Date": "Thu, 05 Nov 2020 20:53:21 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e4222e54-de16-43ce-9931-2be541c1d60f", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "88" + "x-envoy-upstream-service-time": "81" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/646805f4-c360-4e88-a580-053b7a50e4a5?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e4222e54-de16-43ce-9931-2be541c1d60f?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -60,7 +60,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b850713105701863d1b6a799a800b67b", @@ -69,25 +69,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6da9d4bc-78f5-45ab-b854-50a11dc7073a", + "apim-request-id": "5c66d1c9-d30b-4669-aa82-2bcc0f52541e", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:55 GMT", + "Date": "Thu, 05 Nov 2020 20:53:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { - "jobId": "646805f4-c360-4e88-a580-053b7a50e4a5", - "lastUpdateDateTime": "2020-11-04T22:27:55Z", - "createdDateTime": "2020-11-04T22:27:55Z", - "expirationDateTime": "2020-11-05T22:27:55Z", + "jobId": "e4222e54-de16-43ce-9931-2be541c1d60f", + "lastUpdateDateTime": "2020-11-05T20:53:21Z", + "createdDateTime": "2020-11-05T20:53:20Z", + "expirationDateTime": "2020-11-06T20:53:20Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/646805f4-c360-4e88-a580-053b7a50e4a5?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e4222e54-de16-43ce-9931-2be541c1d60f?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -96,7 +96,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7b6997a8eb08a1c0115e8728d43fe710", @@ -105,25 +105,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ba2e2899-637f-4ca5-85e6-ff0e40906f85", + "apim-request-id": "68c0794a-966c-4675-bf07-dc435e50d322", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:56 GMT", + "Date": "Thu, 05 Nov 2020 20:53:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "646805f4-c360-4e88-a580-053b7a50e4a5", - "lastUpdateDateTime": "2020-11-04T22:27:55Z", - "createdDateTime": "2020-11-04T22:27:55Z", - "expirationDateTime": "2020-11-05T22:27:55Z", + "jobId": "e4222e54-de16-43ce-9931-2be541c1d60f", + "lastUpdateDateTime": "2020-11-05T20:53:21Z", + "createdDateTime": "2020-11-05T20:53:20Z", + "expirationDateTime": "2020-11-06T20:53:20Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/646805f4-c360-4e88-a580-053b7a50e4a5?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e4222e54-de16-43ce-9931-2be541c1d60f?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -132,7 +132,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c4c517d3dcd1d7de74397279c7b14e37", @@ -141,19 +141,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "880c2044-d9cd-4f9e-b729-a868fe0aa9e4", + "apim-request-id": "73304a10-f304-4133-a5a0-12e83dd251ba", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:58 GMT", + "Date": "Thu, 05 Nov 2020 20:53:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "79" + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { - "jobId": "646805f4-c360-4e88-a580-053b7a50e4a5", - "lastUpdateDateTime": "2020-11-04T22:27:57Z", - "createdDateTime": "2020-11-04T22:27:55Z", - "expirationDateTime": "2020-11-05T22:27:55Z", + "jobId": "e4222e54-de16-43ce-9931-2be541c1d60f", + "lastUpdateDateTime": "2020-11-05T20:53:23Z", + "createdDateTime": "2020-11-05T20:53:20Z", + "expirationDateTime": "2020-11-06T20:53:20Z", "status": "succeeded", "errors": [], "results": { @@ -325,7 +325,8 @@ "source": "#/results/documents/0/entities/2", "target": "#/results/documents/0/entities/1" } - ] + ], + "warnings": [] }, { "id": "1", @@ -1110,7 +1111,9 @@ } ] } - ] + ], + "relations": [], + "warnings": [] } ], "errors": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPagination.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPagination.json index aa380d43c9efd..6208973145ba8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPagination.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPagination.json @@ -11,9 +11,9 @@ "Content-Length": "3202", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-93b64571ccfdeb4ebd45cf1d7bf74a87-fd0268b212ee5c49-00", + "traceparent": "00-b0ccbe32a9036d4abc140a45cc66853d-befac957b9782c45-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3d690e65097214462e3994d44b026896", @@ -140,18 +140,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "4a2cb0b5-5fa3-469c-8ab2-56a32e65ed61", - "Date": "Wed, 04 Nov 2020 22:27:30 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/fec26a6c-b25f-4d2f-9215-a8ee7d7bbc56", + "apim-request-id": "42a4de71-2274-49d8-9503-b96ec0f8ffe2", + "Date": "Thu, 05 Nov 2020 20:52:49 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/121f8c49-4f73-4fdf-9bbf-36f9f1a083c4", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "483" + "x-envoy-upstream-service-time": "409" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/fec26a6c-b25f-4d2f-9215-a8ee7d7bbc56?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/121f8c49-4f73-4fdf-9bbf-36f9f1a083c4?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -160,7 +160,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "60014c42eec829d6c5965295103c077f", @@ -169,25 +169,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "455d29c9-9807-41fa-9cf2-69d040b0f8e5", + "apim-request-id": "181c5310-26bf-4106-bed8-9bccae99972c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:31 GMT", + "Date": "Thu, 05 Nov 2020 20:52:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "fec26a6c-b25f-4d2f-9215-a8ee7d7bbc56", - "lastUpdateDateTime": "2020-11-04T22:27:31Z", - "createdDateTime": "2020-11-04T22:27:30Z", - "expirationDateTime": "2020-11-05T22:27:30Z", + "jobId": "121f8c49-4f73-4fdf-9bbf-36f9f1a083c4", + "lastUpdateDateTime": "2020-11-05T20:52:49Z", + "createdDateTime": "2020-11-05T20:52:49Z", + "expirationDateTime": "2020-11-06T20:52:49Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/fec26a6c-b25f-4d2f-9215-a8ee7d7bbc56?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/121f8c49-4f73-4fdf-9bbf-36f9f1a083c4?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -196,7 +196,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e6e71e1943fddaaba6e9191ddcfc8d38", @@ -205,25 +205,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fe245fdc-bb18-4a2b-8e96-4f490e05945c", + "apim-request-id": "0aad4d5d-708e-4b9a-8767-8de1dac74017", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:32 GMT", + "Date": "Thu, 05 Nov 2020 20:52:51 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": "5" }, "ResponseBody": { - "jobId": "fec26a6c-b25f-4d2f-9215-a8ee7d7bbc56", - "lastUpdateDateTime": "2020-11-04T22:27:32Z", - "createdDateTime": "2020-11-04T22:27:30Z", - "expirationDateTime": "2020-11-05T22:27:30Z", + "jobId": "121f8c49-4f73-4fdf-9bbf-36f9f1a083c4", + "lastUpdateDateTime": "2020-11-05T20:52:51Z", + "createdDateTime": "2020-11-05T20:52:49Z", + "expirationDateTime": "2020-11-06T20:52:49Z", "status": "running", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/fec26a6c-b25f-4d2f-9215-a8ee7d7bbc56?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/121f8c49-4f73-4fdf-9bbf-36f9f1a083c4?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -232,7 +232,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6bedcd03a2427620384078dbb7b003f2", @@ -241,25 +241,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0642e740-d41f-4485-b10f-d4d9a478e10e", + "apim-request-id": "41038938-efa2-4ca6-a2f6-ebefb7203d97", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:33 GMT", + "Date": "Thu, 05 Nov 2020 20:52:52 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": "fec26a6c-b25f-4d2f-9215-a8ee7d7bbc56", - "lastUpdateDateTime": "2020-11-04T22:27:33Z", - "createdDateTime": "2020-11-04T22:27:30Z", - "expirationDateTime": "2020-11-05T22:27:30Z", + "jobId": "121f8c49-4f73-4fdf-9bbf-36f9f1a083c4", + "lastUpdateDateTime": "2020-11-05T20:52:52Z", + "createdDateTime": "2020-11-05T20:52:49Z", + "expirationDateTime": "2020-11-06T20:52:49Z", "status": "running", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/fec26a6c-b25f-4d2f-9215-a8ee7d7bbc56?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/121f8c49-4f73-4fdf-9bbf-36f9f1a083c4?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -268,7 +268,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2cba1531821bff99a027b9ded5b94dc9", @@ -277,19 +277,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e819230c-6484-420a-8090-aace104a3188", + "apim-request-id": "54adf8f9-92d5-4187-ae8a-a63495e7dd6c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:34 GMT", + "Date": "Thu, 05 Nov 2020 20:52:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "273" + "x-envoy-upstream-service-time": "193" }, "ResponseBody": { - "jobId": "fec26a6c-b25f-4d2f-9215-a8ee7d7bbc56", - "lastUpdateDateTime": "2020-11-04T22:27:34Z", - "createdDateTime": "2020-11-04T22:27:30Z", - "expirationDateTime": "2020-11-05T22:27:30Z", + "jobId": "121f8c49-4f73-4fdf-9bbf-36f9f1a083c4", + "lastUpdateDateTime": "2020-11-05T20:52:52Z", + "createdDateTime": "2020-11-05T20:52:49Z", + "expirationDateTime": "2020-11-06T20:52:49Z", "status": "succeeded", "errors": [], "results": { @@ -415,7 +415,8 @@ "source": "#/results/documents/0/entities/0", "target": "#/results/documents/0/entities/1" } - ] + ], + "warnings": [] }, { "id": "1", @@ -538,7 +539,8 @@ "source": "#/results/documents/1/entities/0", "target": "#/results/documents/1/entities/1" } - ] + ], + "warnings": [] }, { "id": "2", @@ -661,7 +663,8 @@ "source": "#/results/documents/2/entities/0", "target": "#/results/documents/2/entities/1" } - ] + ], + "warnings": [] }, { "id": "3", @@ -784,7 +787,8 @@ "source": "#/results/documents/3/entities/0", "target": "#/results/documents/3/entities/1" } - ] + ], + "warnings": [] }, { "id": "4", @@ -907,7 +911,8 @@ "source": "#/results/documents/4/entities/0", "target": "#/results/documents/4/entities/1" } - ] + ], + "warnings": [] }, { "id": "5", @@ -1030,7 +1035,8 @@ "source": "#/results/documents/5/entities/0", "target": "#/results/documents/5/entities/1" } - ] + ], + "warnings": [] }, { "id": "6", @@ -1153,7 +1159,8 @@ "source": "#/results/documents/6/entities/0", "target": "#/results/documents/6/entities/1" } - ] + ], + "warnings": [] }, { "id": "7", @@ -1276,7 +1283,8 @@ "source": "#/results/documents/7/entities/0", "target": "#/results/documents/7/entities/1" } - ] + ], + "warnings": [] }, { "id": "8", @@ -1399,7 +1407,8 @@ "source": "#/results/documents/8/entities/0", "target": "#/results/documents/8/entities/1" } - ] + ], + "warnings": [] }, { "id": "9", @@ -1522,7 +1531,8 @@ "source": "#/results/documents/9/entities/0", "target": "#/results/documents/9/entities/1" } - ] + ], + "warnings": [] }, { "id": "10", @@ -1645,7 +1655,8 @@ "source": "#/results/documents/10/entities/0", "target": "#/results/documents/10/entities/1" } - ] + ], + "warnings": [] }, { "id": "11", @@ -1768,7 +1779,8 @@ "source": "#/results/documents/11/entities/0", "target": "#/results/documents/11/entities/1" } - ] + ], + "warnings": [] }, { "id": "12", @@ -1891,7 +1903,8 @@ "source": "#/results/documents/12/entities/0", "target": "#/results/documents/12/entities/1" } - ] + ], + "warnings": [] }, { "id": "13", @@ -2014,7 +2027,8 @@ "source": "#/results/documents/13/entities/0", "target": "#/results/documents/13/entities/1" } - ] + ], + "warnings": [] }, { "id": "14", @@ -2137,7 +2151,8 @@ "source": "#/results/documents/14/entities/0", "target": "#/results/documents/14/entities/1" } - ] + ], + "warnings": [] }, { "id": "15", @@ -2260,7 +2275,8 @@ "source": "#/results/documents/15/entities/0", "target": "#/results/documents/15/entities/1" } - ] + ], + "warnings": [] }, { "id": "16", @@ -2383,7 +2399,8 @@ "source": "#/results/documents/16/entities/0", "target": "#/results/documents/16/entities/1" } - ] + ], + "warnings": [] }, { "id": "17", @@ -2506,7 +2523,8 @@ "source": "#/results/documents/17/entities/0", "target": "#/results/documents/17/entities/1" } - ] + ], + "warnings": [] }, { "id": "18", @@ -2629,7 +2647,8 @@ "source": "#/results/documents/18/entities/0", "target": "#/results/documents/18/entities/1" } - ] + ], + "warnings": [] }, { "id": "19", @@ -2752,17 +2771,18 @@ "source": "#/results/documents/19/entities/0", "target": "#/results/documents/19/entities/1" } - ] + ], + "warnings": [] } ], "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/fec26a6c-b25f-4d2f-9215-a8ee7d7bbc56?$skip=20\u0026$top=3" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/121f8c49-4f73-4fdf-9bbf-36f9f1a083c4?$skip=20\u0026$top=3" } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/fec26a6c-b25f-4d2f-9215-a8ee7d7bbc56?$top=3\u0026$skip=20\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/121f8c49-4f73-4fdf-9bbf-36f9f1a083c4?$top=3\u0026$skip=20\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2771,7 +2791,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "439219099c4e763dfe70aebdcbcf23f6", @@ -2780,19 +2800,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c3f90846-982d-41cf-a813-422fd4de215e", + "apim-request-id": "5d4646d0-cd44-4cf8-819c-967870460eac", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:35 GMT", + "Date": "Thu, 05 Nov 2020 20:52:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "69" + "x-envoy-upstream-service-time": "139" }, "ResponseBody": { - "jobId": "fec26a6c-b25f-4d2f-9215-a8ee7d7bbc56", - "lastUpdateDateTime": "2020-11-04T22:27:34Z", - "createdDateTime": "2020-11-04T22:27:30Z", - "expirationDateTime": "2020-11-05T22:27:30Z", + "jobId": "121f8c49-4f73-4fdf-9bbf-36f9f1a083c4", + "lastUpdateDateTime": "2020-11-05T20:52:52Z", + "createdDateTime": "2020-11-05T20:52:49Z", + "expirationDateTime": "2020-11-06T20:52:49Z", "status": "succeeded", "errors": [], "results": { @@ -2918,7 +2938,8 @@ "source": "#/results/documents/0/entities/0", "target": "#/results/documents/0/entities/1" } - ] + ], + "warnings": [] }, { "id": "21", @@ -3041,7 +3062,8 @@ "source": "#/results/documents/1/entities/0", "target": "#/results/documents/1/entities/1" } - ] + ], + "warnings": [] }, { "id": "22", @@ -3164,7 +3186,8 @@ "source": "#/results/documents/2/entities/0", "target": "#/results/documents/2/entities/1" } - ] + ], + "warnings": [] } ], "errors": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPaginationAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPaginationAsync.json index 878b7ee7680c3..fbe809a18c4ff 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPaginationAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPaginationAsync.json @@ -11,9 +11,9 @@ "Content-Length": "3202", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-90fabaf0d2dae94181407b4ca45f1698-f0d6339ef30c414f-00", + "traceparent": "00-cecb70e3eed93c4dbdbd9c21a27e0b48-1414adca5aff4944-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f142919ab8153bebc5d9f5272ba0209d", @@ -140,18 +140,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "3973cfb2-3f78-40be-af75-47636db7b842", - "Date": "Wed, 04 Nov 2020 22:27:58 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c8569761-1de8-4e39-8852-39ff5181bef2", + "apim-request-id": "f14e9af2-16d8-4bd0-bc18-1a45d0c542ff", + "Date": "Thu, 05 Nov 2020 20:53:23 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a897c7e1-c49e-4047-a0ad-c03cab87427a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "399" + "x-envoy-upstream-service-time": "374" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c8569761-1de8-4e39-8852-39ff5181bef2?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a897c7e1-c49e-4047-a0ad-c03cab87427a?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -160,7 +160,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "abea9627e0cd843f9974ee5faa963225", @@ -169,25 +169,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7e86d630-249c-4bf3-90e2-5070fccffe24", + "apim-request-id": "2f96d4d2-1cbe-4a8e-9353-49409de19e1d", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:58 GMT", + "Date": "Thu, 05 Nov 2020 20:53:23 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": "c8569761-1de8-4e39-8852-39ff5181bef2", - "lastUpdateDateTime": "2020-11-04T22:27:58Z", - "createdDateTime": "2020-11-04T22:27:58Z", - "expirationDateTime": "2020-11-05T22:27:58Z", + "jobId": "a897c7e1-c49e-4047-a0ad-c03cab87427a", + "lastUpdateDateTime": "2020-11-05T20:53:24Z", + "createdDateTime": "2020-11-05T20:53:23Z", + "expirationDateTime": "2020-11-06T20:53:23Z", "status": "running", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c8569761-1de8-4e39-8852-39ff5181bef2?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a897c7e1-c49e-4047-a0ad-c03cab87427a?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -196,7 +196,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "29e58cf2b8b376a1d7b53c264371cd5a", @@ -205,25 +205,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ed593adf-1f38-4b1b-a622-d0944336c3d8", + "apim-request-id": "1a854db1-e183-4cf5-8db9-a191be3ff3ed", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:59 GMT", + "Date": "Thu, 05 Nov 2020 20:53:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { - "jobId": "c8569761-1de8-4e39-8852-39ff5181bef2", - "lastUpdateDateTime": "2020-11-04T22:27:59Z", - "createdDateTime": "2020-11-04T22:27:58Z", - "expirationDateTime": "2020-11-05T22:27:58Z", + "jobId": "a897c7e1-c49e-4047-a0ad-c03cab87427a", + "lastUpdateDateTime": "2020-11-05T20:53:25Z", + "createdDateTime": "2020-11-05T20:53:23Z", + "expirationDateTime": "2020-11-06T20:53:23Z", "status": "running", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c8569761-1de8-4e39-8852-39ff5181bef2?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a897c7e1-c49e-4047-a0ad-c03cab87427a?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -232,7 +232,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ebc37c63c42eb92852bd57a0ca8c902e", @@ -241,19 +241,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1e1f70f0-56cf-4773-8d02-0cd99cbe7447", + "apim-request-id": "e47191b1-c859-48d3-83a2-242e5754ab9f", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:28:01 GMT", + "Date": "Thu, 05 Nov 2020 20:53:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "214" + "x-envoy-upstream-service-time": "197" }, "ResponseBody": { - "jobId": "c8569761-1de8-4e39-8852-39ff5181bef2", - "lastUpdateDateTime": "2020-11-04T22:28:01Z", - "createdDateTime": "2020-11-04T22:27:58Z", - "expirationDateTime": "2020-11-05T22:27:58Z", + "jobId": "a897c7e1-c49e-4047-a0ad-c03cab87427a", + "lastUpdateDateTime": "2020-11-05T20:53:26Z", + "createdDateTime": "2020-11-05T20:53:23Z", + "expirationDateTime": "2020-11-06T20:53:23Z", "status": "succeeded", "errors": [], "results": { @@ -379,7 +379,8 @@ "source": "#/results/documents/0/entities/0", "target": "#/results/documents/0/entities/1" } - ] + ], + "warnings": [] }, { "id": "1", @@ -502,7 +503,8 @@ "source": "#/results/documents/1/entities/0", "target": "#/results/documents/1/entities/1" } - ] + ], + "warnings": [] }, { "id": "2", @@ -625,7 +627,8 @@ "source": "#/results/documents/2/entities/0", "target": "#/results/documents/2/entities/1" } - ] + ], + "warnings": [] }, { "id": "3", @@ -748,7 +751,8 @@ "source": "#/results/documents/3/entities/0", "target": "#/results/documents/3/entities/1" } - ] + ], + "warnings": [] }, { "id": "4", @@ -871,7 +875,8 @@ "source": "#/results/documents/4/entities/0", "target": "#/results/documents/4/entities/1" } - ] + ], + "warnings": [] }, { "id": "5", @@ -994,7 +999,8 @@ "source": "#/results/documents/5/entities/0", "target": "#/results/documents/5/entities/1" } - ] + ], + "warnings": [] }, { "id": "6", @@ -1117,7 +1123,8 @@ "source": "#/results/documents/6/entities/0", "target": "#/results/documents/6/entities/1" } - ] + ], + "warnings": [] }, { "id": "7", @@ -1240,7 +1247,8 @@ "source": "#/results/documents/7/entities/0", "target": "#/results/documents/7/entities/1" } - ] + ], + "warnings": [] }, { "id": "8", @@ -1363,7 +1371,8 @@ "source": "#/results/documents/8/entities/0", "target": "#/results/documents/8/entities/1" } - ] + ], + "warnings": [] }, { "id": "9", @@ -1486,7 +1495,8 @@ "source": "#/results/documents/9/entities/0", "target": "#/results/documents/9/entities/1" } - ] + ], + "warnings": [] }, { "id": "10", @@ -1609,7 +1619,8 @@ "source": "#/results/documents/10/entities/0", "target": "#/results/documents/10/entities/1" } - ] + ], + "warnings": [] }, { "id": "11", @@ -1732,7 +1743,8 @@ "source": "#/results/documents/11/entities/0", "target": "#/results/documents/11/entities/1" } - ] + ], + "warnings": [] }, { "id": "12", @@ -1855,7 +1867,8 @@ "source": "#/results/documents/12/entities/0", "target": "#/results/documents/12/entities/1" } - ] + ], + "warnings": [] }, { "id": "13", @@ -1978,7 +1991,8 @@ "source": "#/results/documents/13/entities/0", "target": "#/results/documents/13/entities/1" } - ] + ], + "warnings": [] }, { "id": "14", @@ -2101,7 +2115,8 @@ "source": "#/results/documents/14/entities/0", "target": "#/results/documents/14/entities/1" } - ] + ], + "warnings": [] }, { "id": "15", @@ -2224,7 +2239,8 @@ "source": "#/results/documents/15/entities/0", "target": "#/results/documents/15/entities/1" } - ] + ], + "warnings": [] }, { "id": "16", @@ -2347,7 +2363,8 @@ "source": "#/results/documents/16/entities/0", "target": "#/results/documents/16/entities/1" } - ] + ], + "warnings": [] }, { "id": "17", @@ -2470,7 +2487,8 @@ "source": "#/results/documents/17/entities/0", "target": "#/results/documents/17/entities/1" } - ] + ], + "warnings": [] }, { "id": "18", @@ -2593,7 +2611,8 @@ "source": "#/results/documents/18/entities/0", "target": "#/results/documents/18/entities/1" } - ] + ], + "warnings": [] }, { "id": "19", @@ -2716,17 +2735,18 @@ "source": "#/results/documents/19/entities/0", "target": "#/results/documents/19/entities/1" } - ] + ], + "warnings": [] } ], "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c8569761-1de8-4e39-8852-39ff5181bef2?$skip=20\u0026$top=3" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a897c7e1-c49e-4047-a0ad-c03cab87427a?$skip=20\u0026$top=3" } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c8569761-1de8-4e39-8852-39ff5181bef2?$top=3\u0026$skip=20\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a897c7e1-c49e-4047-a0ad-c03cab87427a?$top=3\u0026$skip=20\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2735,7 +2755,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9f34cfa6f7bb6feaf474d418a4184128", @@ -2744,19 +2764,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ac02c50a-fde6-4456-88de-3d95304d1a92", + "apim-request-id": "0bb1c7c4-a6c9-4880-ae8f-7336c7be495f", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:28:01 GMT", + "Date": "Thu, 05 Nov 2020 20:53:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "80" + "x-envoy-upstream-service-time": "70" }, "ResponseBody": { - "jobId": "c8569761-1de8-4e39-8852-39ff5181bef2", - "lastUpdateDateTime": "2020-11-04T22:28:01Z", - "createdDateTime": "2020-11-04T22:27:58Z", - "expirationDateTime": "2020-11-05T22:27:58Z", + "jobId": "a897c7e1-c49e-4047-a0ad-c03cab87427a", + "lastUpdateDateTime": "2020-11-05T20:53:26Z", + "createdDateTime": "2020-11-05T20:53:23Z", + "expirationDateTime": "2020-11-06T20:53:23Z", "status": "succeeded", "errors": [], "results": { @@ -2882,7 +2902,8 @@ "source": "#/results/documents/0/entities/0", "target": "#/results/documents/0/entities/1" } - ] + ], + "warnings": [] }, { "id": "21", @@ -3005,7 +3026,8 @@ "source": "#/results/documents/1/entities/0", "target": "#/results/documents/1/entities/1" } - ] + ], + "warnings": [] }, { "id": "22", @@ -3128,7 +3150,8 @@ "source": "#/results/documents/2/entities/0", "target": "#/results/documents/2/entities/1" } - ] + ], + "warnings": [] } ], "errors": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json index 2261e95b78aa1..e305c49ca6a39 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d6c040481ec2c641a9830f771fc7028f-5fe5e2c0b95b9b45-00", + "traceparent": "00-00746f2fb6f5334287bf58ed3ee87205-88d7bacb28cac44f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8ec3c90b7880bba55b75abdb84a19321", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "fe9de38a-d93b-45a6-8681-78b4bec70141", - "Date": "Wed, 04 Nov 2020 22:27:35 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0debc4ec-479a-4a19-a57d-ff3d85cd5c3e", + "apim-request-id": "db5edb34-9491-4a79-833e-07be0d97df8b", + "Date": "Thu, 05 Nov 2020 20:52:53 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/55e1ca9f-d88a-4404-ac71-7da35db83738", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "130" + "x-envoy-upstream-service-time": "93" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0debc4ec-479a-4a19-a57d-ff3d85cd5c3e?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/55e1ca9f-d88a-4404-ac71-7da35db83738?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "56fe48ebb003114e437c6f5c1a23295d", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2d2f97f1-980b-4481-b753-34bee3408203", + "apim-request-id": "4bd8fb36-7267-44c4-bf2b-23cd31366efb", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:35 GMT", + "Date": "Thu, 05 Nov 2020 20:52: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": "5" }, "ResponseBody": { - "jobId": "0debc4ec-479a-4a19-a57d-ff3d85cd5c3e", - "lastUpdateDateTime": "2020-11-04T22:27:36Z", - "createdDateTime": "2020-11-04T22:27:35Z", - "expirationDateTime": "2020-11-05T22:27:35Z", + "jobId": "55e1ca9f-d88a-4404-ac71-7da35db83738", + "lastUpdateDateTime": "2020-11-05T20:52:54Z", + "createdDateTime": "2020-11-05T20:52:54Z", + "expirationDateTime": "2020-11-06T20:52:54Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0debc4ec-479a-4a19-a57d-ff3d85cd5c3e?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/55e1ca9f-d88a-4404-ac71-7da35db83738?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e2f12bb5a78a8d006ec8d88886d7049c", @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d238219b-a451-4583-a198-1d4da4484854", + "apim-request-id": "499f6513-ed9e-473e-a42c-22d95a6667f8", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:36 GMT", + "Date": "Thu, 05 Nov 2020 20:52:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "0debc4ec-479a-4a19-a57d-ff3d85cd5c3e", - "lastUpdateDateTime": "2020-11-04T22:27:37Z", - "createdDateTime": "2020-11-04T22:27:35Z", - "expirationDateTime": "2020-11-05T22:27:35Z", - "status": "running", + "jobId": "55e1ca9f-d88a-4404-ac71-7da35db83738", + "lastUpdateDateTime": "2020-11-05T20:52:54Z", + "createdDateTime": "2020-11-05T20:52:54Z", + "expirationDateTime": "2020-11-06T20:52:54Z", + "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0debc4ec-479a-4a19-a57d-ff3d85cd5c3e?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/55e1ca9f-d88a-4404-ac71-7da35db83738?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -127,7 +127,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c7d5601dc12e5b3c7ab14a040948a137", @@ -136,19 +136,271 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e0437226-fea4-47fe-be0d-c49eff89e0ee", + "apim-request-id": "1d728496-0c51-4975-a66b-161c2c5d86dd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 05 Nov 2020 20:52:57 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": "55e1ca9f-d88a-4404-ac71-7da35db83738", + "lastUpdateDateTime": "2020-11-05T20:52:54Z", + "createdDateTime": "2020-11-05T20:52:54Z", + "expirationDateTime": "2020-11-06T20:52:54Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/55e1ca9f-d88a-4404-ac71-7da35db83738?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "59254d4cb0b043964770e83ad7c68b6c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "aea9c0e6-2502-4ae8-82a5-4e2e839564eb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 05 Nov 2020 20:52:58 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": "55e1ca9f-d88a-4404-ac71-7da35db83738", + "lastUpdateDateTime": "2020-11-05T20:52:54Z", + "createdDateTime": "2020-11-05T20:52:54Z", + "expirationDateTime": "2020-11-06T20:52:54Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/55e1ca9f-d88a-4404-ac71-7da35db83738?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b93fd277614ef42fee9567d95dfc8425", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "178b7b99-e7dc-4c57-b227-7279f72f02a9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 05 Nov 2020 20:52:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5" + }, + "ResponseBody": { + "jobId": "55e1ca9f-d88a-4404-ac71-7da35db83738", + "lastUpdateDateTime": "2020-11-05T20:52:54Z", + "createdDateTime": "2020-11-05T20:52:54Z", + "expirationDateTime": "2020-11-06T20:52:54Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/55e1ca9f-d88a-4404-ac71-7da35db83738?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "383ba127abb16cecc99180bdd90184b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c0720289-6ad3-4ccc-b9b2-6c592f0061fe", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 05 Nov 2020 20:53:00 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": "55e1ca9f-d88a-4404-ac71-7da35db83738", + "lastUpdateDateTime": "2020-11-05T20:53:00Z", + "createdDateTime": "2020-11-05T20:52:54Z", + "expirationDateTime": "2020-11-06T20:52:54Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/55e1ca9f-d88a-4404-ac71-7da35db83738?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "368cdd25e709eae81e316a1a49bde64b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9c744d00-d1bc-4889-9d8d-1754ad6dd65c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:37 GMT", + "Date": "Thu, 05 Nov 2020 20:53:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "71" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "0debc4ec-479a-4a19-a57d-ff3d85cd5c3e", - "lastUpdateDateTime": "2020-11-04T22:27:37Z", - "createdDateTime": "2020-11-04T22:27:35Z", - "expirationDateTime": "2020-11-05T22:27:35Z", + "jobId": "55e1ca9f-d88a-4404-ac71-7da35db83738", + "lastUpdateDateTime": "2020-11-05T20:53:00Z", + "createdDateTime": "2020-11-05T20:52:54Z", + "expirationDateTime": "2020-11-06T20:52:54Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/55e1ca9f-d88a-4404-ac71-7da35db83738?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3613c3eb528accbae6d2efbde1711bec", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "75636f81-d1db-4cc9-8ba3-d75ba34f2ec7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 05 Nov 2020 20:53:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5" + }, + "ResponseBody": { + "jobId": "55e1ca9f-d88a-4404-ac71-7da35db83738", + "lastUpdateDateTime": "2020-11-05T20:53:00Z", + "createdDateTime": "2020-11-05T20:52:54Z", + "expirationDateTime": "2020-11-06T20:52:54Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/55e1ca9f-d88a-4404-ac71-7da35db83738?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7fb3b2114e6f3f1bb9511a8040d1220c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "77977813-3b3e-4a35-b535-aff67d2464ea", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 05 Nov 2020 20:53:04 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": "55e1ca9f-d88a-4404-ac71-7da35db83738", + "lastUpdateDateTime": "2020-11-05T20:53:00Z", + "createdDateTime": "2020-11-05T20:52:54Z", + "expirationDateTime": "2020-11-06T20:52:54Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/55e1ca9f-d88a-4404-ac71-7da35db83738?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "16d234ab4deed32a23c05037f82b09ac", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "da2fa37e-b8e1-400d-9199-505290cbbce6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 05 Nov 2020 20:53:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "59" + }, + "ResponseBody": { + "jobId": "55e1ca9f-d88a-4404-ac71-7da35db83738", + "lastUpdateDateTime": "2020-11-05T20:53:05Z", + "createdDateTime": "2020-11-05T20:52:54Z", + "expirationDateTime": "2020-11-06T20:52:54Z", "status": "succeeded", "errors": [], "results": { @@ -326,7 +578,8 @@ "source": "#/results/documents/0/entities/2", "target": "#/results/documents/0/entities/1" } - ] + ], + "warnings": [] }, { "id": "2", @@ -1111,7 +1364,9 @@ } ] } - ] + ], + "relations": [], + "warnings": [] } ], "errors": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json index b00ec9785d76d..ec846204bdc1d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1f8fff5405ccb44fbf43bef7ceccde3a-3397d17bb5734146-00", + "traceparent": "00-bd599b4968a0e1438d90ed771d26d119-dd597a08b493ca4c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cb820fc464b79dcc9212329646bf509a", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "6ebbd83a-7c6b-4040-b6e6-22bc7c5fbce5", - "Date": "Wed, 04 Nov 2020 22:28:01 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/60a27b7d-4de9-4342-8110-d5cf4ba8da68", + "apim-request-id": "e77233c2-d319-4877-a070-2dc2519bcb5f", + "Date": "Thu, 05 Nov 2020 20:53:27 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/2a949ca4-fd2d-49f0-9104-40777edfb22a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "80" + "x-envoy-upstream-service-time": "75" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/60a27b7d-4de9-4342-8110-d5cf4ba8da68?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/2a949ca4-fd2d-49f0-9104-40777edfb22a?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "08d18cd76fa1ba75ad5e5758b7de00e4", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "44d0e3ae-845a-4b01-bbe5-268ba5b598ff", + "apim-request-id": "9f793d0d-085a-436c-a892-8c8fb665fdc0", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:28:01 GMT", + "Date": "Thu, 05 Nov 2020 20:53:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "5" }, "ResponseBody": { - "jobId": "60a27b7d-4de9-4342-8110-d5cf4ba8da68", - "lastUpdateDateTime": "2020-11-04T22:28:02Z", - "createdDateTime": "2020-11-04T22:28:02Z", - "expirationDateTime": "2020-11-05T22:28:02Z", - "status": "running", + "jobId": "2a949ca4-fd2d-49f0-9104-40777edfb22a", + "lastUpdateDateTime": "2020-11-05T20:53:27Z", + "createdDateTime": "2020-11-05T20:53:27Z", + "expirationDateTime": "2020-11-06T20:53:27Z", + "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/60a27b7d-4de9-4342-8110-d5cf4ba8da68?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/2a949ca4-fd2d-49f0-9104-40777edfb22a?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2ac480b3f6758c758bf3f8f60a589915", @@ -100,19 +100,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "60d9d6b3-2f72-44ff-a691-bf1abffda8ee", + "apim-request-id": "be1c874e-b634-4a58-b743-d8181b9c62e1", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:28:03 GMT", + "Date": "Thu, 05 Nov 2020 20:53:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "76" + "x-envoy-upstream-service-time": "53" }, "ResponseBody": { - "jobId": "60a27b7d-4de9-4342-8110-d5cf4ba8da68", - "lastUpdateDateTime": "2020-11-04T22:28:02Z", - "createdDateTime": "2020-11-04T22:28:02Z", - "expirationDateTime": "2020-11-05T22:28:02Z", + "jobId": "2a949ca4-fd2d-49f0-9104-40777edfb22a", + "lastUpdateDateTime": "2020-11-05T20:53:28Z", + "createdDateTime": "2020-11-05T20:53:27Z", + "expirationDateTime": "2020-11-06T20:53:27Z", "status": "succeeded", "errors": [], "results": { @@ -290,7 +290,8 @@ "source": "#/results/documents/0/entities/2", "target": "#/results/documents/0/entities/1" } - ] + ], + "warnings": [] }, { "id": "2", @@ -1075,7 +1076,9 @@ } ] } - ] + ], + "relations": [], + "warnings": [] } ], "errors": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json index 529fb3412d02b..d692bae18f09b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json @@ -11,9 +11,9 @@ "Content-Length": "100", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7ad4c746e5bb2841baf68d077679511d-e8d9e0ed6f81a248-00", + "traceparent": "00-247c5f6ce19d934c81fc8a0b86cb0fc8-36e7996e3c1fb847-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e51cbf87a321df02032925de5e6708b4", @@ -30,18 +30,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "761331d2-a943-48f7-a6e8-75a25be581cf", - "Date": "Wed, 04 Nov 2020 22:27:38 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a03dfffc-a892-4474-bcee-6bd512f2522f", + "apim-request-id": "11b05bba-35c6-40d2-8cd6-fe870161b9c2", + "Date": "Thu, 05 Nov 2020 20:53:05 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/5163028f-061a-43f8-a01d-19b30f8c2527", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "70" + "x-envoy-upstream-service-time": "110" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a03dfffc-a892-4474-bcee-6bd512f2522f", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/5163028f-061a-43f8-a01d-19b30f8c2527?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -50,7 +50,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2cdb69530701f208f175aa6a97e2593b", @@ -59,25 +59,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "efc2640d-c4fa-4387-8540-4e716c552d38", + "apim-request-id": "a342799e-52c7-415f-bf08-0f6269d62a0e", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:38 GMT", + "Date": "Thu, 05 Nov 2020 20:53:05 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": "10" }, "ResponseBody": { - "jobId": "a03dfffc-a892-4474-bcee-6bd512f2522f", - "lastUpdateDateTime": "2020-11-04T22:27:39Z", - "createdDateTime": "2020-11-04T22:27:39Z", - "expirationDateTime": "2020-11-05T22:27:39Z", - "status": "running", + "jobId": "5163028f-061a-43f8-a01d-19b30f8c2527", + "lastUpdateDateTime": "2020-11-05T20:53:05Z", + "createdDateTime": "2020-11-05T20:53:05Z", + "expirationDateTime": "2020-11-06T20:53:05Z", + "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a03dfffc-a892-4474-bcee-6bd512f2522f", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/5163028f-061a-43f8-a01d-19b30f8c2527?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -86,7 +86,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a701cb20bb11a529608aebe12f36a48e", @@ -95,19 +95,55 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "00048a9e-2978-4ca6-bdee-0b5e13db6825", + "apim-request-id": "addb71f4-c4b4-4caf-8565-34c9550b99f8", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:40 GMT", + "Date": "Thu, 05 Nov 2020 20:53:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { - "jobId": "a03dfffc-a892-4474-bcee-6bd512f2522f", - "lastUpdateDateTime": "2020-11-04T22:27:39Z", - "createdDateTime": "2020-11-04T22:27:39Z", - "expirationDateTime": "2020-11-05T22:27:39Z", + "jobId": "5163028f-061a-43f8-a01d-19b30f8c2527", + "lastUpdateDateTime": "2020-11-05T20:53:05Z", + "createdDateTime": "2020-11-05T20:53:05Z", + "expirationDateTime": "2020-11-06T20:53:05Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/5163028f-061a-43f8-a01d-19b30f8c2527?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "03c09e10ea8d7fc1b629f4abf8984821", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dba272db-38f7-44f2-ac2b-560f043ff1c3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 05 Nov 2020 20:53:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "46" + }, + "ResponseBody": { + "jobId": "5163028f-061a-43f8-a01d-19b30f8c2527", + "lastUpdateDateTime": "2020-11-05T20:53:07Z", + "createdDateTime": "2020-11-05T20:53:05Z", + "expirationDateTime": "2020-11-06T20:53:05Z", "status": "succeeded", "errors": [], "results": { @@ -279,7 +315,8 @@ "source": "#/results/documents/0/entities/2", "target": "#/results/documents/0/entities/1" } - ] + ], + "warnings": [] } ], "errors": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json index 29bf0e28b3c04..51c209edd9b1e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "100", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1b2220473ed8384fb4e3bf5f1ccba283-eded3b234f904343-00", + "traceparent": "00-a980c02a525d104cb97a6e5a57a5b24c-6d4b7dda10e11f44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "acdb13842ca5b9295fa84adf0c4870a8", @@ -30,18 +30,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "9ac5b685-95d4-47ab-94f9-9048323d861e", - "Date": "Wed, 04 Nov 2020 22:28:03 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0e9a33d3-be22-4e3f-9a2b-783ca89c9653", + "apim-request-id": "30e604bd-0856-45ee-92c9-0e198620d4a6", + "Date": "Thu, 05 Nov 2020 20:53:29 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/f046757d-1180-48b0-9666-63d4752cb7b9", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "70" + "x-envoy-upstream-service-time": "58" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0e9a33d3-be22-4e3f-9a2b-783ca89c9653", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/f046757d-1180-48b0-9666-63d4752cb7b9?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -50,7 +50,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1181511460ff1ed085a4ba80632c2cfd", @@ -59,25 +59,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a59a7078-87e2-4306-ba86-af999d321271", + "apim-request-id": "0d0b0628-9bff-4005-99af-dc277d8e42cd", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:28:03 GMT", + "Date": "Thu, 05 Nov 2020 20:53:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "5" }, "ResponseBody": { - "jobId": "0e9a33d3-be22-4e3f-9a2b-783ca89c9653", - "lastUpdateDateTime": "2020-11-04T22:28:04Z", - "createdDateTime": "2020-11-04T22:28:04Z", - "expirationDateTime": "2020-11-05T22:28:04Z", + "jobId": "f046757d-1180-48b0-9666-63d4752cb7b9", + "lastUpdateDateTime": "2020-11-05T20:53:29Z", + "createdDateTime": "2020-11-05T20:53:29Z", + "expirationDateTime": "2020-11-06T20:53:29Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0e9a33d3-be22-4e3f-9a2b-783ca89c9653", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/f046757d-1180-48b0-9666-63d4752cb7b9?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -86,7 +86,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d0605b7dc709a544ca5e0c1b0401dc1e", @@ -95,19 +95,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3aaa36a0-a51a-471e-b843-6943e50f5689", + "apim-request-id": "59d70431-e027-4503-8791-7b33ec22196d", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:28:05 GMT", + "Date": "Thu, 05 Nov 2020 20:53:30 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": "95" }, "ResponseBody": { - "jobId": "0e9a33d3-be22-4e3f-9a2b-783ca89c9653", - "lastUpdateDateTime": "2020-11-04T22:28:04Z", - "createdDateTime": "2020-11-04T22:28:04Z", - "expirationDateTime": "2020-11-05T22:28:04Z", + "jobId": "f046757d-1180-48b0-9666-63d4752cb7b9", + "lastUpdateDateTime": "2020-11-05T20:53:30Z", + "createdDateTime": "2020-11-05T20:53:29Z", + "expirationDateTime": "2020-11-06T20:53:29Z", "status": "succeeded", "errors": [], "results": { @@ -279,7 +279,8 @@ "source": "#/results/documents/0/entities/2", "target": "#/results/documents/0/entities/1" } - ] + ], + "warnings": [] } ], "errors": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json index 2fd2c6a0a0d9b..a7031337aa690 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json @@ -11,9 +11,9 @@ "Content-Length": "100", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7870f125ea941746b398b5513a630829-ed4152ef419cce48-00", + "traceparent": "00-f4643d640e25c54aa604af347b8e8dc7-9ddb6dcaa5e8d340-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0e649e128b084513c9c62e584c5f813b", @@ -30,18 +30,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "65cc9e55-7760-4fe7-b6c5-0679d1222f27", - "Date": "Wed, 04 Nov 2020 22:27:40 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/2e2d1272-5041-4c7a-b1ae-80efa1b0c0ee", + "apim-request-id": "a08f8c60-6897-4183-9662-58a88eebdf9f", + "Date": "Thu, 05 Nov 2020 20:53:08 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4ce60a8d-93f1-44b1-9d5f-4dbc472a764d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "94" + "x-envoy-upstream-service-time": "89" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/2e2d1272-5041-4c7a-b1ae-80efa1b0c0ee?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4ce60a8d-93f1-44b1-9d5f-4dbc472a764d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -50,7 +50,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "796705c1528f3adf8bba34f0a8f2bd37", @@ -59,25 +59,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a1c4820b-0ee8-4ca4-8c8d-88b4325c98f0", + "apim-request-id": "c707f692-f328-496a-9905-0d0b6e9aa426", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:41 GMT", + "Date": "Thu, 05 Nov 2020 20:53:08 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": "2e2d1272-5041-4c7a-b1ae-80efa1b0c0ee", - "lastUpdateDateTime": "2020-11-04T22:27:40Z", - "createdDateTime": "2020-11-04T22:27:40Z", - "expirationDateTime": "2020-11-05T22:27:40Z", + "jobId": "4ce60a8d-93f1-44b1-9d5f-4dbc472a764d", + "lastUpdateDateTime": "2020-11-05T20:53:08Z", + "createdDateTime": "2020-11-05T20:53:08Z", + "expirationDateTime": "2020-11-06T20:53:08Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/2e2d1272-5041-4c7a-b1ae-80efa1b0c0ee?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4ce60a8d-93f1-44b1-9d5f-4dbc472a764d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -86,7 +86,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "740ea8ad2ce006c130b149d1ae645358", @@ -95,55 +95,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e16ab6d2-7a90-4142-909d-481f5df70cc4", + "apim-request-id": "3a6dd832-5ebc-4c22-8bd1-fb7e4f22b866", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:42 GMT", + "Date": "Thu, 05 Nov 2020 20:53:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "35" }, "ResponseBody": { - "jobId": "2e2d1272-5041-4c7a-b1ae-80efa1b0c0ee", - "lastUpdateDateTime": "2020-11-04T22:27:40Z", - "createdDateTime": "2020-11-04T22:27:40Z", - "expirationDateTime": "2020-11-05T22:27:40Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/2e2d1272-5041-4c7a-b1ae-80efa1b0c0ee?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "07effce6ecdcc068be2a834d57229cd7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e61a457d-8906-496b-83fa-4f9878dee32d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:43 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "37" - }, - "ResponseBody": { - "jobId": "2e2d1272-5041-4c7a-b1ae-80efa1b0c0ee", - "lastUpdateDateTime": "2020-11-04T22:27:42Z", - "createdDateTime": "2020-11-04T22:27:40Z", - "expirationDateTime": "2020-11-05T22:27:40Z", + "jobId": "4ce60a8d-93f1-44b1-9d5f-4dbc472a764d", + "lastUpdateDateTime": "2020-11-05T20:53:09Z", + "createdDateTime": "2020-11-05T20:53:08Z", + "expirationDateTime": "2020-11-06T20:53:08Z", "status": "succeeded", "errors": [], "results": { @@ -315,7 +279,8 @@ "source": "#/results/documents/0/entities/2", "target": "#/results/documents/0/entities/1" } - ] + ], + "warnings": [] } ], "errors": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json index 2d61adc3d3fd4..166d949545458 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "100", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-685d63155988f3488a22c144cd4caeaa-9b5810b3eff22146-00", + "traceparent": "00-4b9f81ce2337d445bc920b1cee20b207-34d1b012d233dd4d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ac50657e0564f29f4cf677ed0a13f18a", @@ -30,18 +30,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "f5ce7a45-3c46-4b2a-be99-444e0660b511", - "Date": "Wed, 04 Nov 2020 22:28:05 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/84fde309-a936-4c2a-bace-5372e4d1fcf8", + "apim-request-id": "5f667ac4-0c53-4c85-afdb-122546c0b42c", + "Date": "Thu, 05 Nov 2020 20:53:30 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c657ffc5-9d2d-4ea6-9f98-0bc842db5a28", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "63" + "x-envoy-upstream-service-time": "79" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/84fde309-a936-4c2a-bace-5372e4d1fcf8?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c657ffc5-9d2d-4ea6-9f98-0bc842db5a28?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -50,7 +50,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ee06e8ec9851bf144fa0b3348eac9147", @@ -59,25 +59,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "526b03d3-7628-47c6-993a-d9d0f7161441", + "apim-request-id": "7152d9a4-de6d-4e23-996e-5027d279c0ca", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:28:05 GMT", + "Date": "Thu, 05 Nov 2020 20:53:30 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": "84fde309-a936-4c2a-bace-5372e4d1fcf8", - "lastUpdateDateTime": "2020-11-04T22:28:06Z", - "createdDateTime": "2020-11-04T22:28:05Z", - "expirationDateTime": "2020-11-05T22:28:05Z", + "jobId": "c657ffc5-9d2d-4ea6-9f98-0bc842db5a28", + "lastUpdateDateTime": "2020-11-05T20:53:31Z", + "createdDateTime": "2020-11-05T20:53:31Z", + "expirationDateTime": "2020-11-06T20:53:31Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/84fde309-a936-4c2a-bace-5372e4d1fcf8?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c657ffc5-9d2d-4ea6-9f98-0bc842db5a28?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -86,7 +86,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c56f00a8f06aed051c550a52700d0abf", @@ -95,25 +95,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6b34c728-6894-47d7-bbed-98560ef525d3", + "apim-request-id": "8e8ed554-ccfb-4e4a-95a9-a7ec053c33b5", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:28:06 GMT", + "Date": "Thu, 05 Nov 2020 20:53:32 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": "84fde309-a936-4c2a-bace-5372e4d1fcf8", - "lastUpdateDateTime": "2020-11-04T22:28:06Z", - "createdDateTime": "2020-11-04T22:28:05Z", - "expirationDateTime": "2020-11-05T22:28:05Z", - "status": "notStarted", + "jobId": "c657ffc5-9d2d-4ea6-9f98-0bc842db5a28", + "lastUpdateDateTime": "2020-11-05T20:53:32Z", + "createdDateTime": "2020-11-05T20:53:31Z", + "expirationDateTime": "2020-11-06T20:53:31Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/84fde309-a936-4c2a-bace-5372e4d1fcf8?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c657ffc5-9d2d-4ea6-9f98-0bc842db5a28?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -122,7 +122,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c9cabda7fe2ee58e51915dc3526b639f", @@ -131,19 +131,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "afe06df2-f42d-484e-96fa-b4f74adadfdf", + "apim-request-id": "30719ad7-d0f7-4861-878e-f74c0409d352", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:28:09 GMT", + "Date": "Thu, 05 Nov 2020 20:53:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "849" + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { - "jobId": "84fde309-a936-4c2a-bace-5372e4d1fcf8", - "lastUpdateDateTime": "2020-11-04T22:28:07Z", - "createdDateTime": "2020-11-04T22:28:05Z", - "expirationDateTime": "2020-11-05T22:28:05Z", + "jobId": "c657ffc5-9d2d-4ea6-9f98-0bc842db5a28", + "lastUpdateDateTime": "2020-11-05T20:53:32Z", + "createdDateTime": "2020-11-05T20:53:31Z", + "expirationDateTime": "2020-11-06T20:53:31Z", "status": "succeeded", "errors": [], "results": { @@ -315,7 +315,8 @@ "source": "#/results/documents/0/entities/2", "target": "#/results/documents/0/entities/1" } - ] + ], + "warnings": [] } ], "errors": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json index 404dfe3e25855..787b3112b9847 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7a2a8b91b27bda45b37a080163ac0dcf-6ea27683c6e83941-00", + "traceparent": "00-c73c8446d916bc42abf8318a47d77502-12b521343796aa45-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e5bbee521fd95f6f85d46045340cc5e0", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "5f53a6a4-66ee-4c0c-ab48-05b304d30262", - "Date": "Wed, 04 Nov 2020 22:27:43 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6045f011-90c1-4047-919b-663fad718667", + "apim-request-id": "91d7314f-05a8-4ed0-bcc8-6ecd0493a7b6", + "Date": "Thu, 05 Nov 2020 20:53:10 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e036d1ab-dcd4-4c84-97b6-c7d9f0bc616a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "99" + "x-envoy-upstream-service-time": "117" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6045f011-90c1-4047-919b-663fad718667?$skip=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e036d1ab-dcd4-4c84-97b6-c7d9f0bc616a?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cb3ef020b17077b8ee6ec139b3f21813", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "532bb73d-17e0-462e-9f2a-55eab781aa9d", + "apim-request-id": "3e7d14a0-5516-4bca-a95a-d94da70ecd50", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:43 GMT", + "Date": "Thu, 05 Nov 2020 20:53:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "6045f011-90c1-4047-919b-663fad718667", - "lastUpdateDateTime": "2020-11-04T22:27:43Z", - "createdDateTime": "2020-11-04T22:27:43Z", - "expirationDateTime": "2020-11-05T22:27:43Z", - "status": "notStarted", + "jobId": "e036d1ab-dcd4-4c84-97b6-c7d9f0bc616a", + "lastUpdateDateTime": "2020-11-05T20:53:10Z", + "createdDateTime": "2020-11-05T20:53:10Z", + "expirationDateTime": "2020-11-06T20:53:10Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6045f011-90c1-4047-919b-663fad718667?$skip=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e036d1ab-dcd4-4c84-97b6-c7d9f0bc616a?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "beccfc644b839adbc9a8ce8f926f328c", @@ -100,19 +100,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b4583426-d01b-4732-b63b-46089a328982", + "apim-request-id": "3351a68d-77a1-422a-93b8-2d7f46d55361", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:44 GMT", + "Date": "Thu, 05 Nov 2020 20:53:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { - "jobId": "6045f011-90c1-4047-919b-663fad718667", - "lastUpdateDateTime": "2020-11-04T22:27:44Z", - "createdDateTime": "2020-11-04T22:27:43Z", - "expirationDateTime": "2020-11-05T22:27:43Z", + "jobId": "e036d1ab-dcd4-4c84-97b6-c7d9f0bc616a", + "lastUpdateDateTime": "2020-11-05T20:53:11Z", + "createdDateTime": "2020-11-05T20:53:10Z", + "expirationDateTime": "2020-11-06T20:53:10Z", "status": "succeeded", "errors": [], "results": { @@ -900,7 +900,9 @@ } ] } - ] + ], + "relations": [], + "warnings": [] } ], "errors": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json index c62223a98239a..e6840f030ad58 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ba91fdf55f6eb74cbf7a419be71d3b6c-3133c0142777a34d-00", + "traceparent": "00-0065a6c552c38f40a202dbac00adf52b-a5f77bd3d991ca40-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9e757d2d83ce1123a7e23fad5376473f", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "f5ebc197-8f8c-47a1-bf81-5e8db99d3b4a", - "Date": "Wed, 04 Nov 2020 22:28:09 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/69e5de5b-7ffa-44bd-bafe-0d48a7c73db8", + "apim-request-id": "3046a795-f7ea-43e5-9765-0f5ce71d45cf", + "Date": "Thu, 05 Nov 2020 20:53:34 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/f5ecc778-fb5e-425f-8c6a-bd2855db35e4", "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": "75" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/69e5de5b-7ffa-44bd-bafe-0d48a7c73db8?$skip=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/f5ecc778-fb5e-425f-8c6a-bd2855db35e4?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "68a7733fd31f0864ffb638781102da48", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bdd53992-7324-42af-88b1-f9175fcadc39", + "apim-request-id": "efdc68c9-6a37-4158-9e38-82df70d82fb8", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:28:09 GMT", + "Date": "Thu, 05 Nov 2020 20:53:34 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": "9" }, "ResponseBody": { - "jobId": "69e5de5b-7ffa-44bd-bafe-0d48a7c73db8", - "lastUpdateDateTime": "2020-11-04T22:28:09Z", - "createdDateTime": "2020-11-04T22:28:09Z", - "expirationDateTime": "2020-11-05T22:28:09Z", - "status": "notStarted", + "jobId": "f5ecc778-fb5e-425f-8c6a-bd2855db35e4", + "lastUpdateDateTime": "2020-11-05T20:53:34Z", + "createdDateTime": "2020-11-05T20:53:34Z", + "expirationDateTime": "2020-11-06T20:53:34Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/69e5de5b-7ffa-44bd-bafe-0d48a7c73db8?$skip=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/f5ecc778-fb5e-425f-8c6a-bd2855db35e4?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "39eac04aaed6996e7ea6b9f62c4a8897", @@ -100,91 +100,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9f1cc916-d2d9-4b86-8f46-fdd73012c4a5", + "apim-request-id": "3e866ae9-6084-4e53-8171-29e831cd5911", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:28:11 GMT", + "Date": "Thu, 05 Nov 2020 20:53:35 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": "42" }, "ResponseBody": { - "jobId": "69e5de5b-7ffa-44bd-bafe-0d48a7c73db8", - "lastUpdateDateTime": "2020-11-04T22:28:09Z", - "createdDateTime": "2020-11-04T22:28:09Z", - "expirationDateTime": "2020-11-05T22:28:09Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/69e5de5b-7ffa-44bd-bafe-0d48a7c73db8?$skip=1\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "eaa1ba814c8b59b1196c9f174baaffa5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6ca87ef8-7ea1-4513-848e-9f58f6105426", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:28:12 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": "69e5de5b-7ffa-44bd-bafe-0d48a7c73db8", - "lastUpdateDateTime": "2020-11-04T22:28:09Z", - "createdDateTime": "2020-11-04T22:28:09Z", - "expirationDateTime": "2020-11-05T22:28:09Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/69e5de5b-7ffa-44bd-bafe-0d48a7c73db8?$skip=1\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9263f6070e8c9068040de978196ddcb4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "07fb6a7f-00a6-4de2-8d6c-f31d529fc6ca", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:28:13 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" - }, - "ResponseBody": { - "jobId": "69e5de5b-7ffa-44bd-bafe-0d48a7c73db8", - "lastUpdateDateTime": "2020-11-04T22:28:12Z", - "createdDateTime": "2020-11-04T22:28:09Z", - "expirationDateTime": "2020-11-05T22:28:09Z", + "jobId": "f5ecc778-fb5e-425f-8c6a-bd2855db35e4", + "lastUpdateDateTime": "2020-11-05T20:53:34Z", + "createdDateTime": "2020-11-05T20:53:34Z", + "expirationDateTime": "2020-11-06T20:53:34Z", "status": "succeeded", "errors": [], "results": { @@ -972,7 +900,9 @@ } ] } - ] + ], + "relations": [], + "warnings": [] } ], "errors": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json index 78d5b87b766ca..ff762c493a897 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8b0ae490aaaecf44b0d7d192e16fca82-a7180145aa2bd84b-00", + "traceparent": "00-5de43e214ab03d4b9600aa47da365633-bb3c17de4a2b4748-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8efbb01e5acc858dcd1ff153470e4093", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "856d4700-99e3-451d-8dc8-7c0bc591d5e4", - "Date": "Wed, 04 Nov 2020 22:27:45 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9ccdd2db-8ac9-4d94-a981-7546c50e25a0", + "apim-request-id": "6087bcc5-4935-4053-a627-7299533f0753", + "Date": "Thu, 05 Nov 2020 20:53:12 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/3e089982-73db-461e-99c7-93c79fb3f2e9", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "109" + "x-envoy-upstream-service-time": "113" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9ccdd2db-8ac9-4d94-a981-7546c50e25a0?$top=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/3e089982-73db-461e-99c7-93c79fb3f2e9?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2660bb690f1e14745ff6a5df3888e782", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f4380e77-b91d-4758-ad8a-62af032c4940", + "apim-request-id": "dc9aff99-acfe-4b31-bed9-7e13d8688a7e", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:45 GMT", + "Date": "Thu, 05 Nov 2020 20:53:12 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": "6" }, "ResponseBody": { - "jobId": "9ccdd2db-8ac9-4d94-a981-7546c50e25a0", - "lastUpdateDateTime": "2020-11-04T22:27:45Z", - "createdDateTime": "2020-11-04T22:27:45Z", - "expirationDateTime": "2020-11-05T22:27:45Z", - "status": "notStarted", + "jobId": "3e089982-73db-461e-99c7-93c79fb3f2e9", + "lastUpdateDateTime": "2020-11-05T20:53:12Z", + "createdDateTime": "2020-11-05T20:53:12Z", + "expirationDateTime": "2020-11-06T20:53:12Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9ccdd2db-8ac9-4d94-a981-7546c50e25a0?$top=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/3e089982-73db-461e-99c7-93c79fb3f2e9?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4c0a13cbdad64cf8d7c97184a7f98e05", @@ -100,55 +100,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b1a75c8d-021d-4e53-a9b4-544342205354", + "apim-request-id": "b7e7a895-1a09-48f1-840d-6a1d1c5f38c8", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:46 GMT", + "Date": "Thu, 05 Nov 2020 20:53:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { - "jobId": "9ccdd2db-8ac9-4d94-a981-7546c50e25a0", - "lastUpdateDateTime": "2020-11-04T22:27:45Z", - "createdDateTime": "2020-11-04T22:27:45Z", - "expirationDateTime": "2020-11-05T22:27:45Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9ccdd2db-8ac9-4d94-a981-7546c50e25a0?$top=1\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "89adbdfd593e0f483ce62ed6b5ad4d44", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "15abd3db-93fa-4e62-b0ca-a5f57e93e44a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:27:47 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" - }, - "ResponseBody": { - "jobId": "9ccdd2db-8ac9-4d94-a981-7546c50e25a0", - "lastUpdateDateTime": "2020-11-04T22:27:47Z", - "createdDateTime": "2020-11-04T22:27:45Z", - "expirationDateTime": "2020-11-05T22:27:45Z", + "jobId": "3e089982-73db-461e-99c7-93c79fb3f2e9", + "lastUpdateDateTime": "2020-11-05T20:53:12Z", + "createdDateTime": "2020-11-05T20:53:12Z", + "expirationDateTime": "2020-11-06T20:53:12Z", "status": "succeeded", "errors": [], "results": { @@ -320,13 +284,14 @@ "source": "#/results/documents/0/entities/2", "target": "#/results/documents/0/entities/1" } - ] + ], + "warnings": [] } ], "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9ccdd2db-8ac9-4d94-a981-7546c50e25a0?$skip=1\u0026$top=1" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/3e089982-73db-461e-99c7-93c79fb3f2e9?$skip=1\u0026$top=1" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json index 009561b0fe104..fa95b0a1b0872 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4012ba6bd75c334bb916cdd1f451ace4-bbd73a4df6413d46-00", + "traceparent": "00-971baaa10307824a841852d591e9d540-458cac09dd34b646-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "724372daad48480e76510121b5839b2e", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "57060423-f66c-4e7b-8443-5a448a5673d3", - "Date": "Wed, 04 Nov 2020 22:28:13 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e19c70c2-7067-40c7-ae38-a3a31568ac49", + "apim-request-id": "4bcaf0a3-4c0e-4145-992a-ad6d5280a7aa", + "Date": "Thu, 05 Nov 2020 20:53:35 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/d5c84d10-7984-41cd-99ab-8e3e62c4ceba", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "95" + "x-envoy-upstream-service-time": "78" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e19c70c2-7067-40c7-ae38-a3a31568ac49?$top=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/d5c84d10-7984-41cd-99ab-8e3e62c4ceba?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "934d972f1ac830d592026d8c2beeac11", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "231780f4-8165-4b91-8d67-0cc76ea5f2a0", + "apim-request-id": "2683cca6-4208-4992-b6a8-a13541196fd3", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:28:13 GMT", + "Date": "Thu, 05 Nov 2020 20:53:35 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": "10" }, "ResponseBody": { - "jobId": "e19c70c2-7067-40c7-ae38-a3a31568ac49", - "lastUpdateDateTime": "2020-11-04T22:28:13Z", - "createdDateTime": "2020-11-04T22:28:13Z", - "expirationDateTime": "2020-11-05T22:28:13Z", + "jobId": "d5c84d10-7984-41cd-99ab-8e3e62c4ceba", + "lastUpdateDateTime": "2020-11-05T20:53:36Z", + "createdDateTime": "2020-11-05T20:53:36Z", + "expirationDateTime": "2020-11-06T20:53:36Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e19c70c2-7067-40c7-ae38-a3a31568ac49?$top=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/d5c84d10-7984-41cd-99ab-8e3e62c4ceba?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ceb201b6e72887166038d111abceeca7", @@ -100,19 +100,55 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d4cb806d-0748-41a2-8eb2-d1fb450fed63", + "apim-request-id": "18d6f3ce-927f-40e7-9256-c843f73c8a05", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:28:15 GMT", + "Date": "Thu, 05 Nov 2020 20:53:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "54" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "e19c70c2-7067-40c7-ae38-a3a31568ac49", - "lastUpdateDateTime": "2020-11-04T22:28:14Z", - "createdDateTime": "2020-11-04T22:28:13Z", - "expirationDateTime": "2020-11-05T22:28:13Z", + "jobId": "d5c84d10-7984-41cd-99ab-8e3e62c4ceba", + "lastUpdateDateTime": "2020-11-05T20:53:36Z", + "createdDateTime": "2020-11-05T20:53:36Z", + "expirationDateTime": "2020-11-06T20:53:36Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/d5c84d10-7984-41cd-99ab-8e3e62c4ceba?$top=1\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9e71f8d80ef6c0f19d12df4640821c87", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "231c866d-be75-4a90-aedf-dd6dc7a4d43a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 05 Nov 2020 20:53:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "32" + }, + "ResponseBody": { + "jobId": "d5c84d10-7984-41cd-99ab-8e3e62c4ceba", + "lastUpdateDateTime": "2020-11-05T20:53:38Z", + "createdDateTime": "2020-11-05T20:53:36Z", + "expirationDateTime": "2020-11-06T20:53:36Z", "status": "succeeded", "errors": [], "results": { @@ -284,13 +320,14 @@ "source": "#/results/documents/0/entities/2", "target": "#/results/documents/0/entities/1" } - ] + ], + "warnings": [] } ], "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e19c70c2-7067-40c7-ae38-a3a31568ac49?$skip=1\u0026$top=1" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/d5c84d10-7984-41cd-99ab-8e3e62c4ceba?$skip=1\u0026$top=1" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json index a125fe568b5e2..9909d2c8a0331 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json @@ -11,9 +11,9 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c71e50adf442e94f81bdbb6eb9519de9-141264f32f10c340-00", + "traceparent": "00-a30dec07fc6b344e8a998cc2d45571df-d4d0643d5eef1c43-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d727f8b3ab5caeec2a15d6a3b1743ade", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7f8d92d3-1b35-466f-9fa0-5fdf2a08d670", + "apim-request-id": "d7fc6384-91f9-446f-bea5-3ef308d0d486", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:28:15 GMT", + "Date": "Thu, 05 Nov 2020 20:53:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "73" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json index 536c2c3a9892d..cfef0bf0357ed 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-07eea71beb0af44fbb357819b9566ca7-799a9371ea923144-00", + "traceparent": "00-60f2ac27f9ac9e48b1ec2eef54ebece3-bc2ea109efdffd4c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "476534efbdc7cda5ab406b046713b5b6", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5930b9b6-825e-49bf-b4b1-a01ede134bc8", + "apim-request-id": "54d986e6-d251-43f7-8407-fff01d1fb0c0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:28:18 GMT", + "Date": "Thu, 05 Nov 2020 20:53:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json index 753d819074ade..54a7997127ac6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-eff1fd0b58e4c645a3dfce6e78ab0386-1f7f613ec695544d-00", + "traceparent": "00-db3526ec2190494fa21fb672174769b0-201bb9106e67e748-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "297e980ed9e8189820ebd45ff129bc5c", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "158d3e62-bd2c-496e-8333-0172d9f79c91", + "apim-request-id": "3bbfb088-5adc-4038-b39e-4132570b4cc9", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:28:15 GMT", + "Date": "Thu, 05 Nov 2020 20:53:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "52" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json index 14ea64386d1f2..adcb0dbb0f59a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e3033d6676efed4ba5cd9f70542c78a2-df1e844e46613447-00", + "traceparent": "00-e617ad3c2af4aa4db2b33f0fbb8a02c6-cb6ad4db8eebb943-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "efbfe45b25f6d2a2775e1edd2fe4e7aa", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9d328cd7-a1af-428c-ae8b-8d9377f5716f", + "apim-request-id": "6b5ba48a-b17b-4dca-9137-16a1aba8d85b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:28:18 GMT", + "Date": "Thu, 05 Nov 2020 20:53:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "28" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json index 95f4af01b9479..15fe86d0f4d21 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json @@ -11,9 +11,9 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ab6ab61a3ed19a41883994e5afe55d4f-961136de9b011043-00", + "traceparent": "00-2dae1b97f1f2e44e92cb783eb65ee62d-f71068d9ba00694d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "70aff255bc0a587f23734ec6facb2924", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8f4b2526-ec3f-4ce5-a439-79ce11b986ad", + "apim-request-id": "3dd6af75-634f-43b0-a451-74bcfed3fcf9", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:28:15 GMT", + "Date": "Thu, 05 Nov 2020 20:53:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json index 592eab84d5f57..184f301be2278 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5f1ddbb6bfdb2945ad248a6cbe2844f8-b0fada14923e6047-00", + "traceparent": "00-f267a33233800b43b60ad8e6826e5de3-6e5d64a39e7f4d44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b6c8d0c26960e1039b6b5addff48c5fe", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "523db044-fe92-490b-be1d-23ea92364eb4", + "apim-request-id": "825941f9-3d32-468f-9a03-de4ff761d241", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:28:18 GMT", + "Date": "Thu, 05 Nov 2020 20:53:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json index acd93277e94c3..2f2a361d51c16 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json @@ -11,9 +11,9 @@ "Content-Length": "229", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bdbe42295883cd4b9321e6e7d5eeba2f-f205d2c3b0472547-00", + "traceparent": "00-dc9c42348f19fe42983cac5877c35d0b-0e993f1957865943-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1199dc8afc6a0ac5f0743171c35d6934", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "702bc1a6-5a74-49eb-8b6f-dc4d4c4e0cfa", + "apim-request-id": "8825ef6e-682c-4c2b-9a5d-38a41a120894", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:28:16 GMT", + "Date": "Thu, 05 Nov 2020 20:53:38 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": "22" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json index 097eb69a4ccef..e34f425444cfd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "229", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-10402173aa58bc49b0f03dd2b0dd43c7-bb1c3f02575d7d43-00", + "traceparent": "00-9b2299f4c3b958438301a4e9108ec715-4734819a44e28547-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4f030e46456aaab2ab975c8325cfab86", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c415d15e-068c-4f02-b7ea-3f9445d5c69b", + "apim-request-id": "60fb0f5d-8548-4a05-ac6d-23ec3166a627", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:28:18 GMT", + "Date": "Thu, 05 Nov 2020 20:53:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json index d9bdeb7236a6c..f59cf3f265317 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json @@ -11,9 +11,9 @@ "Content-Length": "561", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b790ae7bc2ae0b469c16aa2606b75b5d-8c300f00f7ab6042-00", + "traceparent": "00-967bcef8806c474f83ec1ebfcd919521-c9ca05b00db0d743-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "192c3c1f91647770ee90b0e32a189a79", @@ -55,13 +55,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "b7e38cda-de4f-42ee-843c-38b5400ad896", + "apim-request-id": "b467ea42-971b-4183-aad2-20d90dc4157e", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:28:16 GMT", + "Date": "Thu, 05 Nov 2020 20:53:39 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": "6" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json index d019110dcaecb..16ad762ac8aae 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json @@ -11,9 +11,9 @@ "Content-Length": "561", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5839e115f1c6ac4cb49ae8089b09e8b0-4746d9ebdc449245-00", + "traceparent": "00-4cd39ebc30e22a439e2d327c2c01dea7-2824a7a12fe64243-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "aa01d6b77b2b2d76ec0e72d5ad5d4024", @@ -55,13 +55,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "b01d9c6e-e842-460d-b72a-b41bb0cdaa98", + "apim-request-id": "d6f1e731-627b-4065-b451-ea105efc898a", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:28:18 GMT", + "Date": "Thu, 05 Nov 2020 20:53:41 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": "5" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json index b6f0453fa3c0d..3a23079a38642 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json @@ -11,9 +11,9 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1f9fe4ba9033024a92b9993e8e586f84-676621fa9fd2784e-00", + "traceparent": "00-275e5c642baaff41872f863265ef024d-b32addd06c835e41-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "39e775856c33e5040de74ed9f57d5d06", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "87e2c99c-b46f-4688-b261-a8995a29fa95", + "apim-request-id": "03b6be35-18ea-4ce5-b782-b2fad5b141dc", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:28:16 GMT", + "Date": "Thu, 05 Nov 2020 20:53:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json index 2fe80d424c075..2ee0b417cf909 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c53f9787c095eb498427e61a8d0bc5aa-981fc8566f83194c-00", + "traceparent": "00-57db300e367f9642970a8acc723913c7-1b89c768a786fd41-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9f2af246abde141d1e5ee3f98d0120cc", @@ -30,9 +30,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "fd55b13c-1dbe-4b26-8f1c-6ffca4982963", + "apim-request-id": "48c1de13-bc02-464f-9534-164974caa998", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:28:19 GMT", + "Date": "Thu, 05 Nov 2020 20:53:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json index b33ae1b727be1..653f357ca37ef 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json @@ -11,9 +11,9 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4c37c44db196a34db7a541edc7e83092-2316bae5abb6c744-00", + "traceparent": "00-6ffa896628c44544ac77584afdae3ee8-32fa4fe64cf0b34c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "73d297ac9bb0c1f746fd7bde1da9241c", @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d8f1312a-7779-4f55-8a16-2d1dbd6936e4", + "apim-request-id": "8556c319-1b97-400c-89bd-631378750d0b", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:28:16 GMT", + "Date": "Thu, 05 Nov 2020 20:53:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json index 2465e8517223d..daa64fdb573d0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3d806de16a77ce4eac0e81058c206f4c-c8d3626ff0b34c4b-00", + "traceparent": "00-8556fef1ddbafa4d9ae1fe695116f3ca-c233edc158479042-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "eb53c4f0f4de762a1a8dd9e931cc3cf8", @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "06b2ff1e-602b-45d9-8177-3b1b3be53cd1", + "apim-request-id": "7892a6b7-731a-48ac-a840-4e80074a2e2c", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 04 Nov 2020 22:28:19 GMT", + "Date": "Thu, 05 Nov 2020 20:53:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-envoy-upstream-service-time": "2" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json index 39fa7efb763d1..c2665e96ea47d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fe0c54c59692d443b086e3bfc772015f-1071c9cfbffaed40-00", + "traceparent": "00-17c9b9508dc15e47b9a874bfd32213c7-b452dd4c3f03294e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "07178a1f00e9eae492911a1486f7f75f", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7949a9b0-2260-482a-b6a6-60a5e255ef4e", + "apim-request-id": "b7db142f-19a9-4c6c-be43-b4377c6f749a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:28:16 GMT", + "Date": "Thu, 05 Nov 2020 20:53:39 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": "23" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json index 74d3ce82518b8..ba67e3a2c5186 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-727128ca27dfd040ba42a2096b1f6217-55fa36fee3bce548-00", + "traceparent": "00-045d01ea0ed02542b45d558ff6ffe4a7-4dac72bbd3553449-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c81f2c7c8424b466b144609b6251448a", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "82d84ced-61d5-48f7-ac10-015c9a8dd7a6", + "apim-request-id": "0085dae7-3e0c-4298-937f-080808075f15", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:28:19 GMT", + "Date": "Thu, 05 Nov 2020 20:53:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json index d4f2fa74d1ac0..55093806b2c13 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json @@ -11,9 +11,9 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-95cbd2474d274143ac9a34c6d5a2073a-e531ff07621bcf4d-00", + "traceparent": "00-9f48e40bf8001e4eaf004410645f5b2e-fed70cc72b6e1e4f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5dbd0e4d74f1991eb1c26555a87606e8", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c41f2381-bdc0-4d32-a351-7916cf434bb4", + "apim-request-id": "348e90a2-5117-4181-88bc-27cfa9683981", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:28:16 GMT", + "Date": "Thu, 05 Nov 2020 20:53:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json index 773138e541cec..b372b2b7d9722 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-573b3e204847f64dbf79cbc1dd7e3f4b-ffeeaf2807f56344-00", + "traceparent": "00-99e3bd2b7905b74896bb19c1658437f9-7ca8e57d80e6184b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "552924120f9751fcf8de062c168ba5ca", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "905c2b1f-1d2d-44fa-98ba-9967b47e7ae3", + "apim-request-id": "2dca06df-02d6-4623-aeb8-674edcadecb7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:28:19 GMT", + "Date": "Thu, 05 Nov 2020 20:53:42 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": "18" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json index 278b1d6cbd03e..2ae26162e619c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json @@ -11,9 +11,9 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-84df59259eff7b4cb0a19ffb12e01cf2-f7d4a0017a75f241-00", + "traceparent": "00-886c5e45b721d740a4fad1f306ea27f8-aa2a9652eeacbf46-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "934878dc21c8a0a984e7d2d9ad60c773", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "382316c1-0eaf-4f46-b7c4-55fc57cd0c33", + "apim-request-id": "7947f5f0-9be7-40d4-ada5-8c0dc01e27e8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:28:18 GMT", + "Date": "Thu, 05 Nov 2020 20:53:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "736" + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json index e2e712196798f..3b79881228d56 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-10ad4b0ea43229418d63fde8503c28b2-987f0587c084894c-00", + "traceparent": "00-51540347bbf66d419ef3441c023c529a-aad56ea78a0e6443-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "25dfcc445911727a9003f8f77dc4c2e5", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "081034b7-7f95-4cb8-984c-d3e54a0d6561", + "apim-request-id": "a7a0b0be-e046-486b-924b-ca82863b2eb0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:28:19 GMT", + "Date": "Thu, 05 Nov 2020 20:53:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "790" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json index ac9f873ed7ccd..ec843cc82f13c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json @@ -11,9 +11,9 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-00e96aa6d024424285733b28d3cc4f77-325b98411dcde94c-00", + "traceparent": "00-d708793ad930414bb0df369646ac2668-ff3d3fb07e24ed4a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c173c94341dba618c4f393086e026774", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2ff00581-409d-4eaf-83ed-b6b1154856e0", + "apim-request-id": "f785eea3-a1c0-459a-aa46-23a6f82ba38d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:28:21 GMT", + "Date": "Thu, 05 Nov 2020 20:53:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1557" + "x-envoy-upstream-service-time": "125" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json index 0ef31d43d3d66..a7268f1c2430e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cba3deac3939214190f149c5b8fc58ad-e21782602633bd49-00", + "traceparent": "00-456ebb6a36b61e4787f1a3ee815a30a5-055ecc54b52be042-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2cf317139685f87e3e57184c7620cca1", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1c371dbb-fe68-427f-aa88-d0f96afe45a0", + "apim-request-id": "2d70f4e2-b34a-4a78-9e92-4a38318b054c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:28:31 GMT", + "Date": "Thu, 05 Nov 2020 20:53:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1864" + "x-envoy-upstream-service-time": "112" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json index 0fa043aa5f581..503960db60736 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cc2c79c6311efc43b778d4d3b7ecc335-2f384c85e031e44f-00", + "traceparent": "00-1b2a3c4c4bf55345a8873fd1c9dab810-06d845200ee4f449-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "eecc011d319477b6a3836264a1185b02", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "18647117-7aa7-4c39-92d4-847a2fc95657", + "apim-request-id": "171e01f9-c37a-401c-9071-9dda3b9e8627", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:28:23 GMT", + "Date": "Thu, 05 Nov 2020 20:53:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1192" + "x-envoy-upstream-service-time": "135" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json index f079c5aa91c24..3a4f448363abe 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e80dd1ba1e6d3c4fba160e74d6cc12c7-5a49441478c50742-00", + "traceparent": "00-383880eac362fd4f8df541ceab7b431a-2d773c46770e2241-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8ceec0e33c8ae486f712d7bec0815450", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b4a0dbb2-4b31-4f98-80ee-a6b774f6ec7e", + "apim-request-id": "452eafe5-72c1-4c68-848f-8b7661cf94a7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:28:34 GMT", + "Date": "Thu, 05 Nov 2020 20:53:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1729" + "x-envoy-upstream-service-time": "123" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json index 208a03336ceb8..c73f81275cb05 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json @@ -11,9 +11,9 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f42466bc2d6b8d4aaa0f07aa33bc3259-c6af36138e4f8640-00", + "traceparent": "00-91aa1f43fa126f4da12f2e11594c74ae-8059a0750cc50a40-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f53bbc38a2b6814e4c65b541758c5e0a", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ab7ad582-9f72-4b3c-8d5c-244f85ae3a17", + "apim-request-id": "4c5eec1a-4502-4def-a5bd-b45d76c9f8f9", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:28:25 GMT", + "Date": "Thu, 05 Nov 2020 20:53:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1663" + "x-envoy-upstream-service-time": "218" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json index ec4e1b6c9397c..d14de871c4ec2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0336428fe1b76d4fbc9732d98e54836f-b9d37b8befffe94d-00", + "traceparent": "00-0562e763b51b194ea757cbce1348eebc-e4bdb68fc78fa24f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "79f5f1883ef14a0947e802df013a4e11", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "185a101d-1b7a-463d-9ea0-c127da496ada", + "apim-request-id": "f212202d-1804-44d7-94b5-e83e077472f7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:28:35 GMT", + "Date": "Thu, 05 Nov 2020 20:53:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "912" + "x-envoy-upstream-service-time": "140" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json index 630ab892c7fc0..d98aa8e40ceb8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json @@ -11,9 +11,9 @@ "Content-Length": "331", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0d4101e01b14f440a5fdd4ddcfca8462-b469eba67d660f46-00", + "traceparent": "00-c43e10aea892ab49962fb8f56d781091-d118e31bbb469b4c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e382b2e96bf3675f4d7d7960b8b32916", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b03c7140-12ef-4085-b54a-de780c8d665f", + "apim-request-id": "efaf3de3-189d-4dec-a037-d1991a967167", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:28:25 GMT", + "Date": "Thu, 05 Nov 2020 20:53:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "784" + "x-envoy-upstream-service-time": "111" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json index 4bb7bcbeaaa61..5779d236c1c70 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "331", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a2786bf5b71a4f4997565041c3479484-c9ffe9e34495b545-00", + "traceparent": "00-2c0f9edf686cd941a72164e9a9797262-b5949fe21c7a514c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e218864f9605e01c86941869a0be6841", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "333a6c0f-d08b-4378-88db-2abf579047af", + "apim-request-id": "2778265c-f13e-4742-9be9-0123fddbdc8d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:28:37 GMT", + "Date": "Thu, 05 Nov 2020 20:53:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2217" + "x-envoy-upstream-service-time": "126" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json index 03b99d7e05bd3..8d778eaf57b28 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2c98a1ceb1833f429ee7eccabfabf47b-aa64132fbfadb04e-00", + "traceparent": "00-fb6a80023742fb4886968a20c7ccde7a-0580e4bc896dc849-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9d7c7445e676a32cbc4854ae746d53b1", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1dac8220-82ca-4df7-a56b-f03e18f895dd", + "apim-request-id": "04485358-64f6-423c-b0e5-de33b12d2a89", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:28:26 GMT", + "Date": "Thu, 05 Nov 2020 20:53:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "555" + "x-envoy-upstream-service-time": "112" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json index 93c7ef41c5af4..1bd1c0bf79ccf 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fd1d6f77d89b2348b8c5107f31e1dec8-88e547ee3f75ea4d-00", + "traceparent": "00-f28f0f8e92256243b9775836c299f87a-c811b64992722d4f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6372c6fc37bbef8068bba6a5d3c4483a", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c6d2ead5-6600-4462-b098-be1751183860", + "apim-request-id": "d18f86a8-41f8-4d5b-b893-b61199f27164", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Wed, 04 Nov 2020 22:28:38 GMT", + "Date": "Thu, 05 Nov 2020 20:53:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1137" + "x-envoy-upstream-service-time": "117" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json index 2b91a2225a3b6..7dff489f96438 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json @@ -11,9 +11,9 @@ "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3c51949e310b1f4995edb486cc419516-e217cdeabd87d44e-00", + "traceparent": "00-53bef08798ecb44b963a72b3674fc798-0f58d2ac30725e43-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "40f3d388777c07f3a5efa0af174b7c81", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9ddbb6d0-26b0-41ed-aac1-26e288fabc95", + "apim-request-id": "7ba35dee-50c6-4fa8-9411-0d4199cec9fa", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:28:28 GMT", + "Date": "Thu, 05 Nov 2020 20:53:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1373" + "x-envoy-upstream-service-time": "94" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json index daf8d6365dcae..568b0e6b53247 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-95b17da3bc013a4d829ba6f0a609a005-7cddaa3bd0ef0b48-00", + "traceparent": "00-422728eceed5ba45a7868ac11c1ad934-220e0d95139e2f4b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b40e3ff9f3697ab649fbbfa57575c10c", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "44971277-2cee-4eb4-baa0-e32086fba78c", + "apim-request-id": "4f5e9b52-a654-48f1-8e98-85627a729371", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:28:38 GMT", + "Date": "Thu, 05 Nov 2020 20:53:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "359" + "x-envoy-upstream-service-time": "95" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json index 6bcce654ba353..6e82398c66dfc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json @@ -11,9 +11,9 @@ "Content-Length": "107", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b65e8e0596945a479e7368964b5f9283-e3818b5aa639164a-00", + "traceparent": "00-a6de99c511204847ad921ea20fa5fdef-56901c180d18334e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5757e3544f245670b8a4c82d4b10bc4c", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "362bc8fc-7e76-430c-b7f8-166beecc4b82", + "apim-request-id": "9ccf8939-482b-47ac-b33f-9c7d8a1d6273", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:28:29 GMT", + "Date": "Thu, 05 Nov 2020 20:53:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "877" + "x-envoy-upstream-service-time": "88" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json index 91ecddb34bd5c..bb63880881756 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "107", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c18722f0336a8642b2f0d545aa04d869-433b34e3ef89ff43-00", + "traceparent": "00-3c2dd06c552a2f4498f0bc8eae7c0c15-57485460c8681740-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4a37fade57ea6b5a5ff8ab22891b6b20", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "14cfd063-9732-4c01-b6fd-28d30f3abf6b", + "apim-request-id": "c45da482-bfe7-4e3c-88ba-bc1f0e3c873e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:28:39 GMT", + "Date": "Thu, 05 Nov 2020 20:53:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "420" + "x-envoy-upstream-service-time": "83" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json index 6fbab9b91a725..936e0f5bd9c97 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json @@ -11,9 +11,9 @@ "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-eaeeb8943d672a459ab6b547131479f3-5dd12f61dd913947-00", + "traceparent": "00-f57af7305f69fa4bb86cb790efa4e2e3-061cddf57bb1b246-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2a5fd4f3bf3db4629b14e3f9050dd01c", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3f998d8f-2722-4390-b220-0b2ddf1e7f5c", + "apim-request-id": "5fc5d629-265a-4b52-abda-28bcc38da156", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:28:29 GMT", + "Date": "Thu, 05 Nov 2020 20:53:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "471" + "x-envoy-upstream-service-time": "98" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json index f38221ef2ef93..f962d7d0b1bbd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cec2ed73d814714fadf1d91fc530c299-21f98027e09b974c-00", + "traceparent": "00-c01eed3cf5459f47bb7be400e2efaf65-f1aaa70504d5904e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "df1d0a85dc552d663ac944ac69a80a0d", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e71687a0-4413-4b75-837c-a0bc16b98a57", + "apim-request-id": "0710a913-6936-4b93-ac9d-f89b30b961cc", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:28:41 GMT", + "Date": "Thu, 05 Nov 2020 20:53:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "995" + "x-envoy-upstream-service-time": "92" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json index 968fe092cb2f3..20fa26a6d6c5d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json @@ -11,9 +11,9 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d322e0565d6a564487e90d04484ad006-405b6826b7ffc44f-00", + "traceparent": "00-74b5f7bf32a3c2498d61e404083bc6d2-d857321e5c82f44c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2bbb7414e3ce80e03f8df0adf3eb7d0c", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bfd32fc1-b8b8-4eb0-a4e5-5684921b89a5", + "apim-request-id": "bb6f395a-ca52-42f4-ad4e-9c7fb50da0cb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:28:41 GMT", + "Date": "Thu, 05 Nov 2020 20:53:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "334" + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json index 1158b7bc78ba4..6bbdd39b71470 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json @@ -11,9 +11,9 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1cf696161a9dfe40b0e18405c7ec7ba4-fd1defc97bcf2a48-00", + "traceparent": "00-b3c6713008ccac4aa8c7a0ac6e19e799-90b22f1fc3d26646-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6470d4cf3910c27ceead9bc2cf6c8aa0", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a04420aa-dabd-4421-b29a-a6232817cf2a", + "apim-request-id": "7b12b329-7bd4-479e-9053-72713451edef", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:28:45 GMT", + "Date": "Thu, 05 Nov 2020 20:53:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1184" + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json index f4081dcccc9e2..9930ff848859e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json @@ -11,9 +11,9 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4475cef298275845b44f3dfe1787d503-24dbd057c6c55a44-00", + "traceparent": "00-b2a951b141ad0d46918cf5db604c4a01-5baf817850471c46-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "31841aab9edddcddb56c91e8fafcead5", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "11ae83ff-9eaf-438c-8c48-6d74630794b4", + "apim-request-id": "0aa431c5-53bb-4a2f-93c1-567094682914", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:28:41 GMT", + "Date": "Thu, 05 Nov 2020 20:53:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "documents": [ @@ -66,9 +66,9 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2a60c4668c64754abf40f284fb8813d9-efdf0de8717c624e-00", + "traceparent": "00-21d2a06d344d13409caaa8df5aa179c0-98a85873eb88c945-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "13daa31269993bffe7f19e3dc94f204e", @@ -86,7 +86,7 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Length": "224", - "Date": "Wed, 04 Nov 2020 22:28:41 GMT" + "Date": "Thu, 05 Nov 2020 20:53:47 GMT" }, "ResponseBody": "eyJlcnJvciI6eyJjb2RlIjoiNDAxIiwibWVzc2FnZSI6IkFjY2VzcyBkZW5pZWQgZHVlIHRvIGludmFsaWQgc3Vic2NyaXB0aW9uIGtleSBvciB3cm9uZyBBUEkgZW5kcG9pbnQuIE1ha2Ugc3VyZSB0byBwcm92aWRlIGEgdmFsaWQga2V5IGZvciBhbiBhY3RpdmUgc3Vic2NyaXB0aW9uIGFuZCB1c2UgYSBjb3JyZWN0IHJlZ2lvbmFsIEFQSSBlbmRwb2ludCBmb3IgeW91ciByZXNvdXJjZS4ifX0=" }, @@ -101,9 +101,9 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e7d7f3b6d6405d4b8403931e0044c636-de835d1686c7ad45-00", + "traceparent": "00-b37deeadc8c8a14991c835ae3860fbe2-b63366b35b77194f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d85ee288a420af625bce0d2748754fc8", @@ -120,14 +120,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cab14e4a-efff-4f75-9137-1bbbc1e60c57", + "apim-request-id": "40daf2e5-25ed-437c-853a-378443109168", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:28:42 GMT", + "Date": "Thu, 05 Nov 2020 20:53:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json index 98e12fc9ac4a6..931486c2f96c7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json @@ -11,9 +11,9 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-62524459e894fc4a8c918bc568ac777a-e2f8d7ace9dae547-00", + "traceparent": "00-b7d79e6f0433db419e86c56275bda7a5-76144c4226dd684d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fb9f47ae04f9d825012386a2a51b9727", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7b840bb5-5b34-47e2-9b9d-963a9c7ff83d", + "apim-request-id": "c20a1121-c288-420f-99a9-d4bc7ae3fbfd", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:28:45 GMT", + "Date": "Thu, 05 Nov 2020 20:53:49 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": "6" }, "ResponseBody": { "documents": [ @@ -66,9 +66,9 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f11bf8864d6b3744b049d16f3ce49f31-3f7d5703975a3941-00", + "traceparent": "00-6bc5f27532c64c418416c70e17e3dbb3-9ece947d1fa58849-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5aa0f7e4723c7c582e8ca602e03d8c8c", @@ -86,7 +86,7 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Length": "224", - "Date": "Wed, 04 Nov 2020 22:28:45 GMT" + "Date": "Thu, 05 Nov 2020 20:53:49 GMT" }, "ResponseBody": "eyJlcnJvciI6eyJjb2RlIjoiNDAxIiwibWVzc2FnZSI6IkFjY2VzcyBkZW5pZWQgZHVlIHRvIGludmFsaWQgc3Vic2NyaXB0aW9uIGtleSBvciB3cm9uZyBBUEkgZW5kcG9pbnQuIE1ha2Ugc3VyZSB0byBwcm92aWRlIGEgdmFsaWQga2V5IGZvciBhbiBhY3RpdmUgc3Vic2NyaXB0aW9uIGFuZCB1c2UgYSBjb3JyZWN0IHJlZ2lvbmFsIEFQSSBlbmRwb2ludCBmb3IgeW91ciByZXNvdXJjZS4ifX0=" }, @@ -101,9 +101,9 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2275d8a1fcd50647bdefdd0fa03a241a-45fd348c8cdaf747-00", + "traceparent": "00-7ae4922913321d4897ec2f41060948d8-6adbef7347f49a4f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1a26406b44799ec461ce0951aebc7b46", @@ -120,14 +120,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eddc5c95-a539-4019-ad56-7e85b8c812be", + "apim-request-id": "2455abef-81a4-463e-ab7f-2c347193528e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:28:45 GMT", + "Date": "Thu, 05 Nov 2020 20:53:49 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": "6" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json index 6e292f164004c..550c7813ab214 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json @@ -11,9 +11,9 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f64636315287b843a6c73a41903a7488-45170cc395dcfa4b-00", + "traceparent": "00-51ff98dee0f2ef4bb2a86b8bb65cddf0-60879f218d075f41-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "af25edec94c2cbbfd63455e84047f9b5", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0c1eae55-6abe-432f-aa94-ed0f858fef52", + "apim-request-id": "ec8c8d73-ec9c-4428-9c2e-fb1a51408b8f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:28:42 GMT", + "Date": "Thu, 05 Nov 2020 20:53:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "208" + "x-envoy-upstream-service-time": "67" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json index 15cb00c6c8ed2..67f738f94bcb7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json @@ -11,9 +11,9 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-305e35dad1fadb4ebf48a91d2127ef71-61f3dc881adf634f-00", + "traceparent": "00-79aded4b927f194692ed8da33a93f215-4bb936675464b140-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "66b8ef6aed4353af1a0a6380bef4513f", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c1e506c3-b970-4332-802d-91c1be3c3f30", + "apim-request-id": "b20fce0b-1e4d-4472-bd27-5306f2ae7bbc", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:28:45 GMT", + "Date": "Thu, 05 Nov 2020 20:53:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "76" + "x-envoy-upstream-service-time": "73" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json index 5b4f9e108148e..155827e828b1e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json @@ -11,9 +11,9 @@ "Content-Length": "70", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7eefbdd490d78640811070bccc913f1b-6d4f983816374f48-00", + "traceparent": "00-155adfde23e8bf4a8334b14b823e4619-665e6bb734587940-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9c096f0bd3a36f626316eda5be1e28c8", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7e64e46b-472e-4e9f-9b0e-6ac634a7d42f", + "apim-request-id": "60101437-16ac-4bf6-9ca6-3d1a16723b8c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:28:42 GMT", + "Date": "Thu, 05 Nov 2020 20:53:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "180" + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json index 79692da3f2cb8..f3e65fee15bda 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json @@ -11,9 +11,9 @@ "Content-Length": "70", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d1e93576f5cd424d83aa77ac61ac10ef-d030dbe86c145c4d-00", + "traceparent": "00-af628b02d5846846bba665b9f7204446-4c3e83dcb6507b47-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a71f02631f3c7a05f4cb179d2fb85aac", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f526a8fa-4895-4ec9-98db-35b92f051827", + "apim-request-id": "8d9d30d8-9a86-4397-9bd0-908e6c66a98e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:28:46 GMT", + "Date": "Thu, 05 Nov 2020 20:53:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "65" + "x-envoy-upstream-service-time": "54" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json index 52013b3766806..c2577e0feff11 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json @@ -11,9 +11,9 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-31d17af4710f284c8dd742e1be6f7041-02494de9b1573844-00", + "traceparent": "00-60720aada0b74e43993bc91f75b77bc0-6f10d0292c537f44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a12918df519b0dc53f87435017a62e99", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dda0bd41-7b69-4af1-8d68-d047323a3d69", + "apim-request-id": "b1f99911-8c8a-4a6f-ae15-7e18f7e39c5d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:28:43 GMT", + "Date": "Thu, 05 Nov 2020 20:53:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "842" + "x-envoy-upstream-service-time": "66" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json index cf0869201e954..36b0479af7be1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json @@ -11,9 +11,9 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8aa7ca34c3a04e41a6ef8b2a8fbee5c7-ce70d62e77ebcf45-00", + "traceparent": "00-a5153ffc36a83342a06924c8b16e8e68-e6a6accafce3f24c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201104.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "05b9b9c88ccd2f82a72e96b9014b88fb", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b1d3098f-c478-4534-9b3b-34c93197a9b9", + "apim-request-id": "47a95c16-79cc-4eb8-b70b-1cb1d3e49653", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Wed, 04 Nov 2020 22:28:48 GMT", + "Date": "Thu, 05 Nov 2020 20:53:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1940" + "x-envoy-upstream-service-time": "69" }, "ResponseBody": { "documents": [ From 4a418582de75532838d71ef6157a6e9c66e2c8a1 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Fri, 6 Nov 2020 09:40:07 -0800 Subject: [PATCH 38/58] updated docstrings --- .../src/DocumentHealthcareResult.cs | 2 +- .../src/EntitiesTask.cs | 3 + .../Azure.AI.TextAnalytics/src/Entity.cs | 3 + .../src/EntityRecognitionPiiTasksItem.cs | 3 + .../src/EntityRecognitionTasksItem.cs | 6 ++ .../src/HealthcareEntity.cs | 3 + .../src/HealthcareEntityLink.cs | 3 + .../src/JobManifestTasks.cs | 3 + .../Azure.AI.TextAnalytics/src/JobStatus.cs | 3 + .../src/KeyPhraseExtractionTasksItem.cs | 3 + .../src/KeyPhraseTaskParameters.cs | 3 + .../src/KeyPhrasesTask.cs | 5 +- .../src/PiiEntitiesResult.cs | 3 + .../Azure.AI.TextAnalytics/src/PiiTask.cs | 3 + .../src/PiiTaskParametersDomain.cs | 3 + .../Azure.AI.TextAnalytics/src/TaskState.cs | 3 + .../src/TasksStateTasks.cs | 3 + .../src/TextAnalyticsClient.cs | 55 ++++++++++++------- .../samples/Sample_Healthcare_ShowStats.cs | 18 ++++-- sdk/textanalytics/tests.yml | 5 +- 20 files changed, 105 insertions(+), 28 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareResult.cs index e32bc91523083..57468d84f4b5c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareResult.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/DocumentHealthcareResult.cs @@ -29,7 +29,7 @@ internal DocumentHealthcareResult(DocumentHealthcareEntitiesInternal documentHea /// /// /// - public DocumentHealthcareResult(string id, TextAnalyticsError textAnalyticsError) + internal DocumentHealthcareResult(string id, TextAnalyticsError textAnalyticsError) { Id = id; TextAnalyticsError = textAnalyticsError; diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTask.cs index 0076427a8d0e2..557821bfc83cb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTask.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTask.cs @@ -6,6 +6,9 @@ namespace Azure.AI.TextAnalytics { + /// + /// EntitiesTask. + /// [CodeGenModel("EntitiesTask")] public partial class EntitiesTask { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Entity.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Entity.cs index 6b68ee6d60d45..805bfb10314e7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Entity.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Entity.cs @@ -6,6 +6,9 @@ namespace Azure.AI.TextAnalytics { + /// + /// Entity. + /// [CodeGenModel("Entity")] public partial class Entity { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionPiiTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionPiiTasksItem.cs index 8d927267de26b..23eb09e7cee29 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionPiiTasksItem.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionPiiTasksItem.cs @@ -6,6 +6,9 @@ namespace Azure.AI.TextAnalytics { + /// + /// EntityRecognitionPiiTasksItem. + /// [CodeGenModel("TasksStateTasksEntityRecognitionPiiTasksItem")] public partial class EntityRecognitionPiiTasksItem { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionTasksItem.cs index e9c170622fdf4..17b2c3b357e0a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionTasksItem.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionTasksItem.cs @@ -7,9 +7,15 @@ namespace Azure.AI.TextAnalytics { + /// + /// EntityRecognitionTasksItem. + /// [CodeGenModel("TasksStateTasksEntityRecognitionTasksItem")] public partial class EntityRecognitionTasksItem { + /// + /// Results for EntityRecognitionTasksItem + /// internal EntitiesResult Results { get; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntity.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntity.cs index 416647ac15f0a..0f219fcae7374 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntity.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntity.cs @@ -6,6 +6,9 @@ namespace Azure.AI.TextAnalytics { + /// + /// HealthcareEntity. + /// [CodeGenModel("HealthcareEntity")] public partial class HealthcareEntity { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntityLink.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntityLink.cs index 999188671eb85..3fd0acbd6de39 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntityLink.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/HealthcareEntityLink.cs @@ -5,6 +5,9 @@ namespace Azure.AI.TextAnalytics { + /// + /// HealthcareEntityLink. + /// [CodeGenModel("HealthcareEntityLink")] public partial class HealthcareEntityLink { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobManifestTasks.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobManifestTasks.cs index 96a7dc417dfff..48e576044095b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobManifestTasks.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobManifestTasks.cs @@ -7,6 +7,9 @@ namespace Azure.AI.TextAnalytics { + /// + /// JobManifestTasks. + /// [CodeGenModel("JobManifestTasks")] public partial class JobManifestTasks { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobStatus.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobStatus.cs index c7cf952d70916..413399c8f93d5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobStatus.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobStatus.cs @@ -6,6 +6,9 @@ namespace Azure.AI.TextAnalytics { + /// + /// JobStatus. + /// [CodeGenModel("State")] public partial struct JobStatus { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseExtractionTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseExtractionTasksItem.cs index 7fd6bbf792478..742eb39c572e2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseExtractionTasksItem.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseExtractionTasksItem.cs @@ -7,6 +7,9 @@ namespace Azure.AI.TextAnalytics { + /// + /// KeyPhraseExtractionTasksItem. + /// [CodeGenModel("TasksStateTasksKeyPhraseExtractionTasksItem")] public partial class KeyPhraseExtractionTasksItem { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseTaskParameters.cs index 5f786c8a6cb0a..397bf5e2dcbb0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseTaskParameters.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseTaskParameters.cs @@ -5,6 +5,9 @@ namespace Azure.AI.TextAnalytics { + /// + /// KeyPhrasesTaskParameters. + /// [CodeGenModel("KeyPhrasesTaskParameters")] public partial class KeyPhrasesTaskParameters { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhrasesTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhrasesTask.cs index 838e2a510c03e..95fac1b9982da 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhrasesTask.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhrasesTask.cs @@ -1,12 +1,13 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. -using System.Collections.Generic; -using Azure.AI.TextAnalytics.Models; using Azure.Core; namespace Azure.AI.TextAnalytics { + /// + /// KeyPhrasesTask. + /// [CodeGenModel("KeyPhrasesTask")] public partial class KeyPhrasesTask { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiEntitiesResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiEntitiesResult.cs index 6603e695b98c9..257620de0bfd3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiEntitiesResult.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiEntitiesResult.cs @@ -5,6 +5,9 @@ namespace Azure.AI.TextAnalytics { + /// + /// PiiEntitiesResult. + /// [CodeGenModel("PiiResult")] internal partial class PiiEntitiesResult { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTask.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTask.cs index 5d098b5aa49ef..f865fc738e8c5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTask.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTask.cs @@ -5,6 +5,9 @@ namespace Azure.AI.TextAnalytics { + /// + /// PiiTask. + /// [CodeGenModel("PiiTask")] public partial class PiiTask { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParametersDomain.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParametersDomain.cs index 5b14c3517f8e1..5e5cd340bedcb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParametersDomain.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParametersDomain.cs @@ -5,6 +5,9 @@ namespace Azure.AI.TextAnalytics { + /// + /// PiiTaskParametersDomain. + /// [CodeGenModel("PiiTaskParametersDomain")] public readonly partial struct PiiTaskParametersDomain { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TaskState.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TaskState.cs index 430ec5a72818a..113e2fda7c1ef 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TaskState.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TaskState.cs @@ -6,6 +6,9 @@ namespace Azure.AI.TextAnalytics { + /// + /// TaskState. + /// [CodeGenModel("TaskState")] public partial class TaskState { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasks.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasks.cs index 2fd6826620c47..2d6ccadf8df3e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasks.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasks.cs @@ -6,6 +6,9 @@ namespace Azure.AI.TextAnalytics { + /// + /// TasksStateTasks. + /// [CodeGenModel("TasksStateTasks")] public partial class TasksStateTasks { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index 294698bef1e02..813171927abe9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -2084,11 +2084,13 @@ private Response RecognizeLinkedEntitie /// . /// For document length limits, maximum batch size, and supported text encoding, see /// . + /// Use for documents greater than 20. /// /// The document to analyze. /// The language that the document is written in. /// The additional configurable - /// + /// A + /// controlling the request lifetime. /// Service returned a non-success /// status code. public virtual async Task StartHealthcareAsync(string document, string language = default, HealthcareOptions options = default, CancellationToken cancellationToken = default) @@ -2128,11 +2130,13 @@ public virtual async Task StartHealthcareAsync(string docum /// . /// For document length limits, maximum batch size, and supported text encoding, see /// . + /// Use for documents greater than 20. /// /// The document to analyze. /// The language that the document is written in. /// The additional configurable - /// + /// A + /// controlling the request lifetime. /// Service returned a non-success /// status code. public virtual HealthcareOperation StartHealthcare(string document, string language = default, HealthcareOptions options = default, CancellationToken cancellationToken = default) @@ -2171,11 +2175,13 @@ public virtual HealthcareOperation StartHealthcare(string document, string langu /// . /// For document length limits, maximum batch size, and supported text encoding, see /// . + /// Use for documents greater than 20. /// /// The documents to analyze. /// The language that the document is written in. /// The additional configurable - /// + /// A + /// controlling the request lifetime. /// Service returned a non-success /// status code. public virtual async Task StartHealthcareBatchAsync(IEnumerable documents, string language = default, HealthcareOptions options = default, CancellationToken cancellationToken = default) @@ -2195,6 +2201,7 @@ public virtual async Task StartHealthcareBatchAsync(IEnumer /// . /// For document length limits, maximum batch size, and supported text encoding, see /// . + /// Use for documents greater than 20. /// /// The documents to analyze. /// The language that the document is written in. @@ -2202,8 +2209,7 @@ public virtual async Task StartHealthcareBatchAsync(IEnumer /// in the request sent to the /// service. If set to an empty string, the service will apply a model /// where the language is explicitly set to "None". - /// The additional configurable that may be passed when - /// recognizing PII entities. Options include entity domain filters, model version, and more. + /// The additional configurable options /// A /// controlling the request lifetime. /// A result containing the collection of entities identified @@ -2221,10 +2227,17 @@ public virtual HealthcareOperation StartHealthcareBatch(IEnumerable docu } /// - /// Recognizes health entities async. + /// Runs a predictive model to identify a collection of healthcare entities + /// found in the passed-in document, and include information linking the + /// entities to their corresponding entries in a well-known knowledge base. + /// For a list of languages supported by this operation, see + /// . + /// For document length limits, maximum batch size, and supported text encoding, see + /// . + /// Use for documents greater than 20. /// - /// - /// + /// The documents to analyze. + /// The additional configurable options /// A controlling the request lifetime. /// A to wait on this long-running operation. Its upon successful /// completion will contain layout elements extracted from the form. @@ -2247,9 +2260,10 @@ public virtual HealthcareOperation StartHealthcareBatch(IEnumerable. /// For document length limits, maximum batch size, and supported text encoding, see /// . + /// Use for documents greater than 20. /// - /// - /// + /// The documents to analyze. + /// The additional configurable options /// A controlling the request lifetime. /// A to wait on this long-running operation. Its upon successful /// completion will contain layout elements extracted from the form. @@ -2310,10 +2324,10 @@ private async Task StartHealthcareBatchAsync(MultiLanguageB } } - /// Cancel healthcare prediction job. - /// operation. - /// The cancellation token to use. - // Look for other alternatives of operation cancellation + /// Runs the cancel job for healthcare operation which was initialzed using or + /// Healthcare operation class object which is returned when operation is started. + /// A controlling the request lifetime. + /// A long running operation id once the operation is in calcelled state upon successful. #pragma warning disable AZC0015 // Unexpected client method return type. public virtual async Task StartCancelHealthJobAsync(HealthcareOperation operation, CancellationToken cancellationToken = default) #pragma warning restore AZC0015 // Unexpected client method return type. @@ -2335,9 +2349,10 @@ public virtual async Task StartCancelHealthJobAsync(HealthcareOperation } - /// Cancel healthcare prediction job. - /// Job ID. - /// The cancellation token to use. + /// Runs the cancel job for healthcare operation which was initialized using or + /// Healthcare operation class object which is returned when operation is started. + /// A controlling the request lifetime. + /// A long running operation id once the operation is in calcelled state upon successful. #pragma warning disable AZC0015 // Unexpected client method return type. public virtual string StartCancelHealthJob(HealthcareOperation operation, CancellationToken cancellationToken = default) #pragma warning restore AZC0015 // Unexpected client method return type. @@ -2360,10 +2375,12 @@ public virtual string StartCancelHealthJob(HealthcareOperation operation, Cancel /// /// Gets collection of healthcare entities from the HealthOperation using async pageable. + /// This method is used if the number of documents are greater than 20 + /// Otherwise, use the StartHealthcareAsync and StartHealthcareBatchAsync for less than 20 documents. /// - /// + /// Healthcare operation class object which is returned when operation is started. /// A controlling the request lifetime. - /// A collection of items. + /// A collection of items. public virtual AsyncPageable GetHealthcareEntities(HealthcareOperation operation, CancellationToken cancellationToken = default) { async Task> FirstPageFunc(int? pageSizeHint) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs index ca35605417494..e17ea7aea3fd1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_ShowStats.cs @@ -23,13 +23,21 @@ public async Task HealthcareShowStats() var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); #region Snippet:TextAnalyticsSampleHealthcareShowStats - string document = "RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease , with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; + string document = @"RECORD #333582770390100 | MH | 85986313 | | 054351 | 2/14/2001 12:00:00 AM | CORONARY ARTERY DISEASE | Signed | DIS | \ + Admission Date: 5/22/2001 Report Status: Signed Discharge Date: 4/24/2001 ADMISSION DIAGNOSIS: CORONARY ARTERY DISEASE. \ + HISTORY OF PRESENT ILLNESS: The patient is a 54-year-old gentleman with a history of progressive angina over the past several months. \ + The patient had a cardiac catheterization in July of this year revealing total occlusion of the RCA and 50% left main disease ,\ + with a strong family history of coronary artery disease with a brother dying at the age of 52 from a myocardial infarction and \ + another brother who is status post coronary artery bypass grafting. The patient had a stress echocardiogram done on July , 2001 , \ + which showed no wall motion abnormalities , but this was a difficult study due to body habitus. The patient went for six minutes with \ + minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's \ + increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; List batchInput = new List() - { - document, - document, - }; + { + document, + document, + }; HealthcareOptions options = new HealthcareOptions() { diff --git a/sdk/textanalytics/tests.yml b/sdk/textanalytics/tests.yml index 542ad6ac7ee27..9f8ce1d471dcf 100644 --- a/sdk/textanalytics/tests.yml +++ b/sdk/textanalytics/tests.yml @@ -3,4 +3,7 @@ trigger: none extends: template: ../../eng/pipelines/templates/jobs/archetype-sdk-tests.yml parameters: - ServiceDirectory: textanalytics \ No newline at end of file + ServiceDirectory: textanalytics + EnvVars: + TEXT_ANALYTICS_API_KEY: $(net-textanalytics-test-api-key) + TEXT_ANALYTICS_ENDPOINT: $(net-textanalytics-test-ppe-endpoint-string) From d4c90dd84b538ebafc4a5c789af68dfb6589aff0 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Fri, 6 Nov 2020 10:02:06 -0800 Subject: [PATCH 39/58] run update snippets --- .../api/Azure.AI.TextAnalytics.netstandard2.0.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/api/Azure.AI.TextAnalytics.netstandard2.0.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/api/Azure.AI.TextAnalytics.netstandard2.0.cs index d4eb82992a816..f3369e8fd85f6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/api/Azure.AI.TextAnalytics.netstandard2.0.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/api/Azure.AI.TextAnalytics.netstandard2.0.cs @@ -71,7 +71,7 @@ internal DetectLanguageResultCollection() : base (default(System.Collections.Gen } public partial class DocumentHealthcareResult { - public DocumentHealthcareResult(string id, Azure.AI.TextAnalytics.TextAnalyticsError textAnalyticsError) { } + internal DocumentHealthcareResult() { } public System.Collections.Generic.IReadOnlyList Entities { get { throw null; } } public string Id { get { throw null; } } public System.Collections.Generic.IReadOnlyList Relations { get { throw null; } } From 0ab5e908d25748af97a63468198f1b430661c543 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Fri, 6 Nov 2020 10:55:44 -0800 Subject: [PATCH 40/58] update ../test-resources.json --- sdk/textanalytics/test-resources.json | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/sdk/textanalytics/test-resources.json b/sdk/textanalytics/test-resources.json index 4ae2ec0dd737c..5a6954c8928d9 100644 --- a/sdk/textanalytics/test-resources.json +++ b/sdk/textanalytics/test-resources.json @@ -51,7 +51,6 @@ }, "variables": { "uniqueSubDomainName": "[format('{0}-{1}', parameters('baseName'), parameters('endpointPrefix'))]", - "endpointValue": "[format('https://{0}-{1}{2}', parameters('baseName'), parameters('endpointPrefix'), parameters('endpointSuffix'))]" }, "resources": [ { @@ -67,15 +66,5 @@ "customSubDomainName": "[variables('uniqueSubDomainName')]" } } - ], - "outputs": { - "TEXT_ANALYTICS_API_KEY": { - "type": "string", - "value": "[listKeys(resourceId('Microsoft.CognitiveServices/accounts',variables('uniqueSubDomainName')), '2017-04-18').key1]" - }, - "TEXT_ANALYTICS_ENDPOINT": { - "type": "string", - "value": "[variables('endpointValue')]" - } - } + ] } From 8a2e60d4d8707a1d61f97f8881dbfd5e4b3dfdd5 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Mon, 9 Nov 2020 12:23:14 -0800 Subject: [PATCH 41/58] fix flaky tests --- .../samples/Sample_HealthcareAsync_Cancellation.cs | 11 +++++++++-- .../samples/Sample_HealthcareAsync_Pagination.cs | 9 +++++++-- .../samples/Sample_Healthcare_Cancellation.cs | 14 +++++++++++--- 3 files changed, 27 insertions(+), 7 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Cancellation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Cancellation.cs index 9baccaf6a4999..dbc1d0d1e6c5c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Cancellation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Cancellation.cs @@ -2,6 +2,7 @@ // Licensed under the MIT License. using System; +using System.Collections.Generic; using System.Threading.Tasks; using Azure.AI.TextAnalytics.Models; using Azure.AI.TextAnalytics.Tests; @@ -32,10 +33,16 @@ with a strong family history of coronary artery disease with a brother dying at minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's \ increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; - HealthcareOperation healthOperation = await client.StartHealthcareAsync(document); + var batchDocument = new List(); - await client.StartCancelHealthJobAsync(healthOperation); + for (var i=0; i < 10; i++) + { + batchDocument.Add(document); + } + + HealthcareOperation healthOperation = await client.StartHealthcareBatchAsync(batchDocument, "en"); + await client.StartCancelHealthJobAsync(healthOperation); } #endregion diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Pagination.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Pagination.cs index c506a669b5f88..e9819aa7e950c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Pagination.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_HealthcareAsync_Pagination.cs @@ -27,12 +27,17 @@ public async Task HealthcareAsyncPagination() var list = new List(); - for (int i = 0; i < 23; i++) + for (int i = 0; i < 10; i++) { list.Add(document); }; - HealthcareOperation healthOperation = await client.StartHealthcareBatchAsync(list); + HealthcareOptions options = new HealthcareOptions() + { + Top = 2 + }; + + HealthcareOperation healthOperation = await client.StartHealthcareBatchAsync(list, "en", options); AsyncPageable results = client.GetHealthcareEntities(healthOperation); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs index 64dcaf2774d6a..02b85e8e47d57 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_Healthcare_Cancellation.cs @@ -2,6 +2,7 @@ // Licensed under the MIT License. using System; +using System.Collections.Generic; using System.Threading.Tasks; using Azure.AI.TextAnalytics.Models; using Azure.AI.TextAnalytics.Tests; @@ -14,7 +15,7 @@ namespace Azure.AI.TextAnalytics.Samples public partial class TextAnalyticsSamples: SamplesBase { [Test] - public void HealthcareCancellation() + public async Task HealthcareCancellation() { string endpoint = TestEnvironment.Endpoint; string apiKey = TestEnvironment.ApiKey; @@ -32,9 +33,16 @@ with a strong family history of coronary artery disease with a brother dying at minimal ST depressions in the anterior lateral leads , thought due to fatigue and wrist pain , his anginal equivalent. Due to the patient's \ increased symptoms and family history and history left main disease with total occasional of his RCA was referred for revascularization with open heart surgery."; - HealthcareOperation healthOperation = client.StartHealthcare(document); + var batchDocument = new List(); - client.StartCancelHealthJob(healthOperation); + for (var i = 0; i < 10; i++) + { + batchDocument.Add(document); + } + + HealthcareOperation healthOperation = client.StartHealthcareBatch(batchDocument, "en"); + + await client.StartCancelHealthJobAsync(healthOperation); } #endregion From 2bd403edd611a00cf151f7b05b3331725fddbda8 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Mon, 9 Nov 2020 12:24:41 -0800 Subject: [PATCH 42/58] added analyze sdk code --- .../src/AnalyzeBatchInput.cs | 15 ++ .../src/AnalyzeOperation.cs | 231 ++++++++++++++++++ .../src/AnalyzeOperationOptions.cs | 50 ++++ .../src/AnalyzeOperationResult.cs | 56 +++++ .../Models/AnalyzeBatchInput.Serialization.cs | 2 +- .../src/Generated/Models/AnalyzeBatchInput.cs | 4 +- .../Models/AnalyzeJobState.Serialization.cs | 8 +- .../src/Generated/Models/AnalyzeJobState.cs | 12 +- ...ation.cs => AnalyzeTasks.Serialization.cs} | 15 +- .../{TasksStateTasks.cs => AnalyzeTasks.cs} | 11 +- .../HealthcareJobState.Serialization.cs | 4 +- .../Generated/Models/HealthcareJobState.cs | 10 +- .../Models/JobMetadata.Serialization.cs | 7 +- .../src/Generated/Models/JobMetadata.cs | 14 +- .../src/Generated/Models/JobStatus.cs | 15 +- .../Models/TasksState.Serialization.cs | 4 +- .../src/Generated/Models/TasksState.cs | 4 +- .../TasksStateTasksDetails.Serialization.cs | 42 ++++ .../Models/TasksStateTasksDetails.cs | 28 +++ .../src/Generated/TextAnalyticsRestClient.cs | 22 +- .../src/JobManifestTasks.cs | 6 +- .../Azure.AI.TextAnalytics/src/JobMetadata.cs | 17 ++ .../Azure.AI.TextAnalytics/src/TaskState.cs | 6 +- .../src/TasksStateTasks.cs | 6 +- .../src/TasksStateTasksDetails.cs | 15 ++ .../src/TextAnalyticsClient.cs | 201 ++++++++++++++- .../Azure.AI.TextAnalytics/src/Transforms.cs | 13 + .../Azure.AI.TextAnalytics/src/autorest.md | 2 +- 28 files changed, 748 insertions(+), 72 deletions(-) create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeBatchInput.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperation.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperationOptions.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperationResult.cs rename sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/{TasksStateTasks.Serialization.cs => AnalyzeTasks.Serialization.cs} (84%) rename sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/{TasksStateTasks.cs => AnalyzeTasks.cs} (71%) create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.Serialization.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/JobMetadata.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasksDetails.cs diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeBatchInput.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeBatchInput.cs new file mode 100644 index 0000000000000..be28562127e90 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeBatchInput.cs @@ -0,0 +1,15 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + /// + /// AnalyzeBatchInput. + /// + [CodeGenModel("AnalyzeBatchInput")] + internal partial class AnalyzeBatchInput + { + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperation.cs new file mode 100644 index 0000000000000..79a118d6c4e1c --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperation.cs @@ -0,0 +1,231 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading; +using System.Threading.Tasks; +using Azure.AI.TextAnalytics.Models; +using Azure.Core; +using Azure.Core.Pipeline; + +namespace Azure.AI.TextAnalytics +{ + /// The AnalyzeOperation class for LRO. + public class AnalyzeOperation : Operation + { + /// Provides communication with the Form Recognizer Azure Cognitive Service through its REST API. + private readonly TextAnalyticsRestClient _serviceClient; + + /// Provides tools for exception creation in case of failure. + private readonly ClientDiagnostics _diagnostics; + + /// + /// Gets an ID representing the operation that can be used to poll for the status + /// of the long-running operation. + /// + public override string Id { get; } + + /// + /// next link string for pagination + /// + internal string NextLink { get; set; } + + /// + /// Provides the input to be part of AnalyzeOperation class + /// + internal readonly IDictionary _idToIndexMap; + + /// + /// Final result of the long-running operation. + /// + /// + /// This property can be accessed only after the operation completes successfully (HasValue is true). + /// + public override AnalyzeOperationResult Value + { + get + { + if (HasCompleted && !HasValue) +#pragma warning disable CA1065 // Do not raise exceptions in unexpected locations + throw _requestFailedException; +#pragma warning restore CA1065 // Do not raise exceptions in unexpected locations + else + { + return OperationHelpers.GetValue(ref _value); + } + } + } + + /// true if the long-running operation has completed. Otherwise, false. + private bool _hasCompleted; + + /// + /// Returns true if the long-running operation completed. + /// + public override bool HasCompleted => _hasCompleted; + + private RequestFailedException _requestFailedException; + + /// The last HTTP response received from the server. null until the first response is received. + private Response _response; + + /// The result of the long-running operation. null until result is received on status update. + private AnalyzeOperationResult _value; + + private int? _top { get; } + private int? _skip { get; } + private bool? _showStats { get; } + + /// + /// Returns true if the long-running operation completed successfully and has produced final result (accessible by Value property). + /// + public override bool HasValue => _value != null; + + /// + /// Initializes a new instance of the class. + /// + /// The ID of this operation. + /// The client used to check for completion. + public AnalyzeOperation(string operationId, TextAnalyticsClient client) + { + // TODO: Add argument validation here. + + Id = operationId; + _serviceClient = client._serviceRestClient; + _diagnostics = client._clientDiagnostics; + } + + /// + /// Initializes a new instance of the class. + /// + /// The client for communicating with the Form Recognizer Azure Cognitive Service through its REST API. + /// The client diagnostics for exception creation in case of failure. + /// The address of the long-running operation. It can be obtained from the response headers upon starting the operation. + /// + /// + /// + /// + internal AnalyzeOperation(TextAnalyticsRestClient serviceClient, ClientDiagnostics diagnostics, string operationLocation, IDictionary idToIndexMap, int? top = default, int? skip = default, bool? showStats = default) + { + _serviceClient = serviceClient; + _diagnostics = diagnostics; + _idToIndexMap = idToIndexMap; + _top = top; + _skip = skip; + _showStats = showStats; + + // TODO: Add validation here + // https://github.com/Azure/azure-sdk-for-net/issues/11505 + Id = operationLocation.Split('/').Last(); + } + + + /// + /// The last HTTP response received from the server. + /// + /// + /// The last response returned from the server during the lifecycle of this instance. + /// An instance of sends requests to a server in UpdateStatusAsync, UpdateStatus, and other methods. + /// Responses from these requests can be accessed using GetRawResponse. + /// + public override Response GetRawResponse() => _response; + + /// + /// Calls the server to get updated status of the long-running operation. + /// + /// A used for the service call. + /// The HTTP response received from the server. + /// + /// This operation will update the value returned from GetRawResponse and might update HasCompleted, HasValue, and Value. + /// + public override Response UpdateStatus(CancellationToken cancellationToken = default) => + UpdateStatusAsync(false, cancellationToken).EnsureCompleted(); + + /// + /// Calls the server to get updated status of the long-running operation. + /// + /// A used for the service call. + /// The HTTP response received from the server. + /// + /// This operation will update the value returned from GetRawResponse and might update HasCompleted, HasValue, and Value. + /// + public override async ValueTask UpdateStatusAsync(CancellationToken cancellationToken = default) => + await UpdateStatusAsync(true, cancellationToken).ConfigureAwait(false); + + /// + /// Periodically calls the server till the long-running operation completes. + /// + /// A used for the periodical service calls. + /// The last HTTP response received from the server. + /// + /// This method will periodically call UpdateStatusAsync till HasCompleted is true, then return the final result of the operation. + /// + public override ValueTask> WaitForCompletionAsync(CancellationToken cancellationToken = default) => + this.DefaultWaitForCompletionAsync(cancellationToken); + + /// + /// Periodically calls the server till the long-running operation completes. + /// + /// + /// The interval between status requests to the server. + /// The interval can change based on information returned from the server. + /// For example, the server might communicate to the client that there is not reason to poll for status change sooner than some time. + /// + /// A used for the periodical service calls. + /// The last HTTP response received from the server. + /// + /// This method will periodically call UpdateStatusAsync till HasCompleted is true, then return the final result of the operation. + /// + public override ValueTask> WaitForCompletionAsync(TimeSpan pollingInterval, CancellationToken cancellationToken = default) => + this.DefaultWaitForCompletionAsync(pollingInterval, cancellationToken); + + /// + /// Calls the server to get updated status of the long-running operation. + /// + /// When true, the method will be executed asynchronously; otherwise, it will execute synchronously. + /// A used for the service call. + /// The HTTP response received from the server. + private async ValueTask UpdateStatusAsync(bool async, CancellationToken cancellationToken) + { + if (!_hasCompleted) + { + using DiagnosticScope scope = _diagnostics.CreateScope($"{nameof(AnalyzeOperation)}.{nameof(UpdateStatus)}"); + scope.Start(); + + try + { + Response update = async + ? await _serviceClient.AnalyzeStatusAsync(Id, _showStats, _top, _skip, cancellationToken).ConfigureAwait(false) + : _serviceClient.AnalyzeStatus(Id, _showStats, _top, _skip, cancellationToken); + + _response = update.GetRawResponse(); + + if (update.Value.Status == JobStatus.Succeeded) + { + // we need to first assign a vaue and then mark the operation as completed to avoid race conditions + _value = Transforms.ConvertToAnalyzeOperationResult(update.Value, _idToIndexMap); + + NextLink = update.Value.NextLink; + _hasCompleted = true; + } + else if (update.Value.Status == JobStatus.Failed) + { + _requestFailedException = await ClientCommon.CreateExceptionForFailedOperationAsync(async, _diagnostics, _response, update.Value.Errors) + .ConfigureAwait(false); + _hasCompleted = true; + throw _requestFailedException; + } + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + return GetRawResponse(); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperationOptions.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperationOptions.cs new file mode 100644 index 0000000000000..d84ffac83e943 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperationOptions.cs @@ -0,0 +1,50 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +namespace Azure.AI.TextAnalytics +{ + /// + /// Options that allow callers to specify details about how the operation + /// is run and what information is returned from it by the service. + /// + public class AnalyzeOperationOptions : TextAnalyticsRequestOptions + { + /// + /// Initializes a new instance of the + /// class. + /// + public AnalyzeOperationOptions() + { + } + + /// + /// The first top documents from the result. + /// + public int? Top { get; set; } + + /// + /// The skipped documents from the result. The Skip is called first when used with Top. + /// + public int? Skip { get; set; } + + /// + /// EntitiesTaskParameters. + /// + public EntitiesTaskParameters EntitiesTaskParameters { get; set; } + + /// + /// PiiTaskParameters. + /// + public PiiTaskParameters PiiTaskParameters { get; set; } + + /// + /// KeyPhrasesTaskParameters. + /// + public KeyPhrasesTaskParameters KeyPhrasesTaskParameters { get; set; } + + /// + /// DisplayName property for Analyze job. + /// + public string DisplayName { get; set; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperationResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperationResult.cs new file mode 100644 index 0000000000000..48ff14dcfb426 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperationResult.cs @@ -0,0 +1,56 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Collections.Generic; +using System.Collections.ObjectModel; +using Azure.AI.TextAnalytics.Models; + +namespace Azure.AI.TextAnalytics +{ + /// + /// Collection of objects corresponding + /// to a batch of documents, and information about the batch operation. + /// + public class AnalyzeOperationResult + { + /// + /// + /// + /// + /// + /// + internal AnalyzeOperationResult(EntitiesResult entitiesResult, PiiEntitiesResult piiEntitiesResult, KeyPhraseResult keyPhraseResult, IDictionary map) + { + if (entitiesResult != null) + { + EntitiesResult = Transforms.ConvertToRecognizeEntitiesResultCollection(entitiesResult, map); + } + + if (piiEntitiesResult != null) + { + PiiEntitiesResult = Transforms.ConvertToRecognizePiiEntitiesResultCollection(piiEntitiesResult, map); + } + + if (keyPhraseResult != null) + { + KeyPhraseResult = Transforms.ConvertToExtractKeyPhrasesResultCollection(keyPhraseResult, map); + } + } + + /// + /// EntityRecognitionTasks + /// + public RecognizeEntitiesResultCollection EntitiesResult { get; } + + /// + /// EntityRecognitionPiiTasks + /// + public RecognizePiiEntitiesResultCollection PiiEntitiesResult { get; } + + /// + /// KeyPhraseExtractionTasks + /// + public ExtractKeyPhrasesResultCollection KeyPhraseResult { get; } + + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeBatchInput.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeBatchInput.Serialization.cs index d2e689818569e..6a8b3ee514c11 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeBatchInput.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeBatchInput.Serialization.cs @@ -8,7 +8,7 @@ using System.Text.Json; using Azure.Core; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { internal partial class AnalyzeBatchInput : IUtf8JsonSerializable { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeBatchInput.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeBatchInput.cs index af773043f6a11..bbc0e44c68b54 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeBatchInput.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeBatchInput.cs @@ -6,9 +6,9 @@ #nullable disable using System; -using Azure.AI.TextAnalytics; +using Azure.AI.TextAnalytics.Models; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { /// The AnalyzeBatchInput. internal partial class AnalyzeBatchInput : JobDescriptor diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.Serialization.cs index a337055d10151..61233a43d43ab 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.Serialization.cs @@ -19,12 +19,12 @@ internal static AnalyzeJobState DeserializeAnalyzeJobState(JsonElement element) { Optional> errors = default; Optional statistics = default; - TasksStateTasks tasks = default; + AnalyzeTasks tasks = default; Optional nextLink = default; DateTimeOffset createdDateTime = default; Optional displayName = default; Optional expirationDateTime = default; - Guid jobId = default; + string jobId = default; DateTimeOffset lastUpdateDateTime = default; JobStatus status = default; foreach (var property in element.EnumerateObject()) @@ -56,7 +56,7 @@ internal static AnalyzeJobState DeserializeAnalyzeJobState(JsonElement element) } if (property.NameEquals("tasks")) { - tasks = TasksStateTasks.DeserializeTasksStateTasks(property.Value); + tasks = AnalyzeTasks.DeserializeAnalyzeTasks(property.Value); continue; } if (property.NameEquals("@nextLink")) @@ -86,7 +86,7 @@ internal static AnalyzeJobState DeserializeAnalyzeJobState(JsonElement element) } if (property.NameEquals("jobId")) { - jobId = property.Value.GetGuid(); + jobId = property.Value.GetString(); continue; } if (property.NameEquals("lastUpdateDateTime")) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.cs index 14e94ea7ee03b..d538fd291a134 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeJobState.cs @@ -21,9 +21,13 @@ internal partial class AnalyzeJobState : JobMetadata /// . /// . /// . - /// is null. - internal AnalyzeJobState(DateTimeOffset createdDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, JobStatus status, TasksStateTasks tasks) : base(createdDateTime, jobId, lastUpdateDateTime, status) + /// or is null. + internal AnalyzeJobState(DateTimeOffset createdDateTime, string jobId, DateTimeOffset lastUpdateDateTime, JobStatus status, AnalyzeTasks tasks) : base(createdDateTime, jobId, lastUpdateDateTime, status) { + if (jobId == null) + { + throw new ArgumentNullException(nameof(jobId)); + } if (tasks == null) { throw new ArgumentNullException(nameof(tasks)); @@ -44,7 +48,7 @@ internal AnalyzeJobState(DateTimeOffset createdDateTime, Guid jobId, DateTimeOff /// if showStats=true was specified in the request this field will contain information about the request payload. /// . /// . - internal AnalyzeJobState(DateTimeOffset createdDateTime, string displayName, DateTimeOffset? expirationDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, JobStatus status, IReadOnlyList errors, TextDocumentBatchStatistics statistics, TasksStateTasks tasks, string nextLink) : base(createdDateTime, displayName, expirationDateTime, jobId, lastUpdateDateTime, status) + internal AnalyzeJobState(DateTimeOffset createdDateTime, string displayName, DateTimeOffset? expirationDateTime, string jobId, DateTimeOffset lastUpdateDateTime, JobStatus status, IReadOnlyList errors, TextDocumentBatchStatistics statistics, AnalyzeTasks tasks, string nextLink) : base(createdDateTime, displayName, expirationDateTime, jobId, lastUpdateDateTime, status) { Errors = errors; Statistics = statistics; @@ -55,7 +59,7 @@ internal AnalyzeJobState(DateTimeOffset createdDateTime, string displayName, Dat public IReadOnlyList Errors { get; } /// if showStats=true was specified in the request this field will contain information about the request payload. public TextDocumentBatchStatistics Statistics { get; } - public TasksStateTasks Tasks { get; } + public AnalyzeTasks Tasks { get; } public string NextLink { get; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasks.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeTasks.Serialization.cs similarity index 84% rename from sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasks.Serialization.cs rename to sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeTasks.Serialization.cs index 75c27813aedb2..8d428abd68eff 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasks.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeTasks.Serialization.cs @@ -11,11 +11,11 @@ namespace Azure.AI.TextAnalytics { - public partial class TasksStateTasks + public partial class AnalyzeTasks { - internal static TasksStateTasks DeserializeTasksStateTasks(JsonElement element) + internal static AnalyzeTasks DeserializeAnalyzeTasks(JsonElement element) { - Optional> details = default; + Optional details = default; int completed = default; int failed = default; int inProgress = default; @@ -32,12 +32,7 @@ internal static TasksStateTasks DeserializeTasksStateTasks(JsonElement element) property.ThrowNonNullablePropertyIsNull(); continue; } - List array = new List(); - foreach (var item in property.Value.EnumerateArray()) - { - array.Add(TaskState.DeserializeTaskState(item)); - } - details = array; + details = TasksStateTasksDetails.DeserializeTasksStateTasksDetails(property.Value); continue; } if (property.NameEquals("completed")) @@ -106,7 +101,7 @@ internal static TasksStateTasks DeserializeTasksStateTasks(JsonElement element) continue; } } - return new TasksStateTasks(Optional.ToList(details), completed, failed, inProgress, total, Optional.ToList(entityRecognitionTasks), Optional.ToList(entityRecognitionPiiTasks), Optional.ToList(keyPhraseExtractionTasks)); + return new AnalyzeTasks(details.Value, completed, failed, inProgress, total, Optional.ToList(entityRecognitionTasks), Optional.ToList(entityRecognitionPiiTasks), Optional.ToList(keyPhraseExtractionTasks)); } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasks.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeTasks.cs similarity index 71% rename from sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasks.cs rename to sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeTasks.cs index a96fad79484c3..fd7bb0d700aac 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasks.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeTasks.cs @@ -11,16 +11,15 @@ namespace Azure.AI.TextAnalytics { /// The TasksStateTasks. - public partial class TasksStateTasks + public partial class AnalyzeTasks { - /// Initializes a new instance of TasksStateTasks. + /// Initializes a new instance of AnalyzeTasks. /// . /// . /// . /// . - internal TasksStateTasks(int completed, int failed, int inProgress, int total) + internal AnalyzeTasks(int completed, int failed, int inProgress, int total) { - Details = new ChangeTrackingList(); Completed = completed; Failed = failed; InProgress = inProgress; @@ -30,7 +29,7 @@ internal TasksStateTasks(int completed, int failed, int inProgress, int total) KeyPhraseExtractionTasks = new ChangeTrackingList(); } - /// Initializes a new instance of TasksStateTasks. + /// Initializes a new instance of AnalyzeTasks. /// . /// . /// . @@ -39,7 +38,7 @@ internal TasksStateTasks(int completed, int failed, int inProgress, int total) /// . /// . /// . - internal TasksStateTasks(IReadOnlyList details, int completed, int failed, int inProgress, int total, IReadOnlyList entityRecognitionTasks, IReadOnlyList entityRecognitionPiiTasks, IReadOnlyList keyPhraseExtractionTasks) + internal AnalyzeTasks(TasksStateTasksDetails details, int completed, int failed, int inProgress, int total, IReadOnlyList entityRecognitionTasks, IReadOnlyList entityRecognitionPiiTasks, IReadOnlyList keyPhraseExtractionTasks) { Details = details; Completed = completed; diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.Serialization.cs index 5c4d0a562d8c2..3a67696dc14cb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.Serialization.cs @@ -23,7 +23,7 @@ internal static HealthcareJobState DeserializeHealthcareJobState(JsonElement ele DateTimeOffset createdDateTime = default; Optional displayName = default; Optional expirationDateTime = default; - Guid jobId = default; + string jobId = default; DateTimeOffset lastUpdateDateTime = default; JobStatus status = default; foreach (var property in element.EnumerateObject()) @@ -80,7 +80,7 @@ internal static HealthcareJobState DeserializeHealthcareJobState(JsonElement ele } if (property.NameEquals("jobId")) { - jobId = property.Value.GetGuid(); + jobId = property.Value.GetString(); continue; } if (property.NameEquals("lastUpdateDateTime")) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.cs index 4de6fa960ac6f..b14ea28f1e1c2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/HealthcareJobState.cs @@ -20,8 +20,14 @@ internal partial class HealthcareJobState : JobMetadata /// . /// . /// . - internal HealthcareJobState(DateTimeOffset createdDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, JobStatus status) : base(createdDateTime, jobId, lastUpdateDateTime, status) + /// is null. + internal HealthcareJobState(DateTimeOffset createdDateTime, string jobId, DateTimeOffset lastUpdateDateTime, JobStatus status) : base(createdDateTime, jobId, lastUpdateDateTime, status) { + if (jobId == null) + { + throw new ArgumentNullException(nameof(jobId)); + } + Errors = new ChangeTrackingList(); } @@ -35,7 +41,7 @@ internal HealthcareJobState(DateTimeOffset createdDateTime, Guid jobId, DateTime /// . /// . /// . - internal HealthcareJobState(DateTimeOffset createdDateTime, string displayName, DateTimeOffset? expirationDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, JobStatus status, HealthcareResult results, IReadOnlyList errors, string nextLink) : base(createdDateTime, displayName, expirationDateTime, jobId, lastUpdateDateTime, status) + internal HealthcareJobState(DateTimeOffset createdDateTime, string displayName, DateTimeOffset? expirationDateTime, string jobId, DateTimeOffset lastUpdateDateTime, JobStatus status, HealthcareResult results, IReadOnlyList errors, string nextLink) : base(createdDateTime, displayName, expirationDateTime, jobId, lastUpdateDateTime, status) { Results = results; Errors = errors; diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.Serialization.cs index 8df6c1cdbd0a2..513839407ff37 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.Serialization.cs @@ -7,10 +7,9 @@ using System; using System.Text.Json; -using Azure.AI.TextAnalytics; using Azure.Core; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { internal partial class JobMetadata { @@ -19,7 +18,7 @@ internal static JobMetadata DeserializeJobMetadata(JsonElement element) DateTimeOffset createdDateTime = default; Optional displayName = default; Optional expirationDateTime = default; - Guid jobId = default; + string jobId = default; DateTimeOffset lastUpdateDateTime = default; JobStatus status = default; foreach (var property in element.EnumerateObject()) @@ -46,7 +45,7 @@ internal static JobMetadata DeserializeJobMetadata(JsonElement element) } if (property.NameEquals("jobId")) { - jobId = property.Value.GetGuid(); + jobId = property.Value.GetString(); continue; } if (property.NameEquals("lastUpdateDateTime")) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.cs index e87d289a22df7..ac49c093f33c1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.cs @@ -6,9 +6,8 @@ #nullable disable using System; -using Azure.AI.TextAnalytics; -namespace Azure.AI.TextAnalytics.Models +namespace Azure.AI.TextAnalytics { /// The JobMetadata. internal partial class JobMetadata @@ -18,8 +17,14 @@ internal partial class JobMetadata /// . /// . /// . - internal JobMetadata(DateTimeOffset createdDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, JobStatus status) + /// is null. + internal JobMetadata(DateTimeOffset createdDateTime, string jobId, DateTimeOffset lastUpdateDateTime, JobStatus status) { + if (jobId == null) + { + throw new ArgumentNullException(nameof(jobId)); + } + CreatedDateTime = createdDateTime; JobId = jobId; LastUpdateDateTime = lastUpdateDateTime; @@ -33,7 +38,7 @@ internal JobMetadata(DateTimeOffset createdDateTime, Guid jobId, DateTimeOffset /// . /// . /// . - internal JobMetadata(DateTimeOffset createdDateTime, string displayName, DateTimeOffset? expirationDateTime, Guid jobId, DateTimeOffset lastUpdateDateTime, JobStatus status) + internal JobMetadata(DateTimeOffset createdDateTime, string displayName, DateTimeOffset? expirationDateTime, string jobId, DateTimeOffset lastUpdateDateTime, JobStatus status) { CreatedDateTime = createdDateTime; DisplayName = displayName; @@ -46,7 +51,6 @@ internal JobMetadata(DateTimeOffset createdDateTime, string displayName, DateTim public DateTimeOffset CreatedDateTime { get; } public string DisplayName { get; } public DateTimeOffset? ExpirationDateTime { get; } - public Guid JobId { get; } public DateTimeOffset LastUpdateDateTime { get; } public JobStatus Status { get; } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobStatus.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobStatus.cs index b9dea58fa53cc..da118f68634c9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobStatus.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobStatus.cs @@ -22,28 +22,31 @@ public JobStatus(string value) _value = value ?? throw new ArgumentNullException(nameof(value)); } - private const string NotstartedValue = "notstarted"; + private const string NotStartedValue = "notStarted"; private const string RunningValue = "running"; private const string SucceededValue = "succeeded"; private const string FailedValue = "failed"; + private const string RejectedValue = "rejected"; private const string CancelledValue = "cancelled"; private const string CancellingValue = "cancelling"; - private const string PartiallycompletedValue = "partiallycompleted"; + private const string PartiallyCompletedValue = "partiallyCompleted"; - /// notstarted. - public static JobStatus Notstarted { get; } = new JobStatus(NotstartedValue); + /// notStarted. + public static JobStatus NotStarted { get; } = new JobStatus(NotStartedValue); /// running. public static JobStatus Running { get; } = new JobStatus(RunningValue); /// succeeded. public static JobStatus Succeeded { get; } = new JobStatus(SucceededValue); /// failed. public static JobStatus Failed { get; } = new JobStatus(FailedValue); + /// rejected. + public static JobStatus Rejected { get; } = new JobStatus(RejectedValue); /// cancelled. public static JobStatus Cancelled { get; } = new JobStatus(CancelledValue); /// cancelling. public static JobStatus Cancelling { get; } = new JobStatus(CancellingValue); - /// partiallycompleted. - public static JobStatus Partiallycompleted { get; } = new JobStatus(PartiallycompletedValue); + /// partiallyCompleted. + public static JobStatus PartiallyCompleted { get; } = new JobStatus(PartiallyCompletedValue); /// Determines if two values are the same. public static bool operator ==(JobStatus left, JobStatus right) => left.Equals(right); /// Determines if two values are not the same. diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksState.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksState.Serialization.cs index cbd82d0abb442..50c928c10839f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksState.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksState.Serialization.cs @@ -15,12 +15,12 @@ internal partial class TasksState { internal static TasksState DeserializeTasksState(JsonElement element) { - TasksStateTasks tasks = default; + AnalyzeTasks tasks = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("tasks")) { - tasks = TasksStateTasks.DeserializeTasksStateTasks(property.Value); + tasks = AnalyzeTasks.DeserializeAnalyzeTasks(property.Value); continue; } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksState.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksState.cs index c8e4f08e7d7d5..0674143587b1e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksState.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksState.cs @@ -16,7 +16,7 @@ internal partial class TasksState /// Initializes a new instance of TasksState. /// . /// is null. - internal TasksState(TasksStateTasks tasks) + internal TasksState(AnalyzeTasks tasks) { if (tasks == null) { @@ -26,6 +26,6 @@ internal TasksState(TasksStateTasks tasks) Tasks = tasks; } - public TasksStateTasks Tasks { get; } + public AnalyzeTasks Tasks { get; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.Serialization.cs new file mode 100644 index 0000000000000..1a11e4bc77116 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.Serialization.cs @@ -0,0 +1,42 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; +using System.Text.Json; +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + public partial class TasksStateTasksDetails + { + internal static TasksStateTasksDetails DeserializeTasksStateTasksDetails(JsonElement element) + { + DateTimeOffset lastUpdateDateTime = default; + string name = default; + JobStatus status = default; + foreach (var property in element.EnumerateObject()) + { + if (property.NameEquals("lastUpdateDateTime")) + { + lastUpdateDateTime = property.Value.GetDateTimeOffset("O"); + continue; + } + if (property.NameEquals("name")) + { + name = property.Value.GetString(); + continue; + } + if (property.NameEquals("status")) + { + status = new JobStatus(property.Value.GetString()); + continue; + } + } + return new TasksStateTasksDetails(lastUpdateDateTime, name, status); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.cs new file mode 100644 index 0000000000000..397ab30b0f6a1 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.cs @@ -0,0 +1,28 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; + +namespace Azure.AI.TextAnalytics +{ + /// The TasksStateTasksDetails. + public partial class TasksStateTasksDetails : TaskState + { + /// Initializes a new instance of TasksStateTasksDetails. + /// . + /// . + /// . + /// is null. + internal TasksStateTasksDetails(DateTimeOffset lastUpdateDateTime, string name, JobStatus status) : base(lastUpdateDateTime, name, status) + { + if (name == null) + { + throw new ArgumentNullException(nameof(name)); + } + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsRestClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsRestClient.cs index 2f259c17f637f..c5de6df9b868f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsRestClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/TextAnalyticsRestClient.cs @@ -94,7 +94,7 @@ public ResponseWithHeaders Analyze(AnalyzeBatchInpu } } - internal HttpMessage CreateAnalyzeStatusRequest(Guid jobId, bool? showStats, int? top, int? skip) + internal HttpMessage CreateAnalyzeStatusRequest(string jobId, bool? showStats, int? top, int? skip) { var message = _pipeline.CreateMessage(); var request = message.Request; @@ -122,13 +122,19 @@ internal HttpMessage CreateAnalyzeStatusRequest(Guid jobId, bool? showStats, int } /// Get the status of an analysis job. A job may consist of one or more tasks. Once all tasks are completed, the job will transition to the completed state and results will be available for each task. - /// Job ID. + /// Job ID for Analyze. /// (Optional) if set to true, response will contain request and document level statistics. /// (Optional) Set the maximum number of results per task. When both $top and $skip are specified, $skip is applied first. /// (Optional) Set the number of elements to offset in the response. When both $top and $skip are specified, $skip is applied first. /// The cancellation token to use. - public async Task> AnalyzeStatusAsync(Guid jobId, bool? showStats = null, int? top = null, int? skip = null, CancellationToken cancellationToken = default) + /// is null. + public async Task> AnalyzeStatusAsync(string jobId, bool? showStats = null, int? top = null, int? skip = null, CancellationToken cancellationToken = default) { + if (jobId == null) + { + throw new ArgumentNullException(nameof(jobId)); + } + using var message = CreateAnalyzeStatusRequest(jobId, showStats, top, skip); await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); switch (message.Response.Status) @@ -146,13 +152,19 @@ public async Task> AnalyzeStatusAsync(Guid jobId, bool } /// Get the status of an analysis job. A job may consist of one or more tasks. Once all tasks are completed, the job will transition to the completed state and results will be available for each task. - /// Job ID. + /// Job ID for Analyze. /// (Optional) if set to true, response will contain request and document level statistics. /// (Optional) Set the maximum number of results per task. When both $top and $skip are specified, $skip is applied first. /// (Optional) Set the number of elements to offset in the response. When both $top and $skip are specified, $skip is applied first. /// The cancellation token to use. - public Response AnalyzeStatus(Guid jobId, bool? showStats = null, int? top = null, int? skip = null, CancellationToken cancellationToken = default) + /// is null. + public Response AnalyzeStatus(string jobId, bool? showStats = null, int? top = null, int? skip = null, CancellationToken cancellationToken = default) { + if (jobId == null) + { + throw new ArgumentNullException(nameof(jobId)); + } + using var message = CreateAnalyzeStatusRequest(jobId, showStats, top, skip); _pipeline.Send(message, cancellationToken); switch (message.Response.Status) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobManifestTasks.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobManifestTasks.cs index 48e576044095b..d0fc1b6f2971f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobManifestTasks.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobManifestTasks.cs @@ -16,17 +16,17 @@ public partial class JobManifestTasks /// /// EntityRecognitionTasks /// - public IList EntityRecognitionTasks { get; } + public IList EntityRecognitionTasks { get; internal set; } /// /// EntityRecognitionPiiTasks /// - public IList EntityRecognitionPiiTasks { get; } + public IList EntityRecognitionPiiTasks { get; internal set; } /// /// KeyPhraseExtractionTasks /// - public IList KeyPhraseExtractionTasks { get; } + public IList KeyPhraseExtractionTasks { get; internal set; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobMetadata.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobMetadata.cs new file mode 100644 index 0000000000000..c777568cbc6d3 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobMetadata.cs @@ -0,0 +1,17 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + /// + /// JobMetadata. + /// + [CodeGenModel("JobMetadata")] + internal partial class JobMetadata + { + [CodeGenMember] + public string JobId { get; } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TaskState.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TaskState.cs index 113e2fda7c1ef..44811059a39fa 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TaskState.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TaskState.cs @@ -32,16 +32,16 @@ internal TaskState(DateTimeOffset lastUpdateDateTime, string name, JobStatus sta /// /// Last updated time. /// - public DateTimeOffset LastUpdateDateTime { get; } + public DateTimeOffset LastUpdateDateTime { get; } = new DateTimeOffset(); /// /// Name for the Task. /// - public string Name { get; } + public string Name { get; } = ""; /// /// Status for Task. /// - public JobStatus Status { get; } + public JobStatus Status { get; } = JobStatus.NotStarted; } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasks.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasks.cs index 2d6ccadf8df3e..83a7c225342c5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasks.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasks.cs @@ -7,15 +7,15 @@ namespace Azure.AI.TextAnalytics { /// - /// TasksStateTasks. + /// AnalyzeTasks. /// [CodeGenModel("TasksStateTasks")] - public partial class TasksStateTasks + public partial class AnalyzeTasks { /// /// Details /// - public IReadOnlyList Details { get; } + public TasksStateTasksDetails Details { get; } /// /// Completed diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasksDetails.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasksDetails.cs new file mode 100644 index 0000000000000..9d7f1619f7b19 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasksDetails.cs @@ -0,0 +1,15 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using Azure.Core; + +namespace Azure.AI.TextAnalytics +{ + /// + /// TasksStateTasksDetails. + /// + [CodeGenModel("TasksStateTasksDetails")] + public partial class TasksStateTasksDetails + { + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index 813171927abe9..012c19fb066e3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -2084,7 +2084,7 @@ private Response RecognizeLinkedEntitie /// . /// For document length limits, maximum batch size, and supported text encoding, see /// . - /// Use for documents greater than 20. + /// Use for documents. /// /// The document to analyze. /// The language that the document is written in. @@ -2130,7 +2130,7 @@ public virtual async Task StartHealthcareAsync(string docum /// . /// For document length limits, maximum batch size, and supported text encoding, see /// . - /// Use for documents greater than 20. + /// Use for documents. /// /// The document to analyze. /// The language that the document is written in. @@ -2175,7 +2175,7 @@ public virtual HealthcareOperation StartHealthcare(string document, string langu /// . /// For document length limits, maximum batch size, and supported text encoding, see /// . - /// Use for documents greater than 20. + /// Use for documents. /// /// The documents to analyze. /// The language that the document is written in. @@ -2201,7 +2201,7 @@ public virtual async Task StartHealthcareBatchAsync(IEnumer /// . /// For document length limits, maximum batch size, and supported text encoding, see /// . - /// Use for documents greater than 20. + /// Use for documents. /// /// The documents to analyze. /// The language that the document is written in. @@ -2234,7 +2234,7 @@ public virtual HealthcareOperation StartHealthcareBatch(IEnumerable docu /// . /// For document length limits, maximum batch size, and supported text encoding, see /// . - /// Use for documents greater than 20. + /// Use for documents. /// /// The documents to analyze. /// The additional configurable options @@ -2260,7 +2260,7 @@ public virtual HealthcareOperation StartHealthcareBatch(IEnumerable. /// For document length limits, maximum batch size, and supported text encoding, see /// . - /// Use for documents greater than 20. + /// Use for documents. /// /// The documents to analyze. /// The additional configurable options @@ -2375,7 +2375,7 @@ public virtual string StartCancelHealthJob(HealthcareOperation operation, Cancel /// /// Gets collection of healthcare entities from the HealthOperation using async pageable. - /// This method is used if the number of documents are greater than 20 + /// This method is used if the number of documents are /// Otherwise, use the StartHealthcareAsync and StartHealthcareBatchAsync for less than 20 documents. /// /// Healthcare operation class object which is returned when operation is started. @@ -2471,6 +2471,193 @@ async Task> NextPageFunc(string nextLink, int? pa #endregion + #region Analyze Operation + + /// + /// . + /// For a list of languages supported by this operation, see + /// . + /// For document length limits, maximum batch size, and supported text encoding, see + /// . + /// + /// The documents to analyze. + /// The language that the document is written in. + /// The additional configurable + /// + /// Service returned a non-success + /// status code. + public virtual async Task StartAnalyzeOperationBatchAsync(IEnumerable documents, string language = default, AnalyzeOperationOptions options = default, CancellationToken cancellationToken = default) + { + Argument.AssertNotNullOrEmpty(documents, nameof(documents)); + options ??= new AnalyzeOperationOptions(); + MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents, language); + + return await StartAnalyzeOperationBatchAsync(documentInputs, options, cancellationToken).ConfigureAwait(false); + } + + /// + /// Runs a predictive model to identify a collection of entities containing + /// Personally Identifiable Information found in the passed-in document, + /// and categorize those entities into types such as US social security + /// number, drivers license number, or credit card number. + /// For more information on available categories, see + /// . + /// For a list of languages supported by this operation, see + /// . + /// For document length limits, maximum batch size, and supported text encoding, see + /// . + /// + /// The documents to analyze. + /// The language that the document is written in. + /// If unspecified, this value will be set to the default language in + /// in the request sent to the + /// service. If set to an empty string, the service will apply a model + /// where the language is explicitly set to "None". + /// The additional configurable that may be passed when + /// recognizing PII entities. Options include entity domain filters, model version, and more. + /// A + /// controlling the request lifetime. + /// A result containing the collection of entities identified + /// for each of the documents, as well as scores indicating the confidence + /// that a given entity correctly matches the identified substring. + /// Service returned a non-success + /// status code. + public virtual AnalyzeOperation StartAnalyzeOperationBatch(IEnumerable documents, string language = default, AnalyzeOperationOptions options = default, CancellationToken cancellationToken = default) + { + Argument.AssertNotNullOrEmpty(documents, nameof(documents)); + options ??= new AnalyzeOperationOptions(); + MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents, language); + + return StartAnalyzeOperationBatch(documentInputs, options, cancellationToken); + } + + /// + /// Recognizes Analyze Operation. + /// + /// + /// + /// A controlling the request lifetime. + /// A to wait on this long-running operation. Its upon successful + /// completion will contain layout elements extracted from the form. + public virtual AnalyzeOperation StartAnalyzeOperationBatch(IEnumerable documents, AnalyzeOperationOptions options, CancellationToken cancellationToken = default) + { + Argument.AssertNotNullOrEmpty(documents, nameof(documents)); + options ??= new AnalyzeOperationOptions(); + MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents); + + return StartAnalyzeOperationBatch(documentInputs, options, cancellationToken); + } + + /// + /// Recognizes Analyze Operation async. + /// + /// + /// + /// A controlling the request lifetime. + /// A to wait on this long-running operation. Its upon successful + /// completion will contain layout elements extracted from the form. + public virtual async Task StartAnalyzeOperationBatchAsync(IEnumerable documents, AnalyzeOperationOptions options, CancellationToken cancellationToken = default) + { + Argument.AssertNotNullOrEmpty(documents, nameof(documents)); + options ??= new AnalyzeOperationOptions(); + MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents); + + return await StartAnalyzeOperationBatchAsync(documentInputs, options, cancellationToken).ConfigureAwait(false); + } + + private AnalyzeOperation StartAnalyzeOperationBatch(MultiLanguageBatchInput batchInput, AnalyzeOperationOptions options, CancellationToken cancellationToken = default) + { + options ??= new AnalyzeOperationOptions(); + + + JobManifestTasks tasks = new JobManifestTasks(); + + AnalyzeBatchInput analyzeDocumentInputs = new AnalyzeBatchInput(batchInput, tasks); + + if (options.PiiTaskParameters != null) + { + tasks.EntityRecognitionPiiTasks = new List() { new PiiTask() { Parameters = options.PiiTaskParameters } }; + } + if (options.EntitiesTaskParameters != null) + { + tasks.EntityRecognitionTasks = new List() { new EntitiesTask() { Parameters = options.EntitiesTaskParameters } }; + } + if (options.KeyPhrasesTaskParameters != null) + { + tasks.KeyPhraseExtractionTasks = new List() { new KeyPhrasesTask() { Parameters = options.KeyPhrasesTaskParameters } }; + } + + if (options.DisplayName != null) + { + analyzeDocumentInputs.DisplayName = options.DisplayName; + } + + using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartAnalyzeOperationBatch)}"); + scope.Start(); + + try + { + ResponseWithHeaders response = _serviceRestClient.Analyze(analyzeDocumentInputs, cancellationToken); + string location = response.Headers.OperationLocation; + + IDictionary idToIndexMap = CreateIdToIndexMap(batchInput.Documents); + + return new AnalyzeOperation(_serviceRestClient, _clientDiagnostics, location, idToIndexMap, options.Top, options.Skip, options.IncludeStatistics); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + private async Task StartAnalyzeOperationBatchAsync(MultiLanguageBatchInput batchInput, AnalyzeOperationOptions options, CancellationToken cancellationToken = default) + { + options ??= new AnalyzeOperationOptions(); + + JobManifestTasks tasks = new JobManifestTasks(); + + AnalyzeBatchInput analyzeDocumentInputs = new AnalyzeBatchInput(batchInput, tasks); + + if (options.PiiTaskParameters != null) + { + tasks.EntityRecognitionPiiTasks = new List() { new PiiTask() { Parameters = options.PiiTaskParameters } }; + } + if (options.EntitiesTaskParameters != null) + { + tasks.EntityRecognitionTasks = new List() { new EntitiesTask() { Parameters = options.EntitiesTaskParameters } }; + } + if (options.KeyPhrasesTaskParameters != null) + { + tasks.KeyPhraseExtractionTasks = new List() { new KeyPhrasesTask() { Parameters = options.KeyPhrasesTaskParameters } }; + } + + if (options.DisplayName != null) + { + analyzeDocumentInputs.DisplayName = options.DisplayName; + } + + using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartAnalyzeOperationBatch)}"); + scope.Start(); + + try + { + ResponseWithHeaders response = await _serviceRestClient.AnalyzeAsync(analyzeDocumentInputs, cancellationToken).ConfigureAwait(false); + string location = response.Headers.OperationLocation; + + IDictionary idToIndexMap = CreateIdToIndexMap(batchInput.Documents); + + return new AnalyzeOperation(_serviceRestClient, _clientDiagnostics, location, idToIndexMap, options.Top, options.Skip, options.IncludeStatistics); + } + catch (Exception e) + { + scope.Failed(e); + throw; + } + } + + #endregion + #region Common private static IDictionary CreateIdToIndexMap(IEnumerable documents) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs index ace1afe5b9b12..85ffe423c7d7f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs @@ -251,6 +251,19 @@ internal static RecognizeHealthcareEntitiesResultCollection ConvertToRecognizeHe #endregion + #region Analyze Operation + + internal static AnalyzeOperationResult ConvertToAnalyzeOperationResult(AnalyzeJobState jobState, IDictionary map) + { + EntitiesResult entitiesResult = jobState.Tasks.EntityRecognitionTasks.Count > 0 ? jobState.Tasks.EntityRecognitionTasks[0].Results : null; + PiiEntitiesResult piiEntitiesResult = jobState.Tasks.EntityRecognitionPiiTasks.Count > 0 ? jobState.Tasks.EntityRecognitionPiiTasks[0].Results : null; + KeyPhraseResult keyPhraseResult = jobState.Tasks.KeyPhraseExtractionTasks.Count > 0 ? jobState.Tasks.KeyPhraseExtractionTasks[0].Results : null; + + return new AnalyzeOperationResult(entitiesResult, piiEntitiesResult, keyPhraseResult, map); + } + + #endregion + private static List SortHeterogeneousCollection(List collection, IDictionary idToIndexMap) where T : TextAnalyticsResult { return collection.OrderBy(result => idToIndexMap[result.Id]).ToList(); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/autorest.md b/sdk/textanalytics/Azure.AI.TextAnalytics/src/autorest.md index 909b94de1b638..7ed2e718a3024 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/autorest.md +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/autorest.md @@ -7,7 +7,7 @@ Run `dotnet build /t:GenerateCode` to generate code. ``` yaml input-file: - - $(this-folder)/swagger.json + - https://github.com/Azure/azure-rest-api-specs/blob/a147420dbc73a0327841adebd861c5c44254a877/specification/cognitiveservices/data-plane/TextAnalytics/preview/v3.1-preview.3/TextAnalytics.json ``` ### Make generated models internal by default From adb89c5fbbbf08cb787c7870c76da266332f65de Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Mon, 9 Nov 2020 12:25:15 -0800 Subject: [PATCH 43/58] added tests and samples --- .../tests/AnalyzeOperationTests.cs | 410 + .../AnalyzeOperationBatchWithErrorTest.json | 76 + ...alyzeOperationBatchWithErrorTestAsync.json | 76 + .../AnalyzeOperationBatchWithPHIDomain.json | 1976 +++++ ...alyzeOperationBatchWithPHIDomainAsync.json | 3997 +++++++++ ...alyzeOperationBatchWithStatisticsTest.json | 473 + ...OperationBatchWithStatisticsTestAsync.json | 238 + .../AnalyzeOperationTest.json | 284 + .../AnalyzeOperationTestAsync.json | 284 + .../AnalyzeOperationWithLanguageTest.json | 238 + ...AnalyzeOperationWithLanguageTestAsync.json | 238 + .../AnalyzeOperationWithMultipleTasks.json | 3376 ++++++++ ...nalyzeOperationWithMultipleTasksAsync.json | 7648 +++++++++++++++++ .../AnalyzeOperationWithSkipParameter.json | 237 + ...nalyzeOperationWithSkipParameterAsync.json | 237 + .../AnalyzeOperationWithTopParameter.json | 190 + .../tests/samples/Sample_AnalyzeOperation.cs | 112 + .../samples/Sample_AnalyzeOperationAsync.cs | 114 + 18 files changed, 20204 insertions(+) create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithErrorTest.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithErrorTestAsync.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomainAsync.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithStatisticsTest.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithStatisticsTestAsync.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTestAsync.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTestAsync.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasks.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasksAsync.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithSkipParameter.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithSkipParameterAsync.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithTopParameter.json create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperation.cs create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationAsync.cs diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs new file mode 100644 index 0000000000000..3b87e552b7376 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs @@ -0,0 +1,410 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Azure.AI.TextAnalytics.Models; +using NUnit.Framework; + +namespace Azure.AI.TextAnalytics.Tests +{ + public class AnalyzeOperationTests : TextAnalyticsClientLiveTestBase + { + public AnalyzeOperationTests(bool isAsync) : base(isAsync) { } + + private static List batchConvenienceDocuments = new List + { + "Elon Musk is the CEO of SpaceX and Tesla.", + "Tesla stock is up by 400% this year." + }; + + private static List batchDocuments = new List + { + new TextDocumentInput("1", "Elon Musk is the CEO of SpaceX and Tesla.") + { + Language = "en", + }, + new TextDocumentInput("2", "Tesla stock is up by 400% this year.") + { + Language = "en", + } + }; + + [Test] + public async Task AnalyzeOperationTest() + { + TextAnalyticsClient client = GetClient(); + + AnalyzeOperationOptions operationOptions = new AnalyzeOperationOptions() + { + KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters() + { + ModelVersion = "latest" + }, + DisplayName = "AnalyzeOperationTest" + }; + + AnalyzeOperation operation = await client.StartAnalyzeOperationBatchAsync(batchConvenienceDocuments, "en", operationOptions); + + await operation.WaitForCompletionAsync(); + + AnalyzeOperationResult resultCollection = operation.Value; + + ExtractKeyPhrasesResultCollection result = resultCollection.KeyPhraseResult; + + Assert.IsNotNull(result); + + Assert.AreEqual(2, result.Count); + + var keyPhrasesListId1 = new List { "CEO of SpaceX", "Elon Musk", "Tesla" }; + var keyPhrasesListId2 = new List { "Tesla stock", "year" }; + + foreach (string keyphrase in result[0].KeyPhrases) + { + Assert.IsTrue(keyPhrasesListId1.Contains(keyphrase)); + } + + foreach (string keyphrase in result[1].KeyPhrases) + { + Assert.IsTrue(keyPhrasesListId2.Contains(keyphrase)); + } + } + + [Test] + public async Task AnalyzeOperationWithLanguageTest() + { + TextAnalyticsClient client = GetClient(); + + var batchDocuments = new List + { + new TextDocumentInput("1", "Microsoft was founded by Bill Gates and Paul Allen.") + { + Language = "en", + }, + new TextDocumentInput("2", "Mi perro y mi gato tienen que ir al veterinario.") + { + Language = "es", + } + }; + + AnalyzeOperationOptions operationOptions = new AnalyzeOperationOptions() + { + KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters() + { + ModelVersion = "latest" + }, + DisplayName = "AnalyzeOperationTest" + }; + + AnalyzeOperation operation = await client.StartAnalyzeOperationBatchAsync(batchDocuments, operationOptions); + + await operation.WaitForCompletionAsync(); + + AnalyzeOperationResult resultCollection = operation.Value; + + ExtractKeyPhrasesResultCollection result = resultCollection.KeyPhraseResult; + + Assert.IsNotNull(result); + + Assert.AreEqual(2, result.Count); + + var keyPhrasesListId1 = new List { "Bill Gates", "Paul Allen", "Microsoft" }; + var keyPhrasesListId2 = new List { "gato", "perro", "veterinario" }; + + foreach (string keyphrase in result[0].KeyPhrases) + { + Assert.IsTrue(keyPhrasesListId1.Contains(keyphrase)); + } + + foreach (string keyphrase in result[1].KeyPhrases) + { + Assert.IsTrue(keyPhrasesListId2.Contains(keyphrase)); + } + } + + [Test] + public async Task AnalyzeOperationWithMultipleTasks() + { + TextAnalyticsClient client = GetClient(); + + var batchDocuments = new List + { + new TextDocumentInput("1", "Microsoft was founded by Bill Gates and Paul Allen.") + { + Language = "en", + }, + new TextDocumentInput("2", "Mi perro y mi gato tienen que ir al veterinario.") + { + Language = "es", + } + }; + + AnalyzeOperationOptions operationOptions = new AnalyzeOperationOptions() + { + KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters() + { + ModelVersion = "latest" + }, + EntitiesTaskParameters = new EntitiesTaskParameters() + { + ModelVersion = "latest" + }, + PiiTaskParameters = new PiiTaskParameters() + { + ModelVersion = "latest" + }, + DisplayName = "AnalyzeOperationWithMultipleTasks" + }; + + AnalyzeOperation operation = await client.StartAnalyzeOperationBatchAsync(batchDocuments, operationOptions); + + await operation.WaitForCompletionAsync(); + + AnalyzeOperationResult resultCollection = operation.Value; + + RecognizeEntitiesResultCollection entitiesResult = resultCollection.EntitiesResult; + + ExtractKeyPhrasesResultCollection keyPhrasesResult = resultCollection.KeyPhraseResult; + + RecognizePiiEntitiesResultCollection piiResult = resultCollection.PiiEntitiesResult; + + Assert.IsNotNull(keyPhrasesResult); + Assert.IsNotNull(entitiesResult); + Assert.IsNotNull(piiResult); + + // Keyphrases + Assert.AreEqual(2, keyPhrasesResult.Count); + + var keyPhrasesListId1 = new List { "Bill Gates", "Paul Allen", "Microsoft" }; + var keyPhrasesListId2 = new List { "gato", "perro", "veterinario" }; + + foreach (string keyphrase in keyPhrasesResult[0].KeyPhrases) + { + Assert.IsTrue(keyPhrasesListId1.Contains(keyphrase)); + } + + foreach (string keyphrase in keyPhrasesResult[1].KeyPhrases) + { + Assert.IsTrue(keyPhrasesListId2.Contains(keyphrase)); + } + + // Entities + Assert.AreEqual(2, entitiesResult.Count); + + Assert.AreEqual(3, entitiesResult[0].Entities.Count); + + var entitiesList = new List { "Bill Gates", "Microsoft", "Paul Allen" }; + foreach (CategorizedEntity entity in entitiesResult[0].Entities) + { + Assert.IsTrue(entitiesList.Contains(entity.Text)); + Assert.IsNotNull(entity.Category); + Assert.IsNotNull(entity.Offset); + Assert.IsNotNull(entity.ConfidenceScore); + } + + // PII + + Assert.AreEqual(2, entitiesResult.Count); + + Assert.AreEqual(3, entitiesResult[0].Entities.Count); + Assert.IsNotNull(entitiesResult[0].Id); + Assert.IsNotNull(entitiesResult[0].Entities); + Assert.IsNotNull(entitiesResult[0].Error); + + } + + [Test] + public async Task AnalyzeOperationWithSkipParameter() + { + TextAnalyticsClient client = GetClient(); + + AnalyzeOperationOptions operationOptions = new AnalyzeOperationOptions() + { + KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters() + { + ModelVersion = "latest" + }, + DisplayName = "AnalyzeOperationWithSkipParameter", + Skip = 1 + }; + + AnalyzeOperation operation = await client.StartAnalyzeOperationBatchAsync(batchConvenienceDocuments, "en", operationOptions); + + await operation.WaitForCompletionAsync(); + + AnalyzeOperationResult resultCollection = operation.Value; + + ExtractKeyPhrasesResultCollection result = resultCollection.KeyPhraseResult; + + Assert.IsNotNull(result); + + // TODO - Update this to Assert.AreEqual(1, result.Count), once skip starts working. + Assert.AreEqual(2, result.Count); + + var keyPhrasesListId2 = new List { "Tesla stock", "year" }; + + // TODO - Update this to result[0].KeyPhrases + foreach (string keyphrase in result[1].KeyPhrases) + { + Assert.IsTrue(keyPhrasesListId2.Contains(keyphrase)); + } + } + + [Test] + public async Task AnalyzeOperationWithTopParameter() + { + TextAnalyticsClient client = GetClient(); + + AnalyzeOperationOptions operationOptions = new AnalyzeOperationOptions() + { + KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters() + { + ModelVersion = "latest" + }, + DisplayName = "AnalyzeOperationWithSkipParameter", + Top = 1 + }; + + AnalyzeOperation operation = await client.StartAnalyzeOperationBatchAsync(batchConvenienceDocuments, "en", operationOptions); + + await operation.WaitForCompletionAsync(); + + AnalyzeOperationResult resultCollection = operation.Value; + + ExtractKeyPhrasesResultCollection result = resultCollection.KeyPhraseResult; + + Assert.IsNotNull(result); + + // TODO - Update this to Assert.AreEqual(1, result.Count), once skip starts working. + Assert.AreEqual(2, result.Count); + + var keyPhrasesListId1 = new List { "CEO of SpaceX", "Elon Musk", "Tesla" }; + + foreach (string keyphrase in result[0].KeyPhrases) + { + Assert.IsTrue(keyPhrasesListId1.Contains(keyphrase)); + } + } + + [Test] + public async Task AnalyzeOperationBatchWithErrorTest() + { + TextAnalyticsClient client = GetClient(); + + var documents = new List + { + "Subject is taking 100mg of ibuprofen twice daily", + "Can cause rapid or irregular heartbeat, delirium, panic, psychosis, and heart failure.", + "", + }; + + AnalyzeOperationOptions operationOptions = new AnalyzeOperationOptions() + { + KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters() + { + ModelVersion = "latest" + }, + DisplayName = "AnalyzeOperationBatchWithErrorTest", + Skip = 1 + }; + + var exceptionMessage = "At least one document is missing a Text attribute.\r\nStatus: 400 (Bad Request)\r\nErrorCode: InvalidArgument\r"; + await Task.Run(() => { + RequestFailedException ex = Assert.ThrowsAsync(async () => + { + AnalyzeOperation operation = await client.StartAnalyzeOperationBatchAsync(documents, "en", operationOptions); + }); + + Assert.IsTrue(ex.Message.Contains(exceptionMessage)); + }); + + } + + [Test] + public async Task AnalyzeOperationBatchWithPHIDomain() + { + TextAnalyticsClient client = GetClient(); + + var documents = new List + { + "A patient with medical id 12345678 whose phone number is 800-102-1100 is going under heart surgery", + }; + + AnalyzeOperationOptions operationOptions = new AnalyzeOperationOptions() + { + PiiTaskParameters = new PiiTaskParameters() + { + ModelVersion = "latest", + Domain = PiiTaskParametersDomain.Phi + }, + DisplayName = "AnalyzeOperationWithPHIDomain" + }; + + AnalyzeOperation operation = await client.StartAnalyzeOperationBatchAsync(documents, "en", operationOptions); + + await operation.WaitForCompletionAsync(); + + AnalyzeOperationResult resultCollection = operation.Value; + + RecognizePiiEntitiesResultCollection result = resultCollection.PiiEntitiesResult; + + Assert.IsNotNull(result); + + Assert.AreEqual(1, result.Count); + + // TODO - Update this to "A patient with medical id ******** whose phone number is ************ is going under heart surgery." + // once orchestrator returns redatcted string. + var redactedText = string.Empty; + Assert.AreEqual(redactedText, result[0].Entities.RedactedText); + + Assert.IsFalse(result[0].HasError); + Assert.AreEqual(2, result[0].Entities.Count); + } + + [Test] + public async Task AnalyzeOperationBatchWithStatisticsTest() + { + TextAnalyticsClient client = GetClient(); + + var batchDocuments = new List + { + new TextDocumentInput("1", "Microsoft was founded by Bill Gates and Paul Allen.") + { + Language = "en", + }, + new TextDocumentInput("2", "Mi perro y mi gato tienen que ir al veterinario.") + { + Language = "es", + } + }; + + AnalyzeOperationOptions operationOptions = new AnalyzeOperationOptions() + { + KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters() + { + ModelVersion = "latest" + }, + DisplayName = "AnalyzeOperationTest", + IncludeStatistics = true + }; + + AnalyzeOperation operation = await client.StartAnalyzeOperationBatchAsync(batchDocuments, operationOptions); + + await operation.WaitForCompletionAsync(); + + AnalyzeOperationResult resultCollection = operation.Value; + + ExtractKeyPhrasesResultCollection result = resultCollection.KeyPhraseResult; + + Assert.IsNotNull(result); + + Assert.AreEqual(2, result.Count); + + // TODO - Update this once service start returning statistics. + // TODO - Add Other request level statistics. + Assert.AreEqual(0, result[0].Statistics.CharacterCount); + Assert.AreEqual(0, result[0].Statistics.TransactionCount); + } + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithErrorTest.json new file mode 100644 index 0000000000000..fe7339f8e5cce --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithErrorTest.json @@ -0,0 +1,76 @@ +{ + "Entries": [ + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "396", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-95dbf12a399a534daca32e5029fb0cbf-d82a4537ddfa854c-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8bc4734310bb7be2c59f879707480cb0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "Subject is taking 100mg of ibuprofen twice daily", + "language": "en" + }, + { + "id": "1", + "text": "Can cause rapid or irregular heartbeat, delirium, panic, psychosis, and heart failure.", + "language": "en" + }, + { + "id": "2", + "text": "", + "language": "en" + } + ] + }, + "tasks": { + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + }, + "displayName": "AnalyzeOperationTest" + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "1c4b33fc-210d-43d6-b4e2-dda8b142bc84", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 08:46:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "4" + }, + "ResponseBody": { + "error": { + "code": "InvalidArgument", + "message": "At least one document is missing a Text attribute." + } + } + } + ], + "Variables": { + "RandomSeed": "2105007868", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithErrorTestAsync.json new file mode 100644 index 0000000000000..0bb19a6cce13e --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithErrorTestAsync.json @@ -0,0 +1,76 @@ +{ + "Entries": [ + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "410", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-cd1494bd501d0246afbbb14d6d71ea45-98b9cabd6c043547-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e97bbbcf82adc1bcfc469a941c1a1f32", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "Subject is taking 100mg of ibuprofen twice daily", + "language": "en" + }, + { + "id": "1", + "text": "Can cause rapid or irregular heartbeat, delirium, panic, psychosis, and heart failure.", + "language": "en" + }, + { + "id": "2", + "text": "", + "language": "en" + } + ] + }, + "tasks": { + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + }, + "displayName": "AnalyzeOperationBatchWithErrorTest" + }, + "StatusCode": 400, + "ResponseHeaders": { + "apim-request-id": "a8d41999-8e06-4487-aa33-44110d647afa", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:30:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "error": { + "code": "InvalidArgument", + "message": "At least one document is missing a Text attribute." + } + } + } + ], + "Variables": { + "RandomSeed": "1707937123", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json new file mode 100644 index 0000000000000..82117b348d7cc --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json @@ -0,0 +1,1976 @@ +{ + "Entries": [ + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "311", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-feda338e93c9dd45be08c4900fdf42ab-e61ddad327f74a49-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "cfe8e2f8ee3911d883f149c5ba708a25", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "A patient with medical id 12345678 whose phone number is 800-102-1100 is going under heart surgery", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "domain": "phi", + "model-version": "latest" + } + } + ] + }, + "displayName": "AnalyzeOperationWithPHIDomain" + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "1690e2ce-830d-4a47-be6e-f234e880f9f0", + "Date": "Mon, 09 Nov 2020 17:41:14 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "257" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0af6547e6d21f99df5e133f9fb1abff6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4437a1f5-25c3-4a0e-84d5-622afe5b2a6a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:41:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "76" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:14Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:14Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 0, + "total": 0 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1ffe04ae50f965a11f4bc1da8e14f022", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a03960b0-14e8-429c-8af5-d461a42c9581", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:41:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "97" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1647a062e0a88b5844efda57badf1569", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1bf08f17-ae42-4c5f-8ec1-54b6fe0ffb66", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:41:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5146" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b61653316b722e2cb391ead5abc26ae0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8221811c-bf1e-4b91-a7df-8bf24e69175b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:41:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5075" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "5a9611f1a9d2cd4dab72da09754aaa40", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e0bc3a7b-c44b-4a3d-8e41-3f2687fb3eb0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:41:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "60" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3ba9583539fdf7af74196317f682e081", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "39b9c2c3-47fb-442a-917e-c493601adcb1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:41:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "32" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a966f984bb48889605490aff9122b869", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b03dd764-2e2d-4f0f-b7ea-c948d6a26e93", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:41:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "53" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "52a0a9e62e19b7e3619fe5b94536d629", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "18c103d8-13b5-4774-b72e-b1f1d57a431b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:41:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "62" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7c84589201e47af8c22036b42eb06652", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c2113873-0ba6-45d3-9ec4-1c0b3e362646", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:41:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "62" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4c31fa618de2566816ae47a9d5dc42cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9fcdfe98-ff0e-43e0-b1ab-7f8c4351d2d9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:41:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "386ce1723b9de485b12590f8f82e88b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "23f90269-0b2d-4923-a6d1-e78b168cf312", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:41:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5036" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4b5893388a040546f02e6635b94ea5e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "618bdbde-842c-44d4-bbdb-d0a3fe972fbd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:41:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4d4166de2e4325b5754c9abcfc6f5de7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "eb833524-496e-491b-be15-5b55cad912e8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:41:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "41709625f784e8cb9b67476ed54f2b62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f69653e7-b676-4dc9-9a61-a74e15ca2258", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:41:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "57" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "921aaa803bed0a6edd33d6b7ef8a0880", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9be35d54-7b1a-4282-ae85-c893e951d1de", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:41:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "51" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "220f7ed163dee7609b59b2dbe6464f25", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "293c67e9-d72a-431b-abce-998a8e4078b0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:41:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "77" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "513b3721cb55eafa286564512013f810", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a71002ac-1d9b-487b-bb76-7aa3fc04f450", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:41:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "51" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "569dc65e083f1d844a33f69389922497", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a4548291-a00e-45bc-bfab-3dfaffb4df4b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:41:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b795b0e3b74e062b8425fa78ff0fc687", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c43f465d-24d6-4a39-85c5-6dc6fc05ac0a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:41:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "31" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1f7da160f8a919e6b31e0721d4676096", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3edb60db-1353-43a3-8e37-a9adfd5e5331", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:41:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "706dcc41417da7c29b97d2190d0c1e3a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8f0fb12e-277e-4168-9229-837edbc5b473", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:41:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e8326f6d0514ebedca7c0430af09311d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7e298ee5-6d82-401f-9ca6-55f69196580c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:41:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "323763c556a21f09ded5841225cc0ba7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c0729ff0-9135-47b8-b9e7-fab4f3e3ab6f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:41:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "64b4cdff78343c81df81a6013c91f891", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7e060816-8540-49ec-bb99-38d9d089c422", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:41:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "30" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "aa54b565ecd417976513093e80dbc5fd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4f4bdcb9-9749-4e86-96e7-3a5440678a11", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:41:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e2305d70cc544ce8e2fa5220af07e24c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "babafdac-60b5-44ef-b22e-cedb3f4d04d0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:42:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "50" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "70acf2dd617813d2359dff216e43bb04", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "debd948b-66dd-4361-9fd1-b49db7543a3a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:42:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "df91a9bb1561983ccc07c8da9977675d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b4f1e82a-d2bd-479b-b193-399020283a36", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:42:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "52" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8e60bc30552e0e848b1cacb7cdc7dd9f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a180704f-01a9-456f-9739-53367928d0de", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:42:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "06654e3f0376c7ebb614a37099f87abe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5b7115a3-2f60-4d5d-834b-8d31f741b229", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:42:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b2f0a1362de265d5248254446985cb04", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8a59c8c2-6626-45e1-b50c-6accd9926269", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:42:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "46" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4a9a282a60112de7d198d81ab1147592", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "15b26391-f961-4c0f-a330-97558ae7ccd0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:42:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "52" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2b80eea22bd612bc78ffe2f3aea65e30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cfdf5411-0604-45e3-9de3-e5ace71422a1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:42:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "70459f492f5dd6acbac3e14954bbb40f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "88da69f0-1ab3-4527-b995-934fbf8cdc47", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:42:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7aa2c10d9f04ff2e6c88d2127df37e2a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e005a2ae-833a-4ca1-859f-397132585226", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:42:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "12d1a73a04ce733541aa71124973bdbc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cebf5916-8a7d-4cf2-a4a9-c014520658fc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:42:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "64" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ede6d34be304a92c704604d55d9a58c6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2751a279-365f-4a9c-9663-ca79b65b3187", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:42:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "54" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ad0eb645a1ea09408c2f395a2d1bb5f8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "77595b73-ac68-4960-bc9e-2dde989f053d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:42:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "32" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "aac615ca910d56257b27a187ff5f15a7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c3834942-faa5-4685-a2d6-484168960735", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:42:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "52" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "93cdab521065aad192dc60d5aad17c55", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "76f65a79-e8a2-43bd-9c56-7f34429c7a9b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 17:42:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5124" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "lastUpdateDateTime": "2020-11-09T17:41:15Z", + "createdDateTime": "2020-11-09T17:41:14Z", + "expirationDateTime": "2020-11-11T17:41:14Z", + "status": "succeeded", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T17:41:15.594951Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "0", + "entities": [ + { + "text": "12345678", + "category": "Phone Number", + "offset": 26, + "length": 8, + "confidenceScore": 0.8 + }, + { + "text": "800-102-1100", + "category": "Phone Number", + "offset": 57, + "length": 12, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "390387714", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomainAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomainAsync.json new file mode 100644 index 0000000000000..27d8d15151764 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomainAsync.json @@ -0,0 +1,3997 @@ +{ + "Entries": [ + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "311", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-474f8d0c4eaed343954a08f3f5d00a99-28e1c8ab0e886d49-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "dbcf75b1d6cb24fdb41d742a5d142b0a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "A patient with medical id 12345678 whose phone number is 800-102-1100 is going under heart surgery", + "language": "en" + } + ] + }, + "tasks": { + "entityRecognitionPiiTasks": [ + { + "parameters": { + "domain": "phi", + "model-version": "latest" + } + } + ] + }, + "displayName": "AnalyzeOperationWithPHIDomain" + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "83f8e185-0a8d-431d-80de-db3bfcf1003d", + "Date": "Mon, 09 Nov 2020 19:30:45 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "369" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4c8042efa9b72511ebff89e389aea38e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "548a5783-c4b3-4d0c-bf2a-17925f8d6765", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:30:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "83" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:45Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:45Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 0, + "total": 0 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d874985d95266ebb9878278edaa670b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "471eb087-c2ad-4992-bb7e-f4ec05d4e73e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:30:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "171" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "75458861a56107e864a9f0cb4c199a06", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0b7345e7-8ea5-4b81-8343-a75972ea7c36", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:30:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "63" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c4cce67952a059e38711b33f82834b45", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "00b531c0-0755-4401-88d5-fb3a1615a718", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:30:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "115" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0182d08f2e68b82daf6c747ca5ef217e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "751c44f0-4d03-4e2a-85e8-7a8f88482842", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:30:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "81" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f31420deabd90f18a4ecee4ff1a985e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b27a058d-ce15-4e8b-9b8a-f28229c81de9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:30:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7c3cab5e99974b9db9141433dd67b397", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2fec1ad6-ae35-4dda-af32-c4f404b81dca", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:30:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "616034ef576ee36bb7725c7c40ddc605", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2260f3ff-da46-4095-aa61-297f059df073", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:30:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5044" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "fa1e93e7a5b345e782c93ac496e4323d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f2d16936-4f51-4c9d-847e-d2bcbfd3899a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "bc5f5738234907723f58c4243c200bdb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "18943a35-cd48-47a8-b62d-0abb71399dbd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "494c0e4db9494ae34d1bdea41ca64cd2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c35c489b-2742-4535-8a19-f19c820ee9b2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e8441e400a7ec3bc2017ba5be0c20861", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "952ede64-58ca-44e4-99a4-2ec3073a8247", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5039" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "88775fbee8987ff473156e2e45cdea98", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9e05a276-a0c2-4839-be17-951b9089a0ff", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "56" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1de4f20b22dc435d52892831fe88698a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5b0147f4-fb8f-475c-9eae-465fd8ecf258", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "105" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "bce67c12c42f583a2ac475689b8e7e53", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "aba819cf-34ad-4083-bfe1-fb5a2ee81199", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ee4f222cebde9c850234350ebfc281ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "383bbb6e-f233-479e-811a-30e452beafa6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c81ce4ab2de74668b78bf218acf4a7c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7a7dbc88-7cb5-4733-bf83-7e5cabe07c84", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "30" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "db05d50a7b3926acf74abafb8f2b9868", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "65b8ccf3-c6c8-4c52-8707-56fc519e7f5d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b7bd8a43b672fe6bb9083652f86cef0e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d2bab7f8-6df3-42c5-8d5b-e3c6d03a00c6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "42" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e903718ca5bc2fb137f5d09d736db78b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "eb7cc4cc-3589-4de5-959c-227b71c9d539", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "21d58af3ef3754516a06223045592e8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "562b6945-69c8-4844-9faa-3d526694c3be", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "32" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1d6fac5aaf289dabd98d7f7de5ce8b4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c2ae71eb-4eee-4b07-97e5-6b22806953f2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5054" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "6d5faa51cd979cd620ae7fb58381eadd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3dfb3d1e-8ac9-411b-a414-2893b383aabf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "52" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c74245c69afd4363df3748a970d46f9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ffaad1ec-9a92-4e94-9a70-9606201def53", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9aded57bc1fa8df3d5d2fc792ff51a58", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f160e874-7d95-4901-9523-0f57e301c05e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9fb6a1a2c38cb74e461b8e60852d2c4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a2fa99f7-ad06-4bd6-8d37-19ccad7bddfc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ad3ae33f4fa205e352b5f12b9dea13ea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "829b4ae1-ed41-4de7-8db5-70570dac4252", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ce06f01cd01db70f872753de339208a8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "67dcba97-b566-4945-a8ec-9aa3c7f3049e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "47" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4c39b0a66dbb52b5beb14cd6d2231a5b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "83869a58-dcc1-426a-80a4-b87a462f972b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9444a3075d266f2ed382257bfc04d2c0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "574795d1-e1c1-4184-a14a-345d579345b8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "53" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ec8449adc7b1ae2f3bb3106c8338e564", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b7001d14-4d9e-4dca-88c4-fcbcba7e2da7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "63" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8fd6f80d734e488181c97838483956b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d74e706b-7d58-4649-8a59-d767e0fc301e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "57" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "88298cde2d9e40aa749559724dc2eb9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2648f5dd-36af-4655-82e6-04c18369fc4f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "57" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "046ec19c432d3971c73c6be74ef66601", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d4c91b26-f1bc-4747-ba7d-c4cdc9c9bf8e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "66" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f78d565c5d0edfc54d961ab91a0ffbbf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c2f77703-8bff-4386-af0e-b41aba86ff20", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "869bddde52cb9b8b1af0c061c2c3f17e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9c2d61cb-f397-4944-a156-cc79b57478bc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f615582ef4353f8cfb8eb69728b81fb8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "98664c86-0c94-457c-a212-c0b038673860", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5047" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7109ac41e05a0a35cbf1dd1e9c631d8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8b5376d5-3154-470f-b0af-7ed7d3d183fa", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "76" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c18a9ba404f9e989505c8a3c9cf37261", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2aef809e-6d9a-4da8-882d-ef3c40ed9a47", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "53" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "162008d080b94e23220b2a44176da397", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "efee6612-cccd-4cdf-af0e-0be0d2b5c1c5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8df32c715d2d3cbf221f20fe55f86dd7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2947b969-6b21-4f59-8f97-b44dcffab1b1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "55" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "944d7b7e074324d0783c9fedd945d2e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "54c72d0c-aa0d-447d-a6d8-47093141f13b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "70cbf3b8e500723348e3f3995f25f929", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bc49fb6e-5a62-4b33-b416-13f050c7a098", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9bc5539d0f1f6a545bce14f1bed163dd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "951128e6-32b9-4a91-a49e-19ce079df9a2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "64" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "62463d4dfd2d98d748db4b5f1336c453", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "99a8e326-5ed3-48b5-af86-8e8490969c46", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:31:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "32" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "86507643377fa9c39e611431d142b477", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7811e1b2-be11-47df-a7e8-498ba77b89f0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "214c168097de9ffc7b2d5244c4f55624", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a69a7a51-1d4a-4227-b5d3-8a8645f8d319", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "32" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "48aec109dc81165e7a9dc3cbe8a5c706", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b26340d6-0631-4d8f-ae47-905287c50a87", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "45" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "fdded326a3eaab747ab00a52e47ee4a9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1a165825-6497-4095-9826-caf6e3725af1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "58" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0f27f00a6c93a3f5b736a641d330b7d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bb4e286b-5690-409f-8475-ad5c2489db98", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5081" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f01e4c655916663a4d02ced1d10c31fc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0566ca9f-3748-47db-9e95-824f6a484782", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f8c11ab8b87eba72dd3a45b4fc32d849", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f6d64fad-d2a6-446e-9a33-90a7b984ca53", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "98ec34f9f460b192b6c1c2919e24d2ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "af7f8d3f-a62c-4af4-be7f-86690dd7d7e4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "59" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b889aa04be6ead57d96312db1385691a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "93f87e29-70b8-49d3-a1b8-49f7d0f6b337", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9dd88429991fc49b870f42bdf5e11bb9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "758a337b-2076-4937-bbc7-f15b0dd1ba29", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "52af9a681fa93adadd3fbefce1b79d30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "edc542d6-f962-4bcd-bb7d-49af13236063", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1a67a757344c6b8b0ec5315f7b9ab7f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e50871bf-7272-4807-a5ad-bc101f53197f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7972594717d60a71a99dbfdfda9fe2d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c460c49b-52f3-4d2f-85ad-6af044becf09", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "46" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4e651271017a346c0e4444e3ee7bbf42", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "696cf143-7537-4353-841f-9b4348988120", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "87b4c6882444405a365d71ae74ac906f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f044fab1-94af-4ca9-a90e-4f04240e2a67", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "46" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "69ed61e26934467dec3e6a91d38d1b2d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "16e4efee-3282-40ae-923b-a78ce83d7082", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "14567dde5bea4d8bb825171d90bebf62", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "822c182a-32a5-4fba-8b67-96ab070af053", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "58" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8d01d5b4558e1f0e496e9a06b9c86da8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "240fcd26-5a0f-43f3-aa1b-98f506deb871", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f7d043417c558784d5a0b10f5160b52e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d7d925dd-27c4-4aad-afd8-0edaa01f2e8e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "fedd087f8e8c889f6f37cb7cc08593ef", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2214503c-1650-47f4-824c-3425d9d56ce1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4cdb6eb7c7ee380c5079b7eea4fecee8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "390f5f53-e7d6-4ed2-aecf-f878d428cbe5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b1866cb86feab31ca447881eb008c650", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9d536493-92bf-4117-9c2e-03b91d7f6c54", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e257c10c6985b840fca5ad12d6b0e470", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0b3c4a2c-68c3-45bc-971f-ee5a0a6a9bb6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "53" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "54c3e269e2fe48045228a7a63eee8748", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "42366bb7-c693-4a4c-901b-a682e5175597", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e2e167b2eba74f632bceb445c109ddf3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7b6b6c1e-3106-4d1b-9d84-6bf060df51d6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ceb4186272442a51bd0e905dc199790d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2253a03f-a7d8-4814-b531-6a6a1f6a8907", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "59" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "6e5f651e02cf7dc97f7328302dbf8648", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7921cc53-7ffb-4292-8e0c-8ac20397ab92", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "48" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2644b34ab839400316b625985b068e92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "521b0907-1a20-496c-ab19-df280d7795d1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5051" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "5c26a7556ea95f244f374ed14921fcfd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7c95c20e-3401-4dd1-841a-51605e065028", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "61" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0d124788525465d3611f5718dd312279", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "53b1d190-57cb-45d6-b35d-a95c9138a3e0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "32" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "86da96e52998dc9e8fe5d7026a32f6f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1432e646-71ac-4219-81cb-2924e6ec9bda", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "131027b980f3023dd3c1fb8a160b811d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f4ee2079-fad4-4165-8135-df50bc0ef53a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b2ebd51576465e64a9367d6f7bd1fa2f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "770af469-77b4-4704-be62-9d6d538d21fc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b55f62280e21658559d8b2d72e13c584", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "563243b1-2905-4578-b1bf-0495b79bed49", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "50" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "95edb963434743afc2b16abd02ce8701", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e54cfbbc-ec1f-48ee-a4cd-01327a549650", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b461ccc6cbac06fc4f86596ec38d2f95", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "258f13b0-0d68-4dfc-bd8b-fe729cf28872", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c10bf97065e4e4e8b31bf36fa3c7628b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "40bae807-214d-4376-9ef3-b85e3cd02979", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "6210b15010b298d8bce645c0ea417f35", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "14d0ba2e-db35-485f-b4e9-89cf52ffe1fc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "186" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:30:46Z", + "createdDateTime": "2020-11-09T19:30:45Z", + "expirationDateTime": "2020-11-11T19:30:45Z", + "status": "succeeded", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-09T19:30:46.1988223Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "0", + "entities": [ + { + "text": "12345678", + "category": "Phone Number", + "offset": 26, + "length": 8, + "confidenceScore": 0.8 + }, + { + "text": "800-102-1100", + "category": "Phone Number", + "offset": 57, + "length": 12, + "confidenceScore": 0.8 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1544755028", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithStatisticsTest.json new file mode 100644 index 0000000000000..d4658e83d470d --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithStatisticsTest.json @@ -0,0 +1,473 @@ +{ + "Entries": [ + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "324", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-b8c567859d72824db6b73bdb23b8c4a1-dcd400612fad5447-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7113589c3007a78af3272be840001637", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "Microsoft was founded by Bill Gates and Paul Allen.", + "language": "en" + }, + { + "id": "2", + "text": "Mi perro y mi gato tienen que ir al veterinario.", + "language": "es" + } + ] + }, + "tasks": { + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + }, + "displayName": "AnalyzeOperationTest" + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "e75b3b22-777c-4fa9-9bf8-87999b278e02", + "Date": "Mon, 09 Nov 2020 19:44:40 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/1075d4f9-b87f-4f6d-aa6d-98a39ed296cd_637404768000000000", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "315" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/1075d4f9-b87f-4f6d-aa6d-98a39ed296cd_637404768000000000?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "144d8fd0fea1ffdadc949dbbddaecf18", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4986a806-6268-413a-96f9-1720f0a871d9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:44:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "72" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "1075d4f9-b87f-4f6d-aa6d-98a39ed296cd_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:44:40Z", + "createdDateTime": "2020-11-09T19:44:40Z", + "expirationDateTime": "2020-11-11T19:44:40Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T19:44:40Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 0, + "total": 0 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/1075d4f9-b87f-4f6d-aa6d-98a39ed296cd_637404768000000000?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "451e25c95048143288e779fc762b7962", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d3abbc47-9910-47d6-8f18-a2ccb57dca34", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:44:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "90" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "1075d4f9-b87f-4f6d-aa6d-98a39ed296cd_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:44:40Z", + "createdDateTime": "2020-11-09T19:44:40Z", + "expirationDateTime": "2020-11-11T19:44:40Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T19:44:40Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 0, + "total": 0 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/1075d4f9-b87f-4f6d-aa6d-98a39ed296cd_637404768000000000?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f329f0ff21bb9efb7e13957393cfc944", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c6386b4f-37b7-4fe9-bd3c-e0afbf516c25", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:44:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "1075d4f9-b87f-4f6d-aa6d-98a39ed296cd_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:44:40Z", + "createdDateTime": "2020-11-09T19:44:40Z", + "expirationDateTime": "2020-11-11T19:44:40Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T19:44:40Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 0, + "total": 0 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/1075d4f9-b87f-4f6d-aa6d-98a39ed296cd_637404768000000000?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1b1f1358d0e27fee5d388bb985dd89b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8b956ac7-1273-4c56-9663-06c8cd5542cb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:44:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "80" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "1075d4f9-b87f-4f6d-aa6d-98a39ed296cd_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:44:40Z", + "createdDateTime": "2020-11-09T19:44:40Z", + "expirationDateTime": "2020-11-11T19:44:40Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T19:44:40Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 0, + "total": 0 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/1075d4f9-b87f-4f6d-aa6d-98a39ed296cd_637404768000000000?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "edbc3b1bdb85a75d2980c735bbbe81b9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d3e8fdc8-15f7-4404-b817-0d032467041d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:44:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "81" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "1075d4f9-b87f-4f6d-aa6d-98a39ed296cd_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:44:40Z", + "createdDateTime": "2020-11-09T19:44:40Z", + "expirationDateTime": "2020-11-11T19:44:40Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T19:44:40Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 0, + "total": 0 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/1075d4f9-b87f-4f6d-aa6d-98a39ed296cd_637404768000000000?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "63a4341e5d0b2f8001a99582954218a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "99432220-45b8-47f0-9d9b-37c51ac55c51", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:44:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "144" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "1075d4f9-b87f-4f6d-aa6d-98a39ed296cd_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:44:45Z", + "createdDateTime": "2020-11-09T19:44:40Z", + "expirationDateTime": "2020-11-11T19:44:40Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T19:44:45Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/1075d4f9-b87f-4f6d-aa6d-98a39ed296cd_637404768000000000?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "5758e38adc137cbfb678f16108b9c49e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "01285735-3397-498f-89bb-30669cc9d78b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:44:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "54" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "1075d4f9-b87f-4f6d-aa6d-98a39ed296cd_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:44:45Z", + "createdDateTime": "2020-11-09T19:44:40Z", + "expirationDateTime": "2020-11-11T19:44:40Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T19:44:45Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/1075d4f9-b87f-4f6d-aa6d-98a39ed296cd_637404768000000000?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "519bd2b72539bda5ba8debdc46da12e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4a51c3a2-5e15-4d23-b943-349a80df7299", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:44:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "162" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "1075d4f9-b87f-4f6d-aa6d-98a39ed296cd_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:44:45Z", + "createdDateTime": "2020-11-09T19:44:40Z", + "expirationDateTime": "2020-11-11T19:44:40Z", + "status": "succeeded", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T19:44:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T19:44:45.7681971Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "267372785", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithStatisticsTestAsync.json new file mode 100644 index 0000000000000..13b0b281346b2 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithStatisticsTestAsync.json @@ -0,0 +1,238 @@ +{ + "Entries": [ + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "324", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-5442ca2c41351c4994deb7692cdcdaf2-70d91de47108ae47-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2542d8e9f699af8c456bc28823041414", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "Microsoft was founded by Bill Gates and Paul Allen.", + "language": "en" + }, + { + "id": "2", + "text": "Mi perro y mi gato tienen que ir al veterinario.", + "language": "es" + } + ] + }, + "tasks": { + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + }, + "displayName": "AnalyzeOperationTest" + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "0084a1cb-863f-48c4-b513-520191c95510", + "Date": "Mon, 09 Nov 2020 19:32:56 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b66365b-5513-46af-892d-1ec946de6c10_637404768000000000", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "165" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b66365b-5513-46af-892d-1ec946de6c10_637404768000000000?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ed9d01e6f22a03f27d82800089c0a199", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "13a052f1-d5fc-44fb-bb0b-75a655faa3b7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "6b66365b-5513-46af-892d-1ec946de6c10_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:32:56Z", + "createdDateTime": "2020-11-09T19:32:56Z", + "expirationDateTime": "2020-11-11T19:32:56Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T19:32:56Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 0, + "total": 0 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b66365b-5513-46af-892d-1ec946de6c10_637404768000000000?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "90b6c8c3c1a1af318c24ffc2d4d26635", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c832164d-6bfe-4d2b-b123-e4603f2ada45", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "69" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "6b66365b-5513-46af-892d-1ec946de6c10_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:32:56Z", + "createdDateTime": "2020-11-09T19:32:56Z", + "expirationDateTime": "2020-11-11T19:32:56Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T19:32:56Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b66365b-5513-46af-892d-1ec946de6c10_637404768000000000?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7d35e0d1c2bff7dee53fa717758b2584", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e94b9645-6def-4cd7-9015-3fc908d713c8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "108" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "6b66365b-5513-46af-892d-1ec946de6c10_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:32:56Z", + "createdDateTime": "2020-11-09T19:32:56Z", + "expirationDateTime": "2020-11-11T19:32:56Z", + "status": "succeeded", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T19:32:56Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T19:32:56.9165849Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1456992479", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json new file mode 100644 index 0000000000000..19b16b13ea7e6 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json @@ -0,0 +1,284 @@ +{ + "Entries": [ + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "302", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-9d385e7ada493742b2b2e6503fc8118b-99d315b5d8839449-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "bc10ae4f3809e9b40d4f6b783fc973c7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "Elon Musk is the CEO of SpaceX and Tesla.", + "language": "en" + }, + { + "id": "1", + "text": "Tesla stock is up by 400% this year.", + "language": "en" + } + ] + }, + "tasks": { + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + }, + "displayName": "AnalyzeOperationTest" + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "c9ee7c89-3ee1-4409-959f-dcbc1643c0b3", + "Date": "Mon, 09 Nov 2020 03:38:28 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/14559785-736f-481b-8b7b-750ba9dfb945_637404768000000000", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "122" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/14559785-736f-481b-8b7b-750ba9dfb945_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e45290396662ad6e1e38f63536f933b4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b8b73c36-fee2-4cd0-9f15-5a5ad947e0c2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 03:38:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "82" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "14559785-736f-481b-8b7b-750ba9dfb945_637404768000000000", + "lastUpdateDateTime": "2020-11-09T03:38:29Z", + "createdDateTime": "2020-11-09T03:38:29Z", + "expirationDateTime": "2020-11-11T03:38:29Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T03:38:29Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 0, + "total": 0 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/14559785-736f-481b-8b7b-750ba9dfb945_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "026f5447158ee5d664682b08d83e8d91", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "264c528e-9c1c-409a-980f-16991714e240", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 03:38:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "84" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "14559785-736f-481b-8b7b-750ba9dfb945_637404768000000000", + "lastUpdateDateTime": "2020-11-09T03:38:29Z", + "createdDateTime": "2020-11-09T03:38:29Z", + "expirationDateTime": "2020-11-11T03:38:29Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T03:38:29Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 0, + "total": 0 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/14559785-736f-481b-8b7b-750ba9dfb945_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3f2ab8555934e81b40639ed1417fb313", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "21083b18-4e9c-4253-980a-b12ed0a404c3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 03:38:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "14559785-736f-481b-8b7b-750ba9dfb945_637404768000000000", + "lastUpdateDateTime": "2020-11-09T03:38:29Z", + "createdDateTime": "2020-11-09T03:38:29Z", + "expirationDateTime": "2020-11-11T03:38:29Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T03:38:29Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 0, + "total": 0 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/14559785-736f-481b-8b7b-750ba9dfb945_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ea31b61c715a2439ba6d7ff93a66d4df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cfa8d6d6-aa13-41de-ae5d-9c6226ea1b30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 03:38:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5318" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "14559785-736f-481b-8b7b-750ba9dfb945_637404768000000000", + "lastUpdateDateTime": "2020-11-09T03:38:35Z", + "createdDateTime": "2020-11-09T03:38:29Z", + "expirationDateTime": "2020-11-11T03:38:29Z", + "status": "succeeded", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T03:38:35Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T03:38:35.7937698Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "0", + "keyPhrases": [ + "CEO of SpaceX", + "Elon Musk", + "Tesla" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "Tesla stock", + "year" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1233550557", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTestAsync.json new file mode 100644 index 0000000000000..db33407cbd656 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTestAsync.json @@ -0,0 +1,284 @@ +{ + "Entries": [ + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "302", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-9b8eed0b53d020428152ce0d1d45b4de-c31bd7e672009748-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f64d021068f23b47239dc64d32ac0d55", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "Elon Musk is the CEO of SpaceX and Tesla.", + "language": "en" + }, + { + "id": "1", + "text": "Tesla stock is up by 400% this year.", + "language": "en" + } + ] + }, + "tasks": { + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + }, + "displayName": "AnalyzeOperationTest" + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "e48d46dd-b11e-4ff1-a000-468e784199a4", + "Date": "Mon, 09 Nov 2020 19:32:59 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4e00423d-0262-47b6-8cc3-9c6fd78db68e_637404768000000000", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "243" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4e00423d-0262-47b6-8cc3-9c6fd78db68e_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "326f6a53ce870c398bb9ee51f13f5560", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d6856c36-85ce-429a-a17f-d2ef0309b01f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:32:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "4e00423d-0262-47b6-8cc3-9c6fd78db68e_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:32:59Z", + "createdDateTime": "2020-11-09T19:32:59Z", + "expirationDateTime": "2020-11-11T19:32:59Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T19:32:59Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 0, + "total": 0 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4e00423d-0262-47b6-8cc3-9c6fd78db68e_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4d2db5835d6ee56b0a068d1cd4f24286", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5961b880-36d7-41aa-8041-1ef8707a2765", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:33:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "4e00423d-0262-47b6-8cc3-9c6fd78db68e_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:33:00Z", + "createdDateTime": "2020-11-09T19:32:59Z", + "expirationDateTime": "2020-11-11T19:32:59Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T19:33:00Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4e00423d-0262-47b6-8cc3-9c6fd78db68e_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "84470c68f8b742c6c8406a3979f549e3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "384211a7-25c1-4e7e-b965-40a33ddd69b9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:33:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "4e00423d-0262-47b6-8cc3-9c6fd78db68e_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:33:00Z", + "createdDateTime": "2020-11-09T19:32:59Z", + "expirationDateTime": "2020-11-11T19:32:59Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T19:33:00Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4e00423d-0262-47b6-8cc3-9c6fd78db68e_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7dc96647c07ef5e7fe892880411d3899", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "23971936-4493-403f-90cc-e514817a4b95", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:33:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "87" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "4e00423d-0262-47b6-8cc3-9c6fd78db68e_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:33:00Z", + "createdDateTime": "2020-11-09T19:32:59Z", + "expirationDateTime": "2020-11-11T19:32:59Z", + "status": "succeeded", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T19:33:00Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T19:33:00.1322097Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "0", + "keyPhrases": [ + "CEO of SpaceX", + "Elon Musk", + "Tesla" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "Tesla stock", + "year" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1355402112", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json new file mode 100644 index 0000000000000..450cd9c878f4c --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json @@ -0,0 +1,238 @@ +{ + "Entries": [ + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "324", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-09cdda5ecee2324e9597093e8f9d1ebf-0c0dd32551ffa749-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a87cf6cc9d26e81e4ad3c40561433cdc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "Microsoft was founded by Bill Gates and Paul Allen.", + "language": "en" + }, + { + "id": "2", + "text": "Mi perro y mi gato tienen que ir al veterinario.", + "language": "es" + } + ] + }, + "tasks": { + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + }, + "displayName": "AnalyzeOperationTest" + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "39b5311c-3145-4ff9-a611-161eb2b0787f", + "Date": "Mon, 09 Nov 2020 03:38:50 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d348f83b-96f2-4b09-a4aa-61c60b39b1fe_637404768000000000", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "392" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d348f83b-96f2-4b09-a4aa-61c60b39b1fe_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "829f189700a91102b7313377687a2cfe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ac72dd34-4715-4567-9d82-bb0a50fe00fc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 03:38:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "d348f83b-96f2-4b09-a4aa-61c60b39b1fe_637404768000000000", + "lastUpdateDateTime": "2020-11-09T03:38:50Z", + "createdDateTime": "2020-11-09T03:38:50Z", + "expirationDateTime": "2020-11-11T03:38:50Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T03:38:50Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 0, + "total": 0 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d348f83b-96f2-4b09-a4aa-61c60b39b1fe_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "84565c5816eeba49622c1ac1b6d8c94c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a774d386-63cf-4fb8-9934-2e176f3c20c6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 03:38:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "d348f83b-96f2-4b09-a4aa-61c60b39b1fe_637404768000000000", + "lastUpdateDateTime": "2020-11-09T03:38:50Z", + "createdDateTime": "2020-11-09T03:38:50Z", + "expirationDateTime": "2020-11-11T03:38:50Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T03:38:50Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d348f83b-96f2-4b09-a4aa-61c60b39b1fe_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e6dbb519b5b4cb28f46af0f469a680d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7d5286ff-4b5a-4f1c-93e7-5775bde0f57a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 03:38:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "183" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "d348f83b-96f2-4b09-a4aa-61c60b39b1fe_637404768000000000", + "lastUpdateDateTime": "2020-11-09T03:38:50Z", + "createdDateTime": "2020-11-09T03:38:50Z", + "expirationDateTime": "2020-11-11T03:38:50Z", + "status": "succeeded", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T03:38:50Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T03:38:50.9486388Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "2064506440", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTestAsync.json new file mode 100644 index 0000000000000..5c003ed6aadb3 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTestAsync.json @@ -0,0 +1,238 @@ +{ + "Entries": [ + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "324", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-3f255dc782918f448679095ca381849b-2d9c7e47b62a2945-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ff1f44cf0b7d52519f4611a53ca09dbe", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "Microsoft was founded by Bill Gates and Paul Allen.", + "language": "en" + }, + { + "id": "2", + "text": "Mi perro y mi gato tienen que ir al veterinario.", + "language": "es" + } + ] + }, + "tasks": { + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + }, + "displayName": "AnalyzeOperationTest" + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "742ad900-bf3b-4bf7-b231-2de2acdbeb94", + "Date": "Mon, 09 Nov 2020 19:33:03 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/7c6052a1-59ef-4695-a64c-0044db56210f_637404768000000000", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "88" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/7c6052a1-59ef-4695-a64c-0044db56210f_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e5fe6af6690f6491194fc0223b355da1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fbfba135-849d-4436-9c34-6e11c7a25f50", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:33:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "7c6052a1-59ef-4695-a64c-0044db56210f_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:33:03Z", + "createdDateTime": "2020-11-09T19:33:03Z", + "expirationDateTime": "2020-11-11T19:33:03Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T19:33:03Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 0, + "total": 0 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/7c6052a1-59ef-4695-a64c-0044db56210f_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c22721a113540c5c7d4db56795b725e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "66c61705-5128-4949-81ee-a220cf7a0255", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:33:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "32" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "7c6052a1-59ef-4695-a64c-0044db56210f_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:33:04Z", + "createdDateTime": "2020-11-09T19:33:03Z", + "expirationDateTime": "2020-11-11T19:33:03Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T19:33:04Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/7c6052a1-59ef-4695-a64c-0044db56210f_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c5f8bf9fc78e66c8b2bbe62e4a2e1669", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6622e334-3d2e-42d9-88f4-9df280192ed5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:33:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "70" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "7c6052a1-59ef-4695-a64c-0044db56210f_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:33:04Z", + "createdDateTime": "2020-11-09T19:33:03Z", + "expirationDateTime": "2020-11-11T19:33:03Z", + "status": "succeeded", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T19:33:04Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T19:33:04.2244585Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "915431106", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasks.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasks.json new file mode 100644 index 0000000000000..048895c0e3a2b --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasks.json @@ -0,0 +1,3376 @@ +{ + "Entries": [ + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "465", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-6080981021cc7a4fad1adb707ae6e843-accc7b7aebd9cc4b-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "36d74cae0543ad22b4752e104a677574", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "Microsoft was founded by Bill Gates and Paul Allen.", + "language": "en" + }, + { + "id": "2", + "text": "Mi perro y mi gato tienen que ir al veterinario.", + "language": "es" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + }, + "displayName": "AnalyzeOperationTest" + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "e56e288e-3d77-4b2c-8fb2-b2354201cd33", + "Date": "Mon, 09 Nov 2020 07:54:22 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "358" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "360f939000899016ea2d36ca05142466", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "79c2d24f-81d4-40b8-9ff4-43eff2dfb102", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:54:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "50" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:22Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:22Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 0, + "total": 0 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "32033b4d84a2f3a2ac913141d710299b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "afc30a17-a9b5-478c-a882-73f9cda8edbf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:54:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "67" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:22Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:22Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 0, + "total": 0 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f287b823979aae6e35464c16cf57a89f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6ddee911-b9ff-4366-8374-50abb52d6b3c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:54:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "246" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0fc2c75142640bd1f11c89f7cfd5b8da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d8395671-1042-4b7d-8dda-93d314e1d27a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:54:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5216" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4da79a03318db6cbcc54fd5b388b2454", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d01f426b-0b7c-4d68-ba16-52519ed9d395", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:54:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5257" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "10ef92e91a4de036e67c017e0d76df5f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "506cdfc1-a09f-45c3-b598-03522c2e51aa", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:54:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "129" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3412728d5bb02012fb0c420f4575d365", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cdbe0ff8-a514-414c-8ba4-d0224e44ece6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:54:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "176" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3d0e35f7a8e5e98c63c76610304da856", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0b014f8c-6e24-476c-afc5-17c0f99aa6df", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:54:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "120" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c5cd9d75ef798da47fcf1441d8269b70", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b43122d4-1a3d-402d-af0c-84e35d4ee658", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:54:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "131" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d8869ca8a267e579e629d0e8f401f0ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2a7c22e3-e146-4a82-87f7-0b845dc46fa9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:54:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5197" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a79aeb630da808eb9080bd16944a103c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c58618e1-877a-4142-b081-a669fa58853c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:54:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "149" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9368f62bd0c6d3ee23e8df501fbb997e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c64832fc-1cb2-4e16-a31f-956adc0d5b9f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:54:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "102" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ecde66dff38c9bc8b17e47e7e563509b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "75ea978f-7ae8-443a-8417-407ad3d38991", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:54:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "119" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "febd93185c9993e7fdc784bf2d9ae8d4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9ef1239c-dde2-4f97-864e-030bec7bcc21", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:54:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "131" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2e363ee7236b38b02ecce2488807edc0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2fdbe73a-f5e8-431a-8766-943dec0cf8d1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:54:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "128" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8b3844989bfe83e57f4befc46f086d16", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "03ec938c-8cda-4b6e-b877-7000bb7b6553", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:54:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "136" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a6ff7395222cf430e384cfcc7a9e0af5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3d6c094c-3f73-4cb5-a658-3c6fd4fd656c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:54:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "123" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e927c4d95d624cd658b3af2033ebc925", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5286f82f-9536-460c-945c-00ee76a8e9a7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:55:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "175" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "15b2cc5e470775931443a779cb1908e0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "be51ccce-e093-4dc7-b5f2-9150c2dcada2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:55:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "102" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "aaeaf94084e038b39db34d79720fc1f7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8ba8d66c-b949-4d20-b8a8-768053890460", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:55:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5138" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ae6daabbf5eb92ee30b1d51fb55c813f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "88907c5b-673a-4b89-9c1f-31fbe58b478f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:55:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "135" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3adfceaa1e00da44187a7854f91a0204", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "668212e2-de22-49b4-b8c2-965b91ac8a53", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:55:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "133" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "20beb0825aab4af40b58792fae948240", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c9c816da-f303-43e5-8250-f8b2b3f94ac4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:55:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "134" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a3ce0e3286309cf6659295717d9a9916", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8890f75c-d080-4631-905e-65a7fdd773cd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:55:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "111" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "059dd1ae609d4f93da942ea8a4152b84", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "37cf7e22-3251-4705-97d5-1149172abda6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:55:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "107" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ea2137f85e4bfbd4b922bb18c583cc71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5aaed294-a686-4e64-8768-c42371fc2676", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:55:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "109" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "dd8063bf7df6d2a37a7ec99b584ef74f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b60a059f-0382-4309-a6c7-c56321e3fbb3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:55:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "109" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "46791167ae784fcafca14b7ba47b8a57", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a5dae933-eda8-40b9-a0ac-604b97a87736", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:55:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "126" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "41e9bdc74d957a8d934f70cd9539a36b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fccefc49-fcd8-4ebf-b778-c896a8241922", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:55:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "162" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b3b16b2a860a10f99830e15432272dff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "717d40c1-57e1-491a-a01e-95635d67044a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:55:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "154" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9ad372f3b66519ba84feb2283dfdbac3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8c84c586-5b1c-400f-b14a-657186701464", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:55:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "101" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3851dffed7c9414cc4d8a9646c38486b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d6b1f56a-f3ae-40fc-9c9f-34d85ea30ec1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:55:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5146" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "22d9702208667306b1982f0bd3d1d29a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "347416fa-a11c-4a1e-a3db-0141dbdab719", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:55:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "142" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "52561d75f4d61c352591d68d0d55ac4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "92ffc3e3-5929-4a09-b17e-347b9a4cc2c8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:55:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "189" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "cd0546b59724f55dd9dd8731a7416df3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "25db7ce3-b560-4217-8118-d423f7518dbf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:55:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "250" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4fee0e05f6e12d953abcfdd43278665b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "376d0702-7bb4-466e-afa2-31d118f3af38", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:55:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "158" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8c55e2eb05cbde76c06078f86c0475e4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8b477ae6-66db-4f81-9f82-6267f42bc7c0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:55:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "174" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ff87e3235d67bf6ab1d892679a88c360", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2e5a59b5-2730-4a9e-b773-6ebeaaeebb08", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 07:55:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "201" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationTest", + "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "lastUpdateDateTime": "2020-11-09T07:54:24Z", + "createdDateTime": "2020-11-09T07:54:22Z", + "expirationDateTime": "2020-11-11T07:54:22Z", + "status": "succeeded", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24Z" + }, + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationTest", + "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "143612553", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasksAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasksAsync.json new file mode 100644 index 0000000000000..8508d2596d984 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasksAsync.json @@ -0,0 +1,7648 @@ +{ + "Entries": [ + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "478", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-e3b565d1b3a1fa41b925abaf872efabe-b214c86070a02948-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "84b09b92aaeab256574bef378bac8fd4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "1", + "text": "Microsoft was founded by Bill Gates and Paul Allen.", + "language": "en" + }, + { + "id": "2", + "text": "Mi perro y mi gato tienen que ir al veterinario.", + "language": "es" + } + ] + }, + "tasks": { + "entityRecognitionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + }, + "displayName": "AnalyzeOperationWithMultipleTasks" + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "ec447ec0-1bf3-440a-b3b8-d553ef2f071e", + "Date": "Mon, 09 Nov 2020 19:37:44 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "226" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "28fe54c562f9429f154e7e8cbd24fdd6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5b37e746-a8c8-43dc-a9a4-bb5753109b40", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:37:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "120" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:44Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:44Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 0, + "total": 0 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d5a26188dff6bc6bb1f8fa159c08c192", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1bf78c82-c3e5-4311-a0b1-a3fc96adb638", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:37:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "265" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d5de44db1316307dfb6e6e9b2cc9f433", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4f650c27-7646-4dfb-874e-4047c50f441f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:37:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "200" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2aae184eb909e6dee94276006789a50d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "865119e9-c750-4151-b207-c5491163c4f5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:37:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "143" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "79b1eb8c274575c0e472da8870cf8fe8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "25a63abd-12ac-410d-b495-d4cac6c0901f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:37:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "135" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "83c6c7049759218966f8ecd39c7cc871", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3d88fb15-891f-47c2-b01a-41d356e9013d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:37:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "109" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "400e61c97b1727ed58394696df567619", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "eff7ef15-85f3-4646-a37c-a07707c53313", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:37:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5163" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9ffc8eb221c3f5b3628f124d3aecd867", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "698fc556-1db5-42a0-ae38-23907fc30eb6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:37:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "128" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0fbf68a94fc088d0da9f2b2051f24210", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5393bac4-a92f-4a48-9c93-0866c2a10f92", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "131" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0e20d3822980a7aeae19de88689fec6c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c31ade2f-2300-4315-9c76-f3da8c1c95bf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "113" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "77edde6166976358be73c523f693a470", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "73f1253a-2ea7-4510-a0e0-0ef83c8a504d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "121" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "67cb024dcacb80e6b91761a771471f3a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4ea196c4-b742-485d-a71e-aaf432446c22", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "134" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "72bebeb3ca051b787abd4f0c638bb11a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "81b2f95e-bd6f-4c91-b87a-0264b1962bd3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "109" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "663a6d7584d496a0f86cbd7f05b0f176", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "59ae3ec1-cecb-4547-bdae-e4b254a19f4c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "105" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "37708b5432d4826a8ab0ed0e7ad91c2e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8aa06ad0-20c0-4e21-baee-d59c12cb043d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "107" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "03324666b90d2e661e2879980cf815c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7d1d7873-14ba-4dc7-aa37-898b48cee90d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "121" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d8b8d8cb791a424603b7db2397911b1e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9224ffa5-f5ca-47e4-a72c-964955c5cccb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "142" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "bf198f4fee7e9a69244218abb8d27691", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "700e55b5-915b-40af-bfb8-24de2f01d1b7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "122" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a142239a4421ec13ffef0055dd42968c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bcc05391-24b1-4c2e-b53c-33ca2c704eaa", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "139" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7d485b0c56dfdd4b6f1db3d8609a8a30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "12b952dc-d304-402a-99e8-eb52d202cbdd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "115" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "74894a41794e0bfd7b2cbf8eee13bde2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fe3de50c-d459-415b-b742-2c185fad73d1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "136" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "5d9f8babf88943b1d7653203903a8c64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a5e0c077-eb07-475e-87fd-829d9cc9d96d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5142" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9214cf6522b9923d5e3d01b297bdee5b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ff16f5f5-1af6-4551-8081-ae8b13a347a5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "102" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d42dd15f2cfb48a798459ce947f97a40", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "23cba5ed-65ff-48e3-99d8-60719d7c93de", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "105" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1e285aa02aff88284d0cff4cf7feac1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "975b9309-e8af-4ab2-91c7-fab04f2edd4b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "101" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "bfa4d676b70d386928cbf97385544b64", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e247f798-dcfa-4919-baa1-b8a59a2a7e30", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "118" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3c12c0c2d094355ba8a586ee2d5b5199", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "26545c6f-32c1-43b4-bc37-37980b47fde1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "105" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "70728299bb55e933f1f0f63430b502f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "452a5e78-2fec-413d-851b-aa6f32f6f8e6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "101" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "36899ac16feca6857a6e1668307a0acd", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3bbb3dde-4b2a-4773-b3c9-4fcd2af86d3e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "121" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "03da6079dae2070f8d294ba4d92704f3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "937d0bfc-42f0-444d-9c8d-a48c6a500775", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5169" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "932d8da21ad129adfccbf6e6a4cbb876", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "908cf546-24cf-4fc2-8852-3bb0d5aa696b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "129" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d0ba29e5ffdbe7168a81a9c323e1cd53", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ef245df9-ae0d-41ab-be42-33c2d3341bb3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "123" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a2c6236a774d5efbb2b00617e32962c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3871ed2c-5108-42a1-bee0-18504decaf34", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5150" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b0bed470336ca2177745095071e9061a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "36718a99-884d-49bc-b666-143f014f1f74", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "149" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "817ba2fe16046e292d5c1d2bf8fe0360", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "df4cd825-aa31-4280-90fa-be468ed975d7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "163" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4f53e71e1c2336e70b232b076dabedc9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dd804861-0b59-4d8f-8fef-fcbc2a21c41c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5210" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4119ebaae1ad59bdaa50821016eca978", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fb065aff-be40-43cc-b5c2-b42407414cfb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:38:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "158" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8a31a842b696e1f7bb4575e1eb220082", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b710cc96-3452-4a15-9d41-e3cde4add0ac", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5270" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0c81546ec2e53db229f9a4d29ad61f1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2a180e54-a7ab-4de1-bc77-d2c8db3d9e61", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "194" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c4c4b2796279f332f43885686cdb6e88", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5513ed11-8a6e-43b5-89dd-c5863c8cc96c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "190" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c2a1004f9c6a8093f6f4609d122446e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8411ed7d-aba0-4c3d-9ace-ef059bc8339b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "175" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "386755253c5e0c08218d18ad3c4ad04d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2ad2e469-31b5-477a-90b0-cf790a593563", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "200" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9a831c8a5d35dcb41f44ce850195e1cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e8d297ac-87d6-4e2d-b0b9-7c908c7f1e5c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "154" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1642a0f13674122af795a0dc84e643ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "265491d1-1960-4499-8a1b-3e18672152b4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "185" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f5121223aca1c7b0a08b19196e820a8b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "699e9954-d8da-411a-a247-88ab1933e293", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "127" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9cbb49acba0854d9f270a29fbdd75839", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b9aac02a-bde0-40d6-b0b2-9d0702c4224f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "163" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ef622300eb83442df07a75e81c10a474", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "eb128fc9-c4b8-454a-9d7d-ac8d7522806d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "154" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3a30148ba62a69a239bd03310a100ac9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ebfb50d4-4ed5-4eff-850b-2d79943e40b3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "198" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4b19e0321b20c0081b77ac8d44f038e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9fb0c119-2558-4eec-a4e1-2a01504bb55c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "180" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a8142ecc1da7590f80f8b5c5e8fc3adf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5e9c340b-65a6-4654-982a-bdc407eb029c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "221" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3cb6ac7059f770540b6f1eb2fa152548", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1b035017-379c-4f41-b0cd-e7fc85e59381", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "147" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "db64218561fc1421d1bfca276543d81f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0d74f640-3388-402d-8327-e7cf24139f36", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "157" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "971dcc3dfb3a72ebd9a39c37ff5c5f6b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a6395398-cf03-41cc-8270-a90bbd134fba", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "172" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c73f6dd35e970fe38ba16a378e2c0bc8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1b64b6ff-7738-40dc-b0af-986e88435d71", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "164" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2d75ff978df78a0e36f20158c4e91574", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "589e287e-fb94-418a-bc6e-6ab722a2f685", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "202" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f8535f601104de87e90e0c9890b3e4ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "68d07744-45d1-4347-a5eb-f9becbb60e4c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "170" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ffa0d49831e646735fb591a55c8a4aa1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e4400108-1ad8-4483-a61d-284d07be5641", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "170" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2fd7f68c13d986c4779743e98175f982", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "27b3d72c-848d-4fe9-b6a2-5fc9030e9907", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "167" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "efc0540e15492e8eec0d984f7fe2815f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "548af8ee-9fbe-4d55-a3b3-1f53ded658e8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "137" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9a0c6ac3b4dc85d4101a884fed89c4e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8b0a4ba9-34a9-405d-b841-d134decbd630", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "157" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "08960ebb5bc9765867a843cb7a750695", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dff90312-2189-4f99-a7eb-4823b87e45a6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "217" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1626e4155e6959a6803bdf2e8d3e4162", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fbcaec9b-f812-4c16-9751-2ece084a79b5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "156" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7193af48794b67961295323371080b9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "946b4da2-200f-473c-a365-14021932bf6c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5248" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0939f213ad635c80683d878e7b29e928", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8d4b0164-fd68-4a61-bc12-d95804d77c92", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "160" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ca82e06795e19b4a4ebe04d32b72e777", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "978b0b07-ab47-4f9d-8605-21e01b757b89", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "142" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9a1a443037049bff2e36080df107ece8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "177ba07c-7362-42ee-8780-0a4503d4c60c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "180" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "91cc09ab40867eb9a89ebba4a8ac30f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "865622f0-7f3d-4961-8076-46ce6d51e74e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "199" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "375e10564e0f2f24e1e79caa8c3ca946", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ea8a6878-3eaa-4a49-a4c7-f154bea712e7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:39:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5216" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:37:45Z", + "createdDateTime": "2020-11-09T19:37:44Z", + "expirationDateTime": "2020-11-11T19:37:44Z", + "status": "succeeded", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45Z" + }, + "completed": 3, + "failed": 0, + "inProgress": 0, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1060404596", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithSkipParameter.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithSkipParameter.json new file mode 100644 index 0000000000000..98df8c414cc21 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithSkipParameter.json @@ -0,0 +1,237 @@ +{ + "Entries": [ + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "315", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-2ff83672957bcb4da497e4f2b7eeafb1-f23ae3441dee914f-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "66213f11f688828028a07f5921c888bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "Elon Musk is the CEO of SpaceX and Tesla.", + "language": "en" + }, + { + "id": "1", + "text": "Tesla stock is up by 400% this year.", + "language": "en" + } + ] + }, + "tasks": { + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + }, + "displayName": "AnalyzeOperationWithSkipParameter" + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "930fdd80-51de-4662-bbc7-7c3c22f74f08", + "Date": "Mon, 09 Nov 2020 19:40:11 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b202b83a-69c7-4dc9-9b83-662c406d8870_637404768000000000", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "197" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b202b83a-69c7-4dc9-9b83-662c406d8870_637404768000000000?showStats=false\u0026$skip=1", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7550f4ca3d1aa83453b335a4cb28f918", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e7d8e9d3-8b8a-4f20-a70d-d86edcfef888", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:40:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithSkipParameter", + "jobId": "b202b83a-69c7-4dc9-9b83-662c406d8870_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:40:11Z", + "createdDateTime": "2020-11-09T19:40:11Z", + "expirationDateTime": "2020-11-11T19:40:11Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithSkipParameter", + "lastUpdateDateTime": "2020-11-09T19:40:11Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 0, + "total": 0 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b202b83a-69c7-4dc9-9b83-662c406d8870_637404768000000000?showStats=false\u0026$skip=1", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "6e334389d8cbd526e03ccbc674f1465c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e7731012-cbdd-493d-a1fc-ca0d6b0370c6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:40:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "55" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithSkipParameter", + "jobId": "b202b83a-69c7-4dc9-9b83-662c406d8870_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:40:11Z", + "createdDateTime": "2020-11-09T19:40:11Z", + "expirationDateTime": "2020-11-11T19:40:11Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithSkipParameter", + "lastUpdateDateTime": "2020-11-09T19:40:11Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b202b83a-69c7-4dc9-9b83-662c406d8870_637404768000000000?showStats=false\u0026$skip=1", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "de1aa601b91bd3c80b7813d4c0dbb700", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dcb95cb0-9de9-49d7-a252-9747ab911c1e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:40:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "64" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithSkipParameter", + "jobId": "b202b83a-69c7-4dc9-9b83-662c406d8870_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:40:11Z", + "createdDateTime": "2020-11-09T19:40:11Z", + "expirationDateTime": "2020-11-11T19:40:11Z", + "status": "succeeded", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithSkipParameter", + "lastUpdateDateTime": "2020-11-09T19:40:11Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithSkipParameter", + "lastUpdateDateTime": "2020-11-09T19:40:11.7557215Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "0", + "keyPhrases": [ + "CEO of SpaceX", + "Elon Musk", + "Tesla" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "Tesla stock", + "year" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1647574859", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithSkipParameterAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithSkipParameterAsync.json new file mode 100644 index 0000000000000..6fe86067a05c6 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithSkipParameterAsync.json @@ -0,0 +1,237 @@ +{ + "Entries": [ + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "315", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-c4b0a5f8d92a9f4891579e2633dd8ed4-cdf4d8df3533fe48-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "bfdf919d73f091624852e0c062e03ad0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "Elon Musk is the CEO of SpaceX and Tesla.", + "language": "en" + }, + { + "id": "1", + "text": "Tesla stock is up by 400% this year.", + "language": "en" + } + ] + }, + "tasks": { + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + }, + "displayName": "AnalyzeOperationWithSkipParameter" + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "6e824e36-fd12-4b60-b8a2-c29d87ee2a7c", + "Date": "Mon, 09 Nov 2020 19:35:16 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8c754c72-a487-464a-b359-59c826c34166_637404768000000000", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "226" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8c754c72-a487-464a-b359-59c826c34166_637404768000000000?showStats=false\u0026$skip=1", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "da0b53f68f4297de6ae8139f5a76d096", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cc10e858-edc0-424e-90a3-e44725b90fed", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:35:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithSkipParameter", + "jobId": "8c754c72-a487-464a-b359-59c826c34166_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:35:17Z", + "createdDateTime": "2020-11-09T19:35:17Z", + "expirationDateTime": "2020-11-11T19:35:17Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithSkipParameter", + "lastUpdateDateTime": "2020-11-09T19:35:17Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 0, + "total": 0 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8c754c72-a487-464a-b359-59c826c34166_637404768000000000?showStats=false\u0026$skip=1", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "6abf538023fc637f864050eb4fa5f7d2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dfd2f6e7-01fc-4f4e-95f1-3af1a53261e9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:35:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithSkipParameter", + "jobId": "8c754c72-a487-464a-b359-59c826c34166_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:35:17Z", + "createdDateTime": "2020-11-09T19:35:17Z", + "expirationDateTime": "2020-11-11T19:35:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithSkipParameter", + "lastUpdateDateTime": "2020-11-09T19:35:17Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8c754c72-a487-464a-b359-59c826c34166_637404768000000000?showStats=false\u0026$skip=1", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "dde65bb3fac20d04b347550760c237d1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1e38ec0f-8dc2-4300-8802-9a30364f9cde", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:35:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "74" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithSkipParameter", + "jobId": "8c754c72-a487-464a-b359-59c826c34166_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:35:17Z", + "createdDateTime": "2020-11-09T19:35:17Z", + "expirationDateTime": "2020-11-11T19:35:17Z", + "status": "succeeded", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithSkipParameter", + "lastUpdateDateTime": "2020-11-09T19:35:17Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithSkipParameter", + "lastUpdateDateTime": "2020-11-09T19:35:17.9132832Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "0", + "keyPhrases": [ + "CEO of SpaceX", + "Elon Musk", + "Tesla" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "Tesla stock", + "year" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "418709910", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithTopParameter.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithTopParameter.json new file mode 100644 index 0000000000000..e95c0cb6a5e52 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithTopParameter.json @@ -0,0 +1,190 @@ +{ + "Entries": [ + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Content-Length": "315", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-5ee179f94f57e945b57a9acb71dc99c7-bae2f3683a472241-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f5a0428665082c595c1d3b6d579c7b27", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "Elon Musk is the CEO of SpaceX and Tesla.", + "language": "en" + }, + { + "id": "1", + "text": "Tesla stock is up by 400% this year.", + "language": "en" + } + ] + }, + "tasks": { + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + }, + "displayName": "AnalyzeOperationWithSkipParameter" + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "2d82c300-c9a2-441d-b204-d0b4280c3dab", + "Date": "Mon, 09 Nov 2020 19:40:25 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d68f6dae-e143-4842-a37d-5db5671ac5d8_637404768000000000", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "199" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d68f6dae-e143-4842-a37d-5db5671ac5d8_637404768000000000?showStats=false\u0026$top=1", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "553c2e9c301fafa2ce30174e56a7aeb6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fbdb281c-8df5-4a57-8dd6-eb63e0036010", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:40:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithSkipParameter", + "jobId": "d68f6dae-e143-4842-a37d-5db5671ac5d8_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:40:25Z", + "createdDateTime": "2020-11-09T19:40:25Z", + "expirationDateTime": "2020-11-11T19:40:25Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithSkipParameter", + "lastUpdateDateTime": "2020-11-09T19:40:25Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 0, + "total": 0 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d68f6dae-e143-4842-a37d-5db5671ac5d8_637404768000000000?showStats=false\u0026$top=1", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ef89b7f4fba1a676b9ada33b769d705d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6ce7b619-8d5b-411e-9eca-916dfd3e4b1b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 09 Nov 2020 19:40:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "66" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithSkipParameter", + "jobId": "d68f6dae-e143-4842-a37d-5db5671ac5d8_637404768000000000", + "lastUpdateDateTime": "2020-11-09T19:40:25Z", + "createdDateTime": "2020-11-09T19:40:25Z", + "expirationDateTime": "2020-11-11T19:40:25Z", + "status": "succeeded", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithSkipParameter", + "lastUpdateDateTime": "2020-11-09T19:40:25Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithSkipParameter", + "lastUpdateDateTime": "2020-11-09T19:40:25.7132237Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "0", + "keyPhrases": [ + "CEO of SpaceX", + "Elon Musk", + "Tesla" + ], + "warnings": [] + }, + { + "id": "1", + "keyPhrases": [ + "Tesla stock", + "year" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + } + ], + "Variables": { + "RandomSeed": "1969253882", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperation.cs new file mode 100644 index 0000000000000..0f5e29c1453da --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperation.cs @@ -0,0 +1,112 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; +using System.Threading.Tasks; +using Azure.AI.TextAnalytics.Tests; +using Azure.Core.TestFramework; +using NUnit.Framework; + +namespace Azure.AI.TextAnalytics.Samples +{ + [LiveOnly] + public partial class TextAnalyticsSamples: SamplesBase + { + [Test] + public async Task AnalyzeOperation() + { + string endpoint = TestEnvironment.Endpoint; + string apiKey = TestEnvironment.ApiKey; + + var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); + + #region Snippet:TextAnalyticsAnalyzeOperation + var batchDocuments = new List + { + new TextDocumentInput("1", "Microsoft was founded by Bill Gates and Paul Allen.") + { + Language = "en", + } + }; + + AnalyzeOperationOptions operationOptions = new AnalyzeOperationOptions() + { + KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters() + { + ModelVersion = "latest" + }, + EntitiesTaskParameters = new EntitiesTaskParameters() + { + ModelVersion = "latest" + }, + PiiTaskParameters = new PiiTaskParameters() + { + ModelVersion = "latest" + }, + DisplayName = "AnalyzeOperationSample" + }; + + AnalyzeOperation operation = client.StartAnalyzeOperationBatch(batchDocuments, operationOptions); + + await operation.WaitForCompletionAsync(); + + AnalyzeOperationResult resultCollection = operation.Value; + + RecognizeEntitiesResultCollection entitiesResult = resultCollection.EntitiesResult; + + ExtractKeyPhrasesResultCollection keyPhrasesResult = resultCollection.KeyPhraseResult; + + RecognizePiiEntitiesResultCollection piiResult = resultCollection.PiiEntitiesResult; + + Console.WriteLine("Recognized Entities"); + + foreach (RecognizeEntitiesResult result in entitiesResult) + { + Console.WriteLine($" Recognized the following {result.Entities.Count} entities:"); + + foreach (CategorizedEntity entity in result.Entities) + { + Console.WriteLine($" Entity: {entity.Text}"); + Console.WriteLine($" Category: {entity.Category}"); + Console.WriteLine($" Offset: {entity.Offset}"); + Console.WriteLine($" ConfidenceScore: {entity.ConfidenceScore}"); + Console.WriteLine($" SubCategory: {entity.SubCategory}"); + } + Console.WriteLine(""); + } + + Console.WriteLine("Recognized PII Entities"); + + foreach (RecognizePiiEntitiesResult result in piiResult) + { + Console.WriteLine($" Recognized the following {result.Entities.Count} PII entities:"); + + foreach (PiiEntity entity in result.Entities) + { + Console.WriteLine($" Entity: {entity.Text}"); + Console.WriteLine($" Category: {entity.Category}"); + Console.WriteLine($" Offset: {entity.Offset}"); + Console.WriteLine($" ConfidenceScore: {entity.ConfidenceScore}"); + Console.WriteLine($" SubCategory: {entity.SubCategory}"); + } + Console.WriteLine(""); + } + + Console.WriteLine("Key Phrases"); + + foreach (ExtractKeyPhrasesResult result in keyPhrasesResult) + { + Console.WriteLine($" Recognized the following {result.KeyPhrases.Count} Keyphrases:"); + + foreach (string keyphrase in result.KeyPhrases) + { + Console.WriteLine($" {keyphrase}"); + } + Console.WriteLine(""); + } + } + + #endregion + } +} diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationAsync.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationAsync.cs new file mode 100644 index 0000000000000..1d9ed4db3230a --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationAsync.cs @@ -0,0 +1,114 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Azure.AI.TextAnalytics.Models; +using Azure.AI.TextAnalytics.Tests; +using Azure.Core.TestFramework; +using NUnit.Framework; + +namespace Azure.AI.TextAnalytics.Samples +{ + [LiveOnly] + public partial class TextAnalyticsSamples: SamplesBase + { + [Test] + public async Task AnalyzeOperationAsync() + { + string endpoint = TestEnvironment.Endpoint; + string apiKey = TestEnvironment.ApiKey; + + var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); + + #region Snippet:TextAnalyticsSampleHealthcareAsync + var batchDocuments = new List + { + new TextDocumentInput("1", "Microsoft was founded by Bill Gates and Paul Allen.") + { + Language = "en", + } + }; + + AnalyzeOperationOptions operationOptions = new AnalyzeOperationOptions() + { + KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters() + { + ModelVersion = "latest" + }, + EntitiesTaskParameters = new EntitiesTaskParameters() + { + ModelVersion = "latest" + }, + PiiTaskParameters = new PiiTaskParameters() + { + ModelVersion = "latest" + }, + DisplayName = "AnalyzeOperationSample" + }; + + AnalyzeOperation operation = await client.StartAnalyzeOperationBatchAsync(batchDocuments, operationOptions); + + await operation.WaitForCompletionAsync(); + + AnalyzeOperationResult resultCollection = operation.Value; + + RecognizeEntitiesResultCollection entitiesResult = resultCollection.EntitiesResult; + + ExtractKeyPhrasesResultCollection keyPhrasesResult = resultCollection.KeyPhraseResult; + + RecognizePiiEntitiesResultCollection piiResult = resultCollection.PiiEntitiesResult; + + Console.WriteLine("Recognized Entities"); + + foreach (RecognizeEntitiesResult result in entitiesResult) + { + Console.WriteLine($" Recognized the following {result.Entities.Count} entities:"); + + foreach (CategorizedEntity entity in result.Entities) + { + Console.WriteLine($" Entity: {entity.Text}"); + Console.WriteLine($" Category: {entity.Category}"); + Console.WriteLine($" Offset: {entity.Offset}"); + Console.WriteLine($" ConfidenceScore: {entity.ConfidenceScore}"); + Console.WriteLine($" SubCategory: {entity.SubCategory}"); + } + Console.WriteLine(""); + } + + Console.WriteLine("Recognized PII Entities"); + + foreach (RecognizePiiEntitiesResult result in piiResult) + { + Console.WriteLine($" Recognized the following {result.Entities.Count} PII entities:"); + + foreach (PiiEntity entity in result.Entities) + { + Console.WriteLine($" Entity: {entity.Text}"); + Console.WriteLine($" Category: {entity.Category}"); + Console.WriteLine($" Offset: {entity.Offset}"); + Console.WriteLine($" ConfidenceScore: {entity.ConfidenceScore}"); + Console.WriteLine($" SubCategory: {entity.SubCategory}"); + } + Console.WriteLine(""); + } + + Console.WriteLine("Key Phrases"); + + foreach (ExtractKeyPhrasesResult result in keyPhrasesResult) + { + Console.WriteLine($" Recognized the following {result.KeyPhrases.Count} Keyphrases:"); + + foreach (string keyphrase in result.KeyPhrases) + { + Console.WriteLine($" {keyphrase}"); + } + Console.WriteLine(""); + } + } + + #endregion + } +} From c9b4a986a8d62c1b83d6277571621e469b86513e Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Tue, 10 Nov 2020 13:54:02 -0800 Subject: [PATCH 44/58] resolved comments --- .../src/AnalyzeBatchInput.cs | 22 + .../src/AnalyzeOperation.cs | 3 +- .../src/AnalyzeOperationResult.cs | 20 +- .../src/EntitiesTaskParameters.cs | 2 +- .../Models/KeyPhraseExtractionTasksItem.cs | 28 - .../Models/TasksStateTasksDetails.cs | 12 - .../src/KeyPhraseExtractionTasksItem.cs | 20 + .../src/KeyPhraseTaskParameters.cs | 2 +- .../src/PiiTaskParameters.cs | 2 +- .../Azure.AI.TextAnalytics/src/TaskState.cs | 11 +- .../src/TasksStateTasksDetails.cs | 4 + .../src/TextAnalyticsClient.cs | 8 +- .../Azure.AI.TextAnalytics/src/Transforms.cs | 2 +- .../tests/AnalyzeOperationTests.cs | 45 +- .../AnalyzeOperationBatchWithErrorTest.json | 16 +- ...alyzeOperationBatchWithErrorTestAsync.json | 12 +- .../AnalyzeOperationBatchWithPHIDomain.json | 3969 +++++++++++++++-- .../AnalyzeOperationTest.json | 185 +- .../AnalyzeOperationWithLanguageTest.json | 78 +- .../AnalyzeOperationWithSkipParameter.json | 89 +- .../AnalyzeOperationWithTopParameter.json | 213 +- 21 files changed, 3940 insertions(+), 803 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeBatchInput.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeBatchInput.cs index be28562127e90..aabe5c7d8539d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeBatchInput.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeBatchInput.cs @@ -1,6 +1,8 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +using System; +using Azure.AI.TextAnalytics.Models; using Azure.Core; namespace Azure.AI.TextAnalytics @@ -11,5 +13,25 @@ namespace Azure.AI.TextAnalytics [CodeGenModel("AnalyzeBatchInput")] internal partial class AnalyzeBatchInput { + + /// Initializes a new instance of AnalyzeBatchInput. + /// Contains a set of input documents to be analyzed by the service. + /// The set of tasks to execute on the input documents. Cannot specify the same task more than once. + /// The name wassigned for the job + /// or is null. + public AnalyzeBatchInput(MultiLanguageBatchInput analysisInput, JobManifestTasks tasks, string displayName) + { + if (analysisInput == null) + { + throw new ArgumentNullException(nameof(analysisInput)); + } + if (tasks == null) + { + throw new ArgumentNullException(nameof(tasks)); + } + AnalysisInput = analysisInput; + Tasks = tasks; + DisplayName = displayName; + } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperation.cs index 79a118d6c4e1c..e737d79f5e6f4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperation.cs @@ -212,8 +212,7 @@ private async ValueTask UpdateStatusAsync(bool async, CancellationToke } else if (update.Value.Status == JobStatus.Failed) { - _requestFailedException = await ClientCommon.CreateExceptionForFailedOperationAsync(async, _diagnostics, _response, update.Value.Errors) - .ConfigureAwait(false); + _requestFailedException = await ClientCommon.CreateExceptionForFailedOperationAsync(async, _diagnostics, _response, update.Value.Errors).ConfigureAwait(false); _hasCompleted = true; throw _requestFailedException; } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperationResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperationResult.cs index 48ff14dcfb426..975cc06c955b6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperationResult.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperationResult.cs @@ -2,7 +2,6 @@ // Licensed under the MIT License. using System.Collections.Generic; -using System.Collections.ObjectModel; using Azure.AI.TextAnalytics.Models; namespace Azure.AI.TextAnalytics @@ -15,11 +14,12 @@ public class AnalyzeOperationResult { /// /// - /// - /// - /// - /// - internal AnalyzeOperationResult(EntitiesResult entitiesResult, PiiEntitiesResult piiEntitiesResult, KeyPhraseResult keyPhraseResult, IDictionary map) + /// Entities result returned from the service + /// PII Entities result returned from the service + /// Keyphrase result returned from the service + /// Variable to map documents with id and maintaining the order + /// DisplayName for the Job + internal AnalyzeOperationResult(EntitiesResult entitiesResult, PiiEntitiesResult piiEntitiesResult, KeyPhraseResult keyPhraseResult, IDictionary map, string displayName) { if (entitiesResult != null) { @@ -35,6 +35,10 @@ internal AnalyzeOperationResult(EntitiesResult entitiesResult, PiiEntitiesResult { KeyPhraseResult = Transforms.ConvertToExtractKeyPhrasesResultCollection(keyPhraseResult, map); } + if (displayName != null) + { + DisplayName = displayName; + } } /// @@ -52,5 +56,9 @@ internal AnalyzeOperationResult(EntitiesResult entitiesResult, PiiEntitiesResult /// public ExtractKeyPhrasesResultCollection KeyPhraseResult { get; } + /// + /// DisplayName + /// + public string DisplayName { get; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTaskParameters.cs index 1c033dbef0a8c..a3b6fb8ba17d4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTaskParameters.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntitiesTaskParameters.cs @@ -15,7 +15,7 @@ public partial class EntitiesTaskParameters /// /// ModelVersion /// - public string ModelVersion { get; set; } + public string ModelVersion { get; set; } = "latest"; /// /// StringIndexType diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.cs index 2a4eb49d066ea..30edf914f7fc6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.cs @@ -13,33 +13,5 @@ namespace Azure.AI.TextAnalytics /// The TasksStateTasksKeyPhraseExtractionTasksItem. public partial class KeyPhraseExtractionTasksItem : TaskState { - /// Initializes a new instance of KeyPhraseExtractionTasksItem. - /// . - /// . - /// . - /// is null. - internal KeyPhraseExtractionTasksItem(DateTimeOffset lastUpdateDateTime, string name, JobStatus status) : base(lastUpdateDateTime, name, status) - { - if (name == null) - { - throw new ArgumentNullException(nameof(name)); - } - } - - /// Initializes a new instance of KeyPhraseExtractionTasksItem. - /// . - /// . - /// . - /// . - /// is null. - internal KeyPhraseExtractionTasksItem(DateTimeOffset lastUpdateDateTime, string name, JobStatus status, KeyPhraseResult results) : base(lastUpdateDateTime, name, status) - { - if (name == null) - { - throw new ArgumentNullException(nameof(name)); - } - - Results = results; - } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.cs index 397ab30b0f6a1..b14a8d1eeee7a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.cs @@ -12,17 +12,5 @@ namespace Azure.AI.TextAnalytics /// The TasksStateTasksDetails. public partial class TasksStateTasksDetails : TaskState { - /// Initializes a new instance of TasksStateTasksDetails. - /// . - /// . - /// . - /// is null. - internal TasksStateTasksDetails(DateTimeOffset lastUpdateDateTime, string name, JobStatus status) : base(lastUpdateDateTime, name, status) - { - if (name == null) - { - throw new ArgumentNullException(nameof(name)); - } - } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseExtractionTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseExtractionTasksItem.cs index 742eb39c572e2..c79ba160b8926 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseExtractionTasksItem.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseExtractionTasksItem.cs @@ -1,6 +1,7 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +using System; using System.Collections.Generic; using Azure.AI.TextAnalytics.Models; using Azure.Core; @@ -13,6 +14,25 @@ namespace Azure.AI.TextAnalytics [CodeGenModel("TasksStateTasksKeyPhraseExtractionTasksItem")] public partial class KeyPhraseExtractionTasksItem { + /// Initializes a new instance of KeyPhraseExtractionTasksItem. + /// . + /// . + /// . + /// is null. + internal KeyPhraseExtractionTasksItem(DateTimeOffset lastUpdateDateTime, string name, JobStatus status) : base(lastUpdateDateTime, name, status) + { + } + + /// Initializes a new instance of KeyPhraseExtractionTasksItem. + /// . + /// . + /// . + /// . + /// is null. + internal KeyPhraseExtractionTasksItem(DateTimeOffset lastUpdateDateTime, string name, JobStatus status, KeyPhraseResult results) : base(lastUpdateDateTime, name, status) + { + Results = results; + } internal KeyPhraseResult Results { get; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseTaskParameters.cs index 397bf5e2dcbb0..4a5c5c91d61ab 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseTaskParameters.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseTaskParameters.cs @@ -12,6 +12,6 @@ namespace Azure.AI.TextAnalytics public partial class KeyPhrasesTaskParameters { /// ModelVersion. - public string ModelVersion { get; set; } + public string ModelVersion { get; set; } = "latest"; } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParameters.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParameters.cs index 02a3503bb52c5..6ac89e913ab30 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParameters.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/PiiTaskParameters.cs @@ -15,7 +15,7 @@ public partial class PiiTaskParameters /// /// ModelVersion /// - public string ModelVersion { get; set; } + public string ModelVersion { get; set; } = "latest"; /// /// StringIndexType diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TaskState.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TaskState.cs index 44811059a39fa..e4ec23247a5b8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TaskState.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TaskState.cs @@ -19,11 +19,6 @@ public partial class TaskState /// is null. internal TaskState(DateTimeOffset lastUpdateDateTime, string name, JobStatus status) { - if (name == null) - { - throw new ArgumentNullException(nameof(name)); - } - LastUpdateDateTime = lastUpdateDateTime; Name = name; Status = status; @@ -32,16 +27,16 @@ internal TaskState(DateTimeOffset lastUpdateDateTime, string name, JobStatus sta /// /// Last updated time. /// - public DateTimeOffset LastUpdateDateTime { get; } = new DateTimeOffset(); + public DateTimeOffset LastUpdateDateTime { get; } /// /// Name for the Task. /// - public string Name { get; } = ""; + public string Name { get; } /// /// Status for Task. /// - public JobStatus Status { get; } = JobStatus.NotStarted; + public JobStatus Status { get; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasksDetails.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasksDetails.cs index 9d7f1619f7b19..4c04495356b3f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasksDetails.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasksDetails.cs @@ -1,6 +1,7 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +using System; using Azure.Core; namespace Azure.AI.TextAnalytics @@ -11,5 +12,8 @@ namespace Azure.AI.TextAnalytics [CodeGenModel("TasksStateTasksDetails")] public partial class TasksStateTasksDetails { + internal TasksStateTasksDetails(DateTimeOffset lastUpdateDateTime, string name, JobStatus status) : base(lastUpdateDateTime, name, status) + { + } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index 65997dce0b3a6..e01765d6416f3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -2561,11 +2561,8 @@ private AnalyzeOperation StartAnalyzeOperationBatch(MultiLanguageBatchInput batc { options ??= new AnalyzeOperationOptions(); - JobManifestTasks tasks = new JobManifestTasks(); - AnalyzeBatchInput analyzeDocumentInputs = new AnalyzeBatchInput(batchInput, tasks); - if (options.PiiTaskParameters != null) { tasks.EntityRecognitionPiiTasks = new List() { new PiiTask() { Parameters = options.PiiTaskParameters } }; @@ -2579,10 +2576,7 @@ private AnalyzeOperation StartAnalyzeOperationBatch(MultiLanguageBatchInput batc tasks.KeyPhraseExtractionTasks = new List() { new KeyPhrasesTask() { Parameters = options.KeyPhrasesTaskParameters } }; } - if (options.DisplayName != null) - { - analyzeDocumentInputs.DisplayName = options.DisplayName; - } + AnalyzeBatchInput analyzeDocumentInputs = new AnalyzeBatchInput(batchInput, tasks, options.DisplayName); using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartAnalyzeOperationBatch)}"); scope.Start(); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs index 85ffe423c7d7f..764db3bd2dfd2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs @@ -259,7 +259,7 @@ internal static AnalyzeOperationResult ConvertToAnalyzeOperationResult(AnalyzeJo PiiEntitiesResult piiEntitiesResult = jobState.Tasks.EntityRecognitionPiiTasks.Count > 0 ? jobState.Tasks.EntityRecognitionPiiTasks[0].Results : null; KeyPhraseResult keyPhraseResult = jobState.Tasks.KeyPhraseExtractionTasks.Count > 0 ? jobState.Tasks.KeyPhraseExtractionTasks[0].Results : null; - return new AnalyzeOperationResult(entitiesResult, piiEntitiesResult, keyPhraseResult, map); + return new AnalyzeOperationResult(entitiesResult, piiEntitiesResult, keyPhraseResult, map, jobState.DisplayName); } #endregion diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs index 3b87e552b7376..a55f19d49638c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs @@ -38,11 +38,7 @@ public async Task AnalyzeOperationTest() AnalyzeOperationOptions operationOptions = new AnalyzeOperationOptions() { - KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters() - { - ModelVersion = "latest" - }, - DisplayName = "AnalyzeOperationTest" + KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters(), }; AnalyzeOperation operation = await client.StartAnalyzeOperationBatchAsync(batchConvenienceDocuments, "en", operationOptions); @@ -51,21 +47,29 @@ public async Task AnalyzeOperationTest() AnalyzeOperationResult resultCollection = operation.Value; - ExtractKeyPhrasesResultCollection result = resultCollection.KeyPhraseResult; + RecognizeEntitiesResultCollection entitiesResult = resultCollection.EntitiesResult; - Assert.IsNotNull(result); + ExtractKeyPhrasesResultCollection keyPhrasesResult = resultCollection.KeyPhraseResult; - Assert.AreEqual(2, result.Count); + RecognizePiiEntitiesResultCollection piiResult = resultCollection.PiiEntitiesResult; + + Assert.IsNotNull(keyPhrasesResult); + Assert.IsNull(entitiesResult); + Assert.IsNull(piiResult); + + Assert.IsNotNull(keyPhrasesResult); + + Assert.AreEqual(2, keyPhrasesResult.Count); var keyPhrasesListId1 = new List { "CEO of SpaceX", "Elon Musk", "Tesla" }; var keyPhrasesListId2 = new List { "Tesla stock", "year" }; - foreach (string keyphrase in result[0].KeyPhrases) + foreach (string keyphrase in keyPhrasesResult[0].KeyPhrases) { Assert.IsTrue(keyPhrasesListId1.Contains(keyphrase)); } - foreach (string keyphrase in result[1].KeyPhrases) + foreach (string keyphrase in keyPhrasesResult[1].KeyPhrases) { Assert.IsTrue(keyPhrasesListId2.Contains(keyphrase)); } @@ -94,7 +98,7 @@ public async Task AnalyzeOperationWithLanguageTest() { ModelVersion = "latest" }, - DisplayName = "AnalyzeOperationTest" + DisplayName = "AnalyzeOperationWithLanguageTest" }; AnalyzeOperation operation = await client.StartAnalyzeOperationBatchAsync(batchDocuments, operationOptions); @@ -109,6 +113,8 @@ public async Task AnalyzeOperationWithLanguageTest() Assert.AreEqual(2, result.Count); + Assert.AreEqual("AnalyzeOperationWithLanguageTest", resultCollection.DisplayName); + var keyPhrasesListId1 = new List { "Bill Gates", "Paul Allen", "Microsoft" }; var keyPhrasesListId2 = new List { "gato", "perro", "veterinario" }; @@ -172,6 +178,7 @@ public async Task AnalyzeOperationWithMultipleTasks() Assert.IsNotNull(keyPhrasesResult); Assert.IsNotNull(entitiesResult); Assert.IsNotNull(piiResult); + Assert.AreEqual("AnalyzeOperationWithMultipleTasks", resultCollection.DisplayName); // Keyphrases Assert.AreEqual(2, keyPhrasesResult.Count); @@ -239,13 +246,11 @@ public async Task AnalyzeOperationWithSkipParameter() Assert.IsNotNull(result); - // TODO - Update this to Assert.AreEqual(1, result.Count), once skip starts working. - Assert.AreEqual(2, result.Count); + Assert.AreEqual(1, result.Count); var keyPhrasesListId2 = new List { "Tesla stock", "year" }; - // TODO - Update this to result[0].KeyPhrases - foreach (string keyphrase in result[1].KeyPhrases) + foreach (string keyphrase in result[0].KeyPhrases) { Assert.IsTrue(keyPhrasesListId2.Contains(keyphrase)); } @@ -276,8 +281,7 @@ public async Task AnalyzeOperationWithTopParameter() Assert.IsNotNull(result); - // TODO - Update this to Assert.AreEqual(1, result.Count), once skip starts working. - Assert.AreEqual(2, result.Count); + Assert.AreEqual(1, result.Count); var keyPhrasesListId1 = new List { "CEO of SpaceX", "Elon Musk", "Tesla" }; @@ -309,14 +313,14 @@ public async Task AnalyzeOperationBatchWithErrorTest() Skip = 1 }; - var exceptionMessage = "At least one document is missing a Text attribute.\r\nStatus: 400 (Bad Request)\r\nErrorCode: InvalidArgument\r"; await Task.Run(() => { RequestFailedException ex = Assert.ThrowsAsync(async () => { AnalyzeOperation operation = await client.StartAnalyzeOperationBatchAsync(documents, "en", operationOptions); }); - Assert.IsTrue(ex.Message.Contains(exceptionMessage)); + Assert.IsTrue(ex.ErrorCode.Equals("InvalidArgument")); + Assert.IsTrue(ex.Status.Equals(400)); }); } @@ -353,8 +357,6 @@ public async Task AnalyzeOperationBatchWithPHIDomain() Assert.AreEqual(1, result.Count); - // TODO - Update this to "A patient with medical id ******** whose phone number is ************ is going under heart surgery." - // once orchestrator returns redatcted string. var redactedText = string.Empty; Assert.AreEqual(redactedText, result[0].Entities.RedactedText); @@ -363,6 +365,7 @@ public async Task AnalyzeOperationBatchWithPHIDomain() } [Test] + [Ignore("The statstics is not being returned from the service - https://github.com/Azure/azure-sdk-for-net/issues/16839")] public async Task AnalyzeOperationBatchWithStatisticsTest() { TextAnalyticsClient client = GetClient(); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithErrorTest.json index fe7339f8e5cce..66ecb4d9abfda 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithErrorTest.json @@ -8,12 +8,12 @@ "application/json", "text/json" ], - "Content-Length": "396", + "Content-Length": "410", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-95dbf12a399a534daca32e5029fb0cbf-d82a4537ddfa854c-00", + "traceparent": "00-007d613896a45b4e8873c0f59847c4f1-67698018ca79e94a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8bc4734310bb7be2c59f879707480cb0", @@ -48,22 +48,22 @@ } ] }, - "displayName": "AnalyzeOperationTest" + "displayName": "AnalyzeOperationBatchWithErrorTest" }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "1c4b33fc-210d-43d6-b4e2-dda8b142bc84", + "apim-request-id": "cf00b9cd-8d08-4606-b29b-6ac36041f3ac", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 08:46:26 GMT", + "Date": "Tue, 10 Nov 2020 21:11:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "error": { "code": "InvalidArgument", - "message": "At least one document is missing a Text attribute." + "message": "Value cannot be null.\nParameter name: blobName" } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithErrorTestAsync.json index 0bb19a6cce13e..b554398c9603c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithErrorTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "410", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cd1494bd501d0246afbbb14d6d71ea45-98b9cabd6c043547-00", + "traceparent": "00-48b7d8e1ffbfe34398c0ef6ef9baab67-9d7e486583deb040-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e97bbbcf82adc1bcfc469a941c1a1f32", @@ -52,18 +52,18 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "a8d41999-8e06-4487-aa33-44110d647afa", + "apim-request-id": "c0d98706-294f-4cdd-9ab3-5c2484c55ea4", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:30:45 GMT", + "Date": "Tue, 10 Nov 2020 21:11:48 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": "13" }, "ResponseBody": { "error": { "code": "InvalidArgument", - "message": "At least one document is missing a Text attribute." + "message": "Value cannot be null.\nParameter name: blobName" } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json index 82117b348d7cc..19b46104d2d0b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json @@ -11,9 +11,9 @@ "Content-Length": "311", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-feda338e93c9dd45be08c4900fdf42ab-e61ddad327f74a49-00", + "traceparent": "00-0392dccd4aea354f91b0525056ca6f59-56b877e8d3e24944-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cfe8e2f8ee3911d883f149c5ba708a25", @@ -43,18 +43,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "1690e2ce-830d-4a47-be6e-f234e880f9f0", - "Date": "Mon, 09 Nov 2020 17:41:14 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", + "apim-request-id": "d29ea625-c015-40ed-94c8-65eb14e0e5c4", + "Date": "Tue, 10 Nov 2020 16:44:14 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "257" + "x-envoy-upstream-service-time": "42" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -63,7 +63,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0af6547e6d21f99df5e133f9fb1abff6", @@ -72,36 +72,36 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4437a1f5-25c3-4a0e-84d5-622afe5b2a6a", + "apim-request-id": "3c7c5142-ca24-4287-bcad-0c772255650a", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:41:14 GMT", + "Date": "Tue, 10 Nov 2020 16:44:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "76" + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:14Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:14Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, - "inProgress": 0, - "total": 0 + "inProgress": 1, + "total": 1 } } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -110,7 +110,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1ffe04ae50f965a11f4bc1da8e14f022", @@ -119,26 +119,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a03960b0-14e8-429c-8af5-d461a42c9581", + "apim-request-id": "b26e8460-9a1e-4d7f-b01d-f210cdb5d0e7", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:41:16 GMT", + "Date": "Tue, 10 Nov 2020 16:44:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "97" + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", - "status": "notStarted", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -148,7 +148,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -157,7 +157,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1647a062e0a88b5844efda57badf1569", @@ -166,26 +166,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1bf08f17-ae42-4c5f-8ec1-54b6fe0ffb66", + "apim-request-id": "37f3aefd-f5e4-415a-8d1e-6a6fade97a9b", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:41:22 GMT", + "Date": "Tue, 10 Nov 2020 16:44:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5146" + "x-envoy-upstream-service-time": "68" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -195,7 +195,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -204,7 +204,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b61653316b722e2cb391ead5abc26ae0", @@ -213,26 +213,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8221811c-bf1e-4b91-a7df-8bf24e69175b", + "apim-request-id": "6b6c11ab-f7c8-4c80-af5b-748c508b46a3", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:41:29 GMT", + "Date": "Tue, 10 Nov 2020 16:44:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5075" + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -242,7 +242,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -251,7 +251,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5a9611f1a9d2cd4dab72da09754aaa40", @@ -260,26 +260,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e0bc3a7b-c44b-4a3d-8e41-3f2687fb3eb0", + "apim-request-id": "b6911278-d389-4c3e-931c-e35e9e365467", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:41:30 GMT", + "Date": "Tue, 10 Nov 2020 16:44:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "60" + "x-envoy-upstream-service-time": "95" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -289,7 +289,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -298,7 +298,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3ba9583539fdf7af74196317f682e081", @@ -307,26 +307,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "39b9c2c3-47fb-442a-917e-c493601adcb1", + "apim-request-id": "19c7913f-8544-459a-ab3a-401c3b16c7ff", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:41:31 GMT", + "Date": "Tue, 10 Nov 2020 16:44:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -336,7 +336,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -345,7 +345,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a966f984bb48889605490aff9122b869", @@ -354,26 +354,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b03dd764-2e2d-4f0f-b7ea-c948d6a26e93", + "apim-request-id": "1de19964-ac47-4a51-a23e-accadfc13017", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:41:32 GMT", + "Date": "Tue, 10 Nov 2020 16:44:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -383,7 +383,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -392,7 +392,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "52a0a9e62e19b7e3619fe5b94536d629", @@ -401,26 +401,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "18c103d8-13b5-4774-b72e-b1f1d57a431b", + "apim-request-id": "a56af35f-02e7-48e5-8a35-3d00a392f152", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:41:34 GMT", + "Date": "Tue, 10 Nov 2020 16:44:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "62" + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -430,7 +430,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -439,7 +439,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7c84589201e47af8c22036b42eb06652", @@ -448,26 +448,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c2113873-0ba6-45d3-9ec4-1c0b3e362646", + "apim-request-id": "f31a5877-9a17-487e-8cd3-2127cb6c989e", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:41:35 GMT", + "Date": "Tue, 10 Nov 2020 16:44:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "62" + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -477,7 +477,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -486,7 +486,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4c31fa618de2566816ae47a9d5dc42cf", @@ -495,26 +495,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9fcdfe98-ff0e-43e0-b1ab-7f8c4351d2d9", + "apim-request-id": "96da6406-4fab-4253-9a04-9dede68beeef", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:41:36 GMT", + "Date": "Tue, 10 Nov 2020 16:44:25 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": "52" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -524,7 +524,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -533,7 +533,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "386ce1723b9de485b12590f8f82e88b1", @@ -542,26 +542,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "23f90269-0b2d-4923-a6d1-e78b168cf312", + "apim-request-id": "d478a5af-2a60-48e9-92ab-deed8b0c1f06", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:41:42 GMT", + "Date": "Tue, 10 Nov 2020 16:44:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5036" + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -571,7 +571,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -580,7 +580,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4b5893388a040546f02e6635b94ea5e5", @@ -589,26 +589,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "618bdbde-842c-44d4-bbdb-d0a3fe972fbd", + "apim-request-id": "3f6f9ff1-d9dc-4e17-89b9-89b8a969ddac", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:41:44 GMT", + "Date": "Tue, 10 Nov 2020 16:44:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "55" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -618,7 +618,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -627,7 +627,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4d4166de2e4325b5754c9abcfc6f5de7", @@ -636,26 +636,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eb833524-496e-491b-be15-5b55cad912e8", + "apim-request-id": "2820aece-61c7-4132-a252-0bd2fb304732", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:41:45 GMT", + "Date": "Tue, 10 Nov 2020 16:44:30 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": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -665,7 +665,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -674,7 +674,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "41709625f784e8cb9b67476ed54f2b62", @@ -683,26 +683,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f69653e7-b676-4dc9-9a61-a74e15ca2258", + "apim-request-id": "af81cb25-9faa-4d06-bda9-cf2dce98dd61", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:41:46 GMT", + "Date": "Tue, 10 Nov 2020 16:44:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "57" + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -712,7 +712,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -721,7 +721,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "921aaa803bed0a6edd33d6b7ef8a0880", @@ -730,26 +730,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9be35d54-7b1a-4282-ae85-c893e951d1de", + "apim-request-id": "34e5960a-35e8-417e-9c6e-e57fb93265a4", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:41:47 GMT", + "Date": "Tue, 10 Nov 2020 16:44:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -759,7 +759,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -768,7 +768,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "220f7ed163dee7609b59b2dbe6464f25", @@ -777,26 +777,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "293c67e9-d72a-431b-abce-998a8e4078b0", + "apim-request-id": "4601990e-5aec-4be8-a6ee-ba8cd6911de9", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:41:48 GMT", + "Date": "Tue, 10 Nov 2020 16:44:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "77" + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -806,7 +806,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -815,7 +815,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "513b3721cb55eafa286564512013f810", @@ -824,26 +824,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a71002ac-1d9b-487b-bb76-7aa3fc04f450", + "apim-request-id": "20734c68-67fa-44c1-b115-40de8398e7d5", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:41:50 GMT", + "Date": "Tue, 10 Nov 2020 16:44:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" + "x-envoy-upstream-service-time": "58" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -853,7 +853,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -862,7 +862,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "569dc65e083f1d844a33f69389922497", @@ -871,26 +871,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a4548291-a00e-45bc-bfab-3dfaffb4df4b", + "apim-request-id": "edc57e6f-4394-40c8-8362-41df3b82babd", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:41:51 GMT", + "Date": "Tue, 10 Nov 2020 16:44:35 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": "66" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -900,7 +900,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -909,7 +909,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b795b0e3b74e062b8425fa78ff0fc687", @@ -918,26 +918,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c43f465d-24d6-4a39-85c5-6dc6fc05ac0a", + "apim-request-id": "95dd980f-6e0b-47ad-b2e1-cfe79b2d1dc1", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:41:52 GMT", + "Date": "Tue, 10 Nov 2020 16:44:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -947,7 +947,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -956,7 +956,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1f7da160f8a919e6b31e0721d4676096", @@ -965,26 +965,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3edb60db-1353-43a3-8e37-a9adfd5e5331", + "apim-request-id": "e205e893-7607-49e7-80dd-16a7f6d9ebfa", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:41:53 GMT", + "Date": "Tue, 10 Nov 2020 16:44:38 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": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -994,7 +994,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1003,7 +1003,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "706dcc41417da7c29b97d2190d0c1e3a", @@ -1012,26 +1012,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8f0fb12e-277e-4168-9229-837edbc5b473", + "apim-request-id": "43e6c432-b499-4172-b51f-5ff9f28c8856", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:41:54 GMT", + "Date": "Tue, 10 Nov 2020 16:44:39 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": "53" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -1041,7 +1041,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1050,7 +1050,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e8326f6d0514ebedca7c0430af09311d", @@ -1059,26 +1059,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7e298ee5-6d82-401f-9ca6-55f69196580c", + "apim-request-id": "0e4bda61-9376-4c6d-8b56-b955911a0191", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:41:55 GMT", + "Date": "Tue, 10 Nov 2020 16:44:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -1088,7 +1088,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1097,7 +1097,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "323763c556a21f09ded5841225cc0ba7", @@ -1106,26 +1106,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c0729ff0-9135-47b8-b9e7-fab4f3e3ab6f", + "apim-request-id": "9335987c-f866-474c-bd80-ce5bb3d48f71", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:41:56 GMT", + "Date": "Tue, 10 Nov 2020 16:44:42 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": "74" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -1135,7 +1135,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1144,7 +1144,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "64b4cdff78343c81df81a6013c91f891", @@ -1153,26 +1153,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7e060816-8540-49ec-bb99-38d9d089c422", + "apim-request-id": "623bd85a-6618-4cd8-ab7f-fb80cbfb14d3", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:41:58 GMT", + "Date": "Tue, 10 Nov 2020 16:44:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -1182,7 +1182,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1191,7 +1191,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "aa54b565ecd417976513093e80dbc5fd", @@ -1200,26 +1200,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4f4bdcb9-9749-4e86-96e7-3a5440678a11", + "apim-request-id": "726d8b7c-ea61-4210-ad39-b9e0d359493c", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:41:59 GMT", + "Date": "Tue, 10 Nov 2020 16:44:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -1229,7 +1229,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1238,7 +1238,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e2305d70cc544ce8e2fa5220af07e24c", @@ -1247,26 +1247,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "babafdac-60b5-44ef-b22e-cedb3f4d04d0", + "apim-request-id": "4f0e9274-cb77-4b40-97de-e836d0fe82cd", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:42:00 GMT", + "Date": "Tue, 10 Nov 2020 16:44:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-envoy-upstream-service-time": "66" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -1276,7 +1276,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1285,7 +1285,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "70acf2dd617813d2359dff216e43bb04", @@ -1294,26 +1294,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "debd948b-66dd-4361-9fd1-b49db7543a3a", + "apim-request-id": "4b48c8d8-6a46-4226-b4fd-8d80dedf4728", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:42:01 GMT", + "Date": "Tue, 10 Nov 2020 16:44:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "54" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -1323,7 +1323,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1332,7 +1332,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "df91a9bb1561983ccc07c8da9977675d", @@ -1341,26 +1341,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b4f1e82a-d2bd-479b-b193-399020283a36", + "apim-request-id": "0315aef6-3f7c-4a3f-925f-831fb2cc7e7e", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:42:02 GMT", + "Date": "Tue, 10 Nov 2020 16:44:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "52" + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -1370,7 +1370,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1379,7 +1379,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8e60bc30552e0e848b1cacb7cdc7dd9f", @@ -1388,26 +1388,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a180704f-01a9-456f-9739-53367928d0de", + "apim-request-id": "f8545edc-da60-4d8e-8ac2-d14e2c81265c", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:42:04 GMT", + "Date": "Tue, 10 Nov 2020 16:44:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -1417,7 +1417,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1426,7 +1426,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "06654e3f0376c7ebb614a37099f87abe", @@ -1435,26 +1435,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5b7115a3-2f60-4d5d-834b-8d31f741b229", + "apim-request-id": "3201ed08-a127-4cd6-9c15-b83965e45649", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:42:05 GMT", + "Date": "Tue, 10 Nov 2020 16:44:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -1464,7 +1464,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1473,7 +1473,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b2f0a1362de265d5248254446985cb04", @@ -1482,26 +1482,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8a59c8c2-6626-45e1-b50c-6accd9926269", + "apim-request-id": "f1d91f80-46fe-4f1d-bee6-ac3c40006dfc", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:42:06 GMT", + "Date": "Tue, 10 Nov 2020 16:44:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -1511,7 +1511,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1520,7 +1520,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4a9a282a60112de7d198d81ab1147592", @@ -1529,26 +1529,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "15b26391-f961-4c0f-a330-97558ae7ccd0", + "apim-request-id": "01352478-5a13-438a-bea7-44208bde3cec", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:42:07 GMT", + "Date": "Tue, 10 Nov 2020 16:44:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "52" + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -1558,7 +1558,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1567,7 +1567,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2b80eea22bd612bc78ffe2f3aea65e30", @@ -1576,26 +1576,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cfdf5411-0604-45e3-9de3-e5ace71422a1", + "apim-request-id": "06581975-a3bf-420e-a18f-be2d90294ee7", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:42:09 GMT", + "Date": "Tue, 10 Nov 2020 16:44:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "62" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -1605,7 +1605,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1614,7 +1614,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "70459f492f5dd6acbac3e14954bbb40f", @@ -1623,26 +1623,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "88da69f0-1ab3-4527-b995-934fbf8cdc47", + "apim-request-id": "92edd0c2-192b-4636-8cc2-5232ccfbc00f", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:42:10 GMT", + "Date": "Tue, 10 Nov 2020 16:44:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "67" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -1652,7 +1652,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1661,7 +1661,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7aa2c10d9f04ff2e6c88d2127df37e2a", @@ -1670,26 +1670,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e005a2ae-833a-4ca1-859f-397132585226", + "apim-request-id": "1abcd62e-2a26-45ca-a884-30fcc0718aa7", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:42:11 GMT", + "Date": "Tue, 10 Nov 2020 16:44:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -1699,7 +1699,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1708,7 +1708,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "12d1a73a04ce733541aa71124973bdbc", @@ -1717,26 +1717,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cebf5916-8a7d-4cf2-a4a9-c014520658fc", + "apim-request-id": "ba2c806a-55c7-48f9-a31b-6f18957b6a3a", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:42:12 GMT", + "Date": "Tue, 10 Nov 2020 16:44:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "64" + "x-envoy-upstream-service-time": "52" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -1746,7 +1746,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1755,7 +1755,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ede6d34be304a92c704604d55d9a58c6", @@ -1764,26 +1764,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2751a279-365f-4a9c-9663-ca79b65b3187", + "apim-request-id": "6352f63e-89bb-4a18-b120-f65cbd0ea698", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:42:14 GMT", + "Date": "Tue, 10 Nov 2020 16:44:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "54" + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -1793,7 +1793,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1802,7 +1802,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ad0eb645a1ea09408c2f395a2d1bb5f8", @@ -1811,26 +1811,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "77595b73-ac68-4960-bc9e-2dde989f053d", + "apim-request-id": "88f18e1d-011a-458b-89df-a62a742b5238", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:42:15 GMT", + "Date": "Tue, 10 Nov 2020 16:45:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -1840,7 +1840,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1849,7 +1849,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "aac615ca910d56257b27a187ff5f15a7", @@ -1858,26 +1858,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c3834942-faa5-4685-a2d6-484168960735", + "apim-request-id": "b8b958da-5dbf-4e82-86e5-692e8e258315", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:42:16 GMT", + "Date": "Tue, 10 Nov 2020 16:45:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "52" + "x-envoy-upstream-service-time": "64" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 0, "failed": 0, @@ -1887,7 +1887,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1896,7 +1896,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "93cdab521065aad192dc60d5aad17c55", @@ -1905,26 +1905,3175 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "76f65a79-e8a2-43bd-9c56-7f34429c7a9b", + "apim-request-id": "ac94fa7b-9ef6-46f3-bbd6-e36c9d02f5e5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "50" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "470b0c91add3b4b891b832c3ffb8092c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d4622308-d860-4f77-933e-befdd25837af", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "82089119214eba93431c18303050aca9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c629a1b2-3954-46a1-9d9b-c251eb2fdf8f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f3f64caace54a4d3f21801addd0eabd9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cbb55820-5a62-43b6-8eb5-dc1bf6a719b6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "58" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "18bc34d3fac96f07795003b695878341", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cf676aa9-d551-4d0a-b2b4-571b5a0fbf2e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b218890b15c24ad7be638f3520e6dc35", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0e12e8c5-bcee-48b7-a95a-c4a38738e896", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "76" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "fc5d3e719393b0df45867a04ca1c0e6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5856b22d-2e54-4f12-b706-1708f4cd0b24", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "54a1c094f8f5be175c715a656ad14f92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3ab8315d-2b8f-441c-8f17-f64f6d9afd74", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "5745cd74872a78ada9676d3c9ad37fa1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "91e5d50f-b2e4-46c8-a182-6e5c312da1d8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "50" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "5fa0245588447940279e9f2239794674", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "23c3d0dc-2058-49d7-8642-a214e292c0fc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "fd90e736b7d70d3f1329aa8d8bda2389", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "229c89e0-076c-42b1-94e8-85416b95eb33", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4510b9f1f030eb4d8dcc308be88b3e30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d52aa118-dc73-4eca-81f6-88e6bf827579", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b305f92182439dc9e4934b1bddb2ed4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "63042428-6941-4e28-927a-472563637fc3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "42" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7f30167b0168464399a46f0b87b42488", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b877fec0-a785-4ac8-bfcd-20a0d588793b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "926c7aea70d56f45ef72609da4320edb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "797becd1-f2db-489e-98f4-802bbdbc3c39", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "91" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d210e3debe5b20c7b5bf199f13bd1630", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "74c0df36-aca8-493c-9528-9d550b7eb896", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "45" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "6331c36e5b460b76d0c190f6a0a5a167", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "edd29f44-8e0a-4cfc-b61f-a40606f9163b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a32d949552a32b2db24bdc1656a65b31", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1dcc5c56-7116-45e3-97a1-0871f7d9aef5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e12e2f5caa0082946d05019a2ed17f10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "14b34e14-f3ab-4269-abb7-877435f6c663", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "64" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7f09b11d72901c8d9606b0fa7e60b42a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "23e8003e-19af-4c0f-958e-e8f68e5bd683", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "73" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "71995e65c077eb67ffaa369e5093fce1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "66f18904-4a20-47cd-864a-98cc8e10bf7a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "49" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a5f8ccccdc9ce9a1a1124bf9f99a040c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "797dc91a-190d-4f0f-985d-dd759c6684ec", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d034d7510e375d994a1e7fe63cefcb03", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "34353685-5ecd-4f55-b5a3-ac1d7c9e7e66", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b22ecf0a0e67888dbdb0cf65756df164", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a9b6e678-4ebc-4c19-b333-e992ea06f0a6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "49" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "794d29a62c5ebda9339b5b7e5cbaacb2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1aa4704b-2784-4d5d-81d6-a9ef1d8040a4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "49" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "29ef4846516c42a549ac12863f33e8dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "202a0ca0-a0bf-493d-9973-85d1e372cb4f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "46" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "12401b2c51a2dda425707fcbb30f2b02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ae863510-dc6c-4145-9cb3-9b01754c6917", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "42" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2c1e1c03c77d54f8840a30b119237eff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4063da62-a82e-465d-814a-d37661d09d7f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "54" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "41517eb39a7af410a31103fcd2d98e39", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5a65b7ff-bfce-4805-a784-655d5ae80387", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "58" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "22821080bb15655e22eb8e9721f2c402", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4f3240e6-f78e-4dd3-b499-bdf45a671055", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "46" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "341880f1eabe69880c29896cc3fc82aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f6af0700-2536-4791-958b-b2831efad3be", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "49" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0831f67c5ca0f7e920ec1e8e0b78d3b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "24100a6f-21c7-4e46-9887-a6deb9f357ca", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "50" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "520a014c59c1967b871815eb31f2a126", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2e3791fe-373f-45e3-9a24-23bfb312e631", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "61" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2b1ae469bbc19462962014d1cbfa5e93", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "00aabef7-29fc-4f7b-8641-ad5c639b5e58", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "65" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c21fd95630f122e97a9b818746fec62e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ae4efdbe-fbb7-4fbf-81b9-b5bdfc06baf5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "50" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2725f84aa75d91ef9e76bba045aaca8d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "26ccbc0f-bf2e-469d-8795-5716d59c4f0c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "46" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "589582baded33935faf8b0263ada4d98", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f84411c2-e796-46c8-87ae-aebdd0ee486a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d386e55a36d4ae35e98e237b7449ddd0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d18542ff-08d0-40e7-a497-84a0d22e684f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "42" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c4cdf3d06d686c5bc3ec2c65f7c956c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "19fab11b-f326-40a8-bae3-2584b2c05315", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "42" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "5f452328f72383b84ce66e44bab9c4b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4e9bc2ff-e0b4-49a3-af6f-60ed5eb8b3ef", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4655e01b890ded2f8a1a0fe80acfb720", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3b73a6af-2b79-43b4-9c48-0c49064d5925", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "46" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "505260377d03d8ad3b497782fe16b109", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "94bcc50a-7249-47a0-83a0-69470eddcdbb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "61" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "174a7b270f739fb5f458d508e7cf797c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f5eb84bd-af60-4f8a-9322-677c998337ef", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "51" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "5a0d4d2f73679dae327c0bc411adee74", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b0ed713b-854c-423d-935f-b0a9fb828b7f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8ec10668a08527adaab35caba8a4f16b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e566e86e-3fe3-4023-8833-a33255cc1cf8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b052fbd05708b3a2cdade4f604f18d46", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c5f70b85-c56d-409a-ba2f-f673b0b754e4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e19f6069ea0e8ff7a0e5b0b31702f58e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "60247647-12f3-47ee-8d67-e01e2aa2d905", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:45:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "63" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "16f39f8b3d5a116b640dc1d8bbb623b8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3af8e3af-914b-432d-baf4-610955dc3c85", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:46:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "474115251004e55c03c31023a6ee9cca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "acfabcf0-0342-4293-a213-15a98d2f9044", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:46:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "646b55b777fd2cecf58e7c01291fd3e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "22cc435e-c075-4f1a-96a7-26b58877dd0a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:46:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "62" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "018ef7c2adc17b89430e12972d486a75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7d31494d-da9d-4d26-af94-b3c1661ea968", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:46:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "52" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "6520f670be4aadba29155276935bbbe3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0f460421-7736-4655-af06-05519680e5e1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:46:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "74" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "af6026ef9b600a08ccf021ef6454fead", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ef8fe287-6c3d-45ab-9ebc-817c76d6daa4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:46:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "45" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "329006236dff039f3de0d7ac5a13e8e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8fe5bf30-7179-429b-b1d3-740dfd329842", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:46:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "06a72f52bbe7d515ee15995a9dcb49d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cd045bc2-a8cf-4699-93ab-591bbb61dcf6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:46:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "45" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8c53a51688ca81e4875d717fc45cafb8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "332eb37d-38a9-4657-8b89-fae710e1c35b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:46:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "359c3808f8ad67c5f1bb44e9d4446572", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a7df4ac9-f7e3-446d-acdd-8d28f88572a9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:46:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "66" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b59602975bc0ca1d4a257f894a961191", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "161695db-c184-4ae6-b8ae-55a0a35b60f3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:46:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "6552e166132e1d28dfeb9b0e44faad42", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c6617db3-ab73-41ae-834c-5342f323673a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:46:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "52" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c2e8fff7fac6acf81ad2ea87783c1d5a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9efe1984-542f-41f7-8fd1-916e5236c045", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:46:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "52" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f283b3aa00f28343d978d6d4c00f8550", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f2401c0c-0dc2-49b8-bd18-efed2b30b2f5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:46:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "48" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4a913c774ead6bcbe9a54a5c28a0a4a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3df61d4d-d4d0-4df4-9ae3-cd9decc8ae01", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:46:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "916440cebb76f74fbc64e84d2423eb0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "087b1439-e398-4358-890f-241dbc49a771", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:46:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "50" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3b0f9a4cd2aa5bade717094db6e65a39", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "317cfad3-b86d-486d-a4c1-80f4ebb68f4f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:46:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "800532d3f4abbcd9ed9a8d48667d47c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4132ebac-7ca3-423f-ab59-013f21aac72d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:46:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "46" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8d103eb96990fcf89308a95fb10240d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "460351c8-ec95-4ce5-9a91-98f0a7fd4eac", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:46:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "42" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f17aae096b1e5760c1534e104464f469", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "12890b0a-5a55-40f6-81f2-fc54593b4a73", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:46:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-10T16:44:15Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "779344d0cdd56aa93a09eda24b790bea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c3e032a4-829e-4e37-9a2c-0c497740c12a", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 17:42:22 GMT", + "Date": "Tue, 10 Nov 2020 16:46:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5124" + "x-envoy-upstream-service-time": "178" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "96419e2b-9c53-418c-8d24-333df3c5660d_637404768000000000", - "lastUpdateDateTime": "2020-11-09T17:41:15Z", - "createdDateTime": "2020-11-09T17:41:14Z", - "expirationDateTime": "2020-11-11T17:41:14Z", + "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:44:15Z", + "createdDateTime": "2020-11-10T16:44:15Z", + "expirationDateTime": "2020-11-11T16:44:15Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15Z" + "lastUpdateDateTime": "2020-11-10T16:44:15Z" }, "completed": 1, "failed": 0, @@ -1933,7 +5082,7 @@ "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T17:41:15.594951Z", + "lastUpdateDateTime": "2020-11-10T16:44:15.3188337Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json index 19b16b13ea7e6..60ff8bee739cb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json @@ -8,12 +8,13 @@ "application/json", "text/json" ], - "Content-Length": "302", + "Content-Length": "265", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9d385e7ada493742b2b2e6503fc8118b-99d315b5d8839449-00", + "Request-Id": "00-e92d632eed359f49871b8dddc95bb19e-5879c3c95fba8541-00", + "traceparent": "00-e92d632eed359f49871b8dddc95bb19e-5879c3c95fba8541-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bc10ae4f3809e9b40d4f6b783fc973c7", @@ -42,23 +43,22 @@ } } ] - }, - "displayName": "AnalyzeOperationTest" + } }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "c9ee7c89-3ee1-4409-959f-dcbc1643c0b3", - "Date": "Mon, 09 Nov 2020 03:38:28 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/14559785-736f-481b-8b7b-750ba9dfb945_637404768000000000", + "apim-request-id": "4c3ce51b-25c4-4c66-a3d1-7af7cf650980", + "Date": "Tue, 10 Nov 2020 21:49:16 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8eb9291d-22f7-4b47-8d75-870792ed749f_637405632000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "122" + "x-envoy-upstream-service-time": "262" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/14559785-736f-481b-8b7b-750ba9dfb945_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8eb9291d-22f7-4b47-8d75-870792ed749f_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -66,8 +66,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|3d8ab2c9-4c65f3c47f9b89a7.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e45290396662ad6e1e38f63536f933b4", @@ -76,167 +77,24 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b8b73c36-fee2-4cd0-9f15-5a5ad947e0c2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 03:38:30 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "82" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "14559785-736f-481b-8b7b-750ba9dfb945_637404768000000000", - "lastUpdateDateTime": "2020-11-09T03:38:29Z", - "createdDateTime": "2020-11-09T03:38:29Z", - "expirationDateTime": "2020-11-11T03:38:29Z", - "status": "notStarted", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T03:38:29Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 0, - "total": 0 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/14559785-736f-481b-8b7b-750ba9dfb945_637404768000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "026f5447158ee5d664682b08d83e8d91", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "264c528e-9c1c-409a-980f-16991714e240", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 03:38:31 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "84" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "14559785-736f-481b-8b7b-750ba9dfb945_637404768000000000", - "lastUpdateDateTime": "2020-11-09T03:38:29Z", - "createdDateTime": "2020-11-09T03:38:29Z", - "expirationDateTime": "2020-11-11T03:38:29Z", - "status": "notStarted", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T03:38:29Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 0, - "total": 0 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/14559785-736f-481b-8b7b-750ba9dfb945_637404768000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "3f2ab8555934e81b40639ed1417fb313", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "21083b18-4e9c-4253-980a-b12ed0a404c3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 03:38:32 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "14559785-736f-481b-8b7b-750ba9dfb945_637404768000000000", - "lastUpdateDateTime": "2020-11-09T03:38:29Z", - "createdDateTime": "2020-11-09T03:38:29Z", - "expirationDateTime": "2020-11-11T03:38:29Z", - "status": "notStarted", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T03:38:29Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 0, - "total": 0 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/14559785-736f-481b-8b7b-750ba9dfb945_637404768000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ea31b61c715a2439ba6d7ff93a66d4df", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cfa8d6d6-aa13-41de-ae5d-9c6226ea1b30", + "apim-request-id": "971def95-2788-4a8e-9e60-046fd0ee8a37", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 03:38:39 GMT", + "Date": "Tue, 10 Nov 2020 21:52:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5318" + "x-envoy-upstream-service-time": "373" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "14559785-736f-481b-8b7b-750ba9dfb945_637404768000000000", - "lastUpdateDateTime": "2020-11-09T03:38:35Z", - "createdDateTime": "2020-11-09T03:38:29Z", - "expirationDateTime": "2020-11-11T03:38:29Z", + "jobId": "8eb9291d-22f7-4b47-8d75-870792ed749f_637405632000000000", + "lastUpdateDateTime": "2020-11-10T21:49:17Z", + "createdDateTime": "2020-11-10T21:49:16Z", + "expirationDateTime": "2020-11-11T21:49:16Z", "status": "succeeded", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T03:38:35Z" + "lastUpdateDateTime": "2020-11-10T21:49:17Z" }, "completed": 1, "failed": 0, @@ -244,8 +102,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T03:38:35.7937698Z", + "lastUpdateDateTime": "2020-11-10T21:49:17.2442521Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json index 450cd9c878f4c..d365848740424 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json @@ -11,9 +11,9 @@ "Content-Length": "324", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-09cdda5ecee2324e9597093e8f9d1ebf-0c0dd32551ffa749-00", + "traceparent": "00-587c64897780a24bbe1f4b25ed31d8cd-66292821636e674d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a87cf6cc9d26e81e4ad3c40561433cdc", @@ -47,18 +47,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "39b5311c-3145-4ff9-a611-161eb2b0787f", - "Date": "Mon, 09 Nov 2020 03:38:50 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d348f83b-96f2-4b09-a4aa-61c60b39b1fe_637404768000000000", + "apim-request-id": "1e969cbc-dbe1-42a1-9207-87b6b9468512", + "Date": "Tue, 10 Nov 2020 16:34:09 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/dbee3d34-3e36-4d71-9c3a-380d85e984d2_637405632000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "392" + "x-envoy-upstream-service-time": "54" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d348f83b-96f2-4b09-a4aa-61c60b39b1fe_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/dbee3d34-3e36-4d71-9c3a-380d85e984d2_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -67,7 +67,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "829f189700a91102b7313377687a2cfe", @@ -76,36 +76,36 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ac72dd34-4715-4567-9d82-bb0a50fe00fc", + "apim-request-id": "6c1148cc-fa53-4615-a0e1-ec55dfcd147b", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 03:38:50 GMT", + "Date": "Tue, 10 Nov 2020 16:34:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "81" }, "ResponseBody": { "displayName": "AnalyzeOperationTest", - "jobId": "d348f83b-96f2-4b09-a4aa-61c60b39b1fe_637404768000000000", - "lastUpdateDateTime": "2020-11-09T03:38:50Z", - "createdDateTime": "2020-11-09T03:38:50Z", - "expirationDateTime": "2020-11-11T03:38:50Z", + "jobId": "dbee3d34-3e36-4d71-9c3a-380d85e984d2_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:34:10Z", + "createdDateTime": "2020-11-10T16:34:10Z", + "expirationDateTime": "2020-11-11T16:34:10Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T03:38:50Z" + "lastUpdateDateTime": "2020-11-10T16:34:10Z" }, "completed": 0, "failed": 0, - "inProgress": 0, - "total": 0 + "inProgress": 1, + "total": 1 } } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d348f83b-96f2-4b09-a4aa-61c60b39b1fe_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/dbee3d34-3e36-4d71-9c3a-380d85e984d2_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -114,7 +114,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "84565c5816eeba49622c1ac1b6d8c94c", @@ -123,26 +123,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a774d386-63cf-4fb8-9934-2e176f3c20c6", + "apim-request-id": "3f3908d1-1509-4682-8533-b68fd3c6c271", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 03:38:52 GMT", + "Date": "Tue, 10 Nov 2020 16:34:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "58" }, "ResponseBody": { "displayName": "AnalyzeOperationTest", - "jobId": "d348f83b-96f2-4b09-a4aa-61c60b39b1fe_637404768000000000", - "lastUpdateDateTime": "2020-11-09T03:38:50Z", - "createdDateTime": "2020-11-09T03:38:50Z", - "expirationDateTime": "2020-11-11T03:38:50Z", + "jobId": "dbee3d34-3e36-4d71-9c3a-380d85e984d2_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:34:10Z", + "createdDateTime": "2020-11-10T16:34:10Z", + "expirationDateTime": "2020-11-11T16:34:10Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T03:38:50Z" + "lastUpdateDateTime": "2020-11-10T16:34:10Z" }, "completed": 0, "failed": 0, @@ -152,7 +152,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d348f83b-96f2-4b09-a4aa-61c60b39b1fe_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/dbee3d34-3e36-4d71-9c3a-380d85e984d2_637405632000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -161,7 +161,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e6dbb519b5b4cb28f46af0f469a680d0", @@ -170,26 +170,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7d5286ff-4b5a-4f1c-93e7-5775bde0f57a", + "apim-request-id": "9f6a8079-1d21-493f-b390-2bf83b58a127", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 03:38:53 GMT", + "Date": "Tue, 10 Nov 2020 16:34:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "183" + "x-envoy-upstream-service-time": "101" }, "ResponseBody": { "displayName": "AnalyzeOperationTest", - "jobId": "d348f83b-96f2-4b09-a4aa-61c60b39b1fe_637404768000000000", - "lastUpdateDateTime": "2020-11-09T03:38:50Z", - "createdDateTime": "2020-11-09T03:38:50Z", - "expirationDateTime": "2020-11-11T03:38:50Z", + "jobId": "dbee3d34-3e36-4d71-9c3a-380d85e984d2_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:34:10Z", + "createdDateTime": "2020-11-10T16:34:10Z", + "expirationDateTime": "2020-11-11T16:34:10Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T03:38:50Z" + "lastUpdateDateTime": "2020-11-10T16:34:10Z" }, "completed": 1, "failed": 0, @@ -198,7 +198,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T03:38:50.9486388Z", + "lastUpdateDateTime": "2020-11-10T16:34:10.8607454Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithSkipParameter.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithSkipParameter.json index 98df8c414cc21..d8c2937517e00 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithSkipParameter.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithSkipParameter.json @@ -11,9 +11,9 @@ "Content-Length": "315", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2ff83672957bcb4da497e4f2b7eeafb1-f23ae3441dee914f-00", + "traceparent": "00-47eba6e7392bf442a7edd426313eeb08-a1c656757df1684d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "66213f11f688828028a07f5921c888bb", @@ -47,18 +47,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "930fdd80-51de-4662-bbc7-7c3c22f74f08", - "Date": "Mon, 09 Nov 2020 19:40:11 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b202b83a-69c7-4dc9-9b83-662c406d8870_637404768000000000", + "apim-request-id": "44d54edd-b97f-42df-be74-6e105ce23a12", + "Date": "Tue, 10 Nov 2020 21:26:38 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6e52f12c-0883-4bc5-9498-52f6251363a7_637405632000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "197" + "x-envoy-upstream-service-time": "210" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b202b83a-69c7-4dc9-9b83-662c406d8870_637404768000000000?showStats=false\u0026$skip=1", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6e52f12c-0883-4bc5-9498-52f6251363a7_637405632000000000?showStats=false\u0026$skip=1", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -67,7 +67,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7550f4ca3d1aa83453b335a4cb28f918", @@ -76,36 +76,36 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e7d8e9d3-8b8a-4f20-a70d-d86edcfef888", + "apim-request-id": "b2151f17-6ab1-48fe-b7c9-0a603fb03e4a", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:40:11 GMT", + "Date": "Tue, 10 Nov 2020 21:26:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "80" }, "ResponseBody": { "displayName": "AnalyzeOperationWithSkipParameter", - "jobId": "b202b83a-69c7-4dc9-9b83-662c406d8870_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:40:11Z", - "createdDateTime": "2020-11-09T19:40:11Z", - "expirationDateTime": "2020-11-11T19:40:11Z", + "jobId": "6e52f12c-0883-4bc5-9498-52f6251363a7_637405632000000000", + "lastUpdateDateTime": "2020-11-10T21:26:38Z", + "createdDateTime": "2020-11-10T21:26:38Z", + "expirationDateTime": "2020-11-11T21:26:38Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithSkipParameter", - "lastUpdateDateTime": "2020-11-09T19:40:11Z" + "lastUpdateDateTime": "2020-11-10T21:26:38Z" }, "completed": 0, "failed": 0, - "inProgress": 0, - "total": 0 + "inProgress": 1, + "total": 1 } } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b202b83a-69c7-4dc9-9b83-662c406d8870_637404768000000000?showStats=false\u0026$skip=1", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6e52f12c-0883-4bc5-9498-52f6251363a7_637405632000000000?showStats=false\u0026$skip=1", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -114,7 +114,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6e334389d8cbd526e03ccbc674f1465c", @@ -123,26 +123,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e7731012-cbdd-493d-a1fc-ca0d6b0370c6", + "apim-request-id": "7de74a44-b751-4e02-bd37-4438d9417c34", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:40:12 GMT", + "Date": "Tue, 10 Nov 2020 21:26:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "55" + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { "displayName": "AnalyzeOperationWithSkipParameter", - "jobId": "b202b83a-69c7-4dc9-9b83-662c406d8870_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:40:11Z", - "createdDateTime": "2020-11-09T19:40:11Z", - "expirationDateTime": "2020-11-11T19:40:11Z", - "status": "notStarted", + "jobId": "6e52f12c-0883-4bc5-9498-52f6251363a7_637405632000000000", + "lastUpdateDateTime": "2020-11-10T21:26:38Z", + "createdDateTime": "2020-11-10T21:26:38Z", + "expirationDateTime": "2020-11-11T21:26:38Z", + "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithSkipParameter", - "lastUpdateDateTime": "2020-11-09T19:40:11Z" + "lastUpdateDateTime": "2020-11-10T21:26:38Z" }, "completed": 0, "failed": 0, @@ -152,7 +152,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b202b83a-69c7-4dc9-9b83-662c406d8870_637404768000000000?showStats=false\u0026$skip=1", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6e52f12c-0883-4bc5-9498-52f6251363a7_637405632000000000?showStats=false\u0026$skip=1", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -161,7 +161,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "de1aa601b91bd3c80b7813d4c0dbb700", @@ -170,26 +170,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dcb95cb0-9de9-49d7-a252-9747ab911c1e", + "apim-request-id": "910370f3-7ab6-40ec-88ce-cc4d4e030682", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:40:14 GMT", + "Date": "Tue, 10 Nov 2020 21:26:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "64" + "x-envoy-upstream-service-time": "135" }, "ResponseBody": { "displayName": "AnalyzeOperationWithSkipParameter", - "jobId": "b202b83a-69c7-4dc9-9b83-662c406d8870_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:40:11Z", - "createdDateTime": "2020-11-09T19:40:11Z", - "expirationDateTime": "2020-11-11T19:40:11Z", + "jobId": "6e52f12c-0883-4bc5-9498-52f6251363a7_637405632000000000", + "lastUpdateDateTime": "2020-11-10T21:26:38Z", + "createdDateTime": "2020-11-10T21:26:38Z", + "expirationDateTime": "2020-11-11T21:26:38Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithSkipParameter", - "lastUpdateDateTime": "2020-11-09T19:40:11Z" + "lastUpdateDateTime": "2020-11-10T21:26:38Z" }, "completed": 1, "failed": 0, @@ -198,19 +198,10 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithSkipParameter", - "lastUpdateDateTime": "2020-11-09T19:40:11.7557215Z", + "lastUpdateDateTime": "2020-11-10T21:26:38.8761419Z", "results": { "inTerminalState": true, "documents": [ - { - "id": "0", - "keyPhrases": [ - "CEO of SpaceX", - "Elon Musk", - "Tesla" - ], - "warnings": [] - }, { "id": "1", "keyPhrases": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithTopParameter.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithTopParameter.json index e95c0cb6a5e52..db3c72c8e5391 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithTopParameter.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithTopParameter.json @@ -11,9 +11,9 @@ "Content-Length": "315", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5ee179f94f57e945b57a9acb71dc99c7-bae2f3683a472241-00", + "traceparent": "00-f45c64c854a4a54ab6cf61f0c552081f-10f4347c96f8cc48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f5a0428665082c595c1d3b6d579c7b27", @@ -47,18 +47,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "2d82c300-c9a2-441d-b204-d0b4280c3dab", - "Date": "Mon, 09 Nov 2020 19:40:25 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d68f6dae-e143-4842-a37d-5db5671ac5d8_637404768000000000", + "apim-request-id": "ace99ccd-a655-42aa-84ef-9474ac1b8eb5", + "Date": "Tue, 10 Nov 2020 16:46:29 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/98d1d723-11d3-4585-9e25-6c4c8ab9e295_637405632000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "199" + "x-envoy-upstream-service-time": "75" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d68f6dae-e143-4842-a37d-5db5671ac5d8_637404768000000000?showStats=false\u0026$top=1", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/98d1d723-11d3-4585-9e25-6c4c8ab9e295_637405632000000000?showStats=false\u0026$top=1", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -67,7 +67,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "553c2e9c301fafa2ce30174e56a7aeb6", @@ -76,36 +76,36 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fbdb281c-8df5-4a57-8dd6-eb63e0036010", + "apim-request-id": "3642fea4-8aa8-4382-b9e5-4d1f884b8a97", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:40:25 GMT", + "Date": "Tue, 10 Nov 2020 16:46:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "displayName": "AnalyzeOperationWithSkipParameter", - "jobId": "d68f6dae-e143-4842-a37d-5db5671ac5d8_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:40:25Z", - "createdDateTime": "2020-11-09T19:40:25Z", - "expirationDateTime": "2020-11-11T19:40:25Z", + "jobId": "98d1d723-11d3-4585-9e25-6c4c8ab9e295_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:46:30Z", + "createdDateTime": "2020-11-10T16:46:30Z", + "expirationDateTime": "2020-11-11T16:46:30Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithSkipParameter", - "lastUpdateDateTime": "2020-11-09T19:40:25Z" + "lastUpdateDateTime": "2020-11-10T16:46:30Z" }, "completed": 0, "failed": 0, - "inProgress": 0, - "total": 0 + "inProgress": 1, + "total": 1 } } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d68f6dae-e143-4842-a37d-5db5671ac5d8_637404768000000000?showStats=false\u0026$top=1", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/98d1d723-11d3-4585-9e25-6c4c8ab9e295_637405632000000000?showStats=false\u0026$top=1", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -114,7 +114,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ef89b7f4fba1a676b9ada33b769d705d", @@ -123,26 +123,167 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6ce7b619-8d5b-411e-9eca-916dfd3e4b1b", + "apim-request-id": "5bbf6b0f-a0fd-41ea-a47a-ed0dc9b9555c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:46:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithSkipParameter", + "jobId": "98d1d723-11d3-4585-9e25-6c4c8ab9e295_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:46:30Z", + "createdDateTime": "2020-11-10T16:46:30Z", + "expirationDateTime": "2020-11-11T16:46:30Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithSkipParameter", + "lastUpdateDateTime": "2020-11-10T16:46:30Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/98d1d723-11d3-4585-9e25-6c4c8ab9e295_637405632000000000?showStats=false\u0026$top=1", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "5101bd37175355c39ff126d84e0bd6b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c2a9cd38-b78e-41ad-8571-69594cc088c2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:46:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "56" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithSkipParameter", + "jobId": "98d1d723-11d3-4585-9e25-6c4c8ab9e295_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:46:30Z", + "createdDateTime": "2020-11-10T16:46:30Z", + "expirationDateTime": "2020-11-11T16:46:30Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithSkipParameter", + "lastUpdateDateTime": "2020-11-10T16:46:30Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/98d1d723-11d3-4585-9e25-6c4c8ab9e295_637405632000000000?showStats=false\u0026$top=1", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a079846f8c12a185b7959b718d673830", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ce130bb1-5923-4103-94ad-146bc7863b8b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Tue, 10 Nov 2020 16:46:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "48" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithSkipParameter", + "jobId": "98d1d723-11d3-4585-9e25-6c4c8ab9e295_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:46:30Z", + "createdDateTime": "2020-11-10T16:46:30Z", + "expirationDateTime": "2020-11-11T16:46:30Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithSkipParameter", + "lastUpdateDateTime": "2020-11-10T16:46:30Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/98d1d723-11d3-4585-9e25-6c4c8ab9e295_637405632000000000?showStats=false\u0026$top=1", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9817b9bf5ca6dc63f4334fb0d49e58ae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c0e4fdc2-38a4-44db-952c-1413bb599f4b", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:40:26 GMT", + "Date": "Tue, 10 Nov 2020 16:46:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "66" + "x-envoy-upstream-service-time": "96" }, "ResponseBody": { "displayName": "AnalyzeOperationWithSkipParameter", - "jobId": "d68f6dae-e143-4842-a37d-5db5671ac5d8_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:40:25Z", - "createdDateTime": "2020-11-09T19:40:25Z", - "expirationDateTime": "2020-11-11T19:40:25Z", + "jobId": "98d1d723-11d3-4585-9e25-6c4c8ab9e295_637405632000000000", + "lastUpdateDateTime": "2020-11-10T16:46:30Z", + "createdDateTime": "2020-11-10T16:46:30Z", + "expirationDateTime": "2020-11-11T16:46:30Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithSkipParameter", - "lastUpdateDateTime": "2020-11-09T19:40:25Z" + "lastUpdateDateTime": "2020-11-10T16:46:30Z" }, "completed": 1, "failed": 0, @@ -151,7 +292,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithSkipParameter", - "lastUpdateDateTime": "2020-11-09T19:40:25.7132237Z", + "lastUpdateDateTime": "2020-11-10T16:46:30.4396217Z", "results": { "inTerminalState": true, "documents": [ @@ -163,22 +304,16 @@ "Tesla" ], "warnings": [] - }, - { - "id": "1", - "keyPhrases": [ - "Tesla stock", - "year" - ], - "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-07-01", + "@nextLink": "http://svc--textanalyticsdispatcher.text-analytics.svc.cluster.local/text/analytics/v3.1-preview.3/jobs/910c2a56-71e7-4fe5-9e70-79d169ac7f3d?$skip=1\u0026$top=1" } } ] - } + }, + "nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/98d1d723-11d3-4585-9e25-6c4c8ab9e295_637405632000000000?$skip=1\u0026$top=1" } } ], From cb6914e8ab2835eb7fedf9a841aca5d8d4a75785 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Wed, 11 Nov 2020 16:12:09 -0800 Subject: [PATCH 45/58] resolved comments --- .../src/AnalyzeBatchInput.cs | 3 +- .../src/AnalyzeOperationResult.cs | 52 +- .../src/EntityRecognitionPiiTasksItem.cs | 17 +- .../src/EntityRecognitionTasksItem.cs | 15 +- .../Models/AnalyzeBatchInput.Serialization.cs | 2 +- .../src/Generated/Models/AnalyzeBatchInput.cs | 4 +- ...tyRecognitionPiiTasksItem.Serialization.cs | 11 +- .../Models/EntityRecognitionPiiTasksItem.cs | 24 +- ...ionPiiTasksItemProperties.Serialization.cs | 9 +- ...EntityRecognitionPiiTasksItemProperties.cs | 1 + ...ntityRecognitionTasksItem.Serialization.cs | 11 +- .../Models/EntityRecognitionTasksItem.cs | 24 +- ...nitionTasksItemProperties.Serialization.cs | 9 +- .../EntityRecognitionTasksItemProperties.cs | 13 +- .../Models/JobMetadata.Serialization.cs | 3 +- .../src/Generated/Models/JobMetadata.cs | 3 +- ...PhraseExtractionTasksItem.Serialization.cs | 11 +- .../Models/KeyPhraseExtractionTasksItem.cs | 24 + ...actionTasksItemProperties.Serialization.cs | 9 +- .../KeyPhraseExtractionTasksItemProperties.cs | 13 +- .../Models/TaskState.Serialization.cs | 4 +- .../src/Generated/Models/TaskState.cs | 8 + .../TasksStateTasksDetails.Serialization.cs | 4 +- .../Models/TasksStateTasksDetails.cs | 14 + .../Azure.AI.TextAnalytics/src/JobMetadata.cs | 2 +- .../src/KeyPhraseExtractionTasksItem.cs | 28 +- .../src/TasksStateTasks.cs | 32 +- .../src/TasksStateTasksDetails.cs | 3 - .../src/TextAnalyticsClient.cs | 7 +- .../Azure.AI.TextAnalytics/src/Transforms.cs | 57 +- .../Azure.AI.TextAnalytics/src/autorest.md | 2 +- .../tests/AnalyzeOperationTests.cs | 83 +- .../AnalyzeOperationBatchWithPHIDomain.json | 3900 ++------- .../AnalyzeOperationTest.json | 38 +- .../AnalyzeOperationWithLanguageTest.json | 140 +- .../AnalyzeOperationWithMultipleTasks.json | 7420 +++++++++++++++-- .../AnalyzeOperationWithTopParameter.json | 202 +- .../tests/samples/Sample_AnalyzeOperation.cs | 6 +- .../samples/Sample_AnalyzeOperationAsync.cs | 10 +- .../samples/Sample_Healthcare_Cancellation.cs | 4 +- 40 files changed, 7551 insertions(+), 4671 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeBatchInput.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeBatchInput.cs index aabe5c7d8539d..37ba5bc428c47 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeBatchInput.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeBatchInput.cs @@ -2,10 +2,9 @@ // Licensed under the MIT License. using System; -using Azure.AI.TextAnalytics.Models; using Azure.Core; -namespace Azure.AI.TextAnalytics +namespace Azure.AI.TextAnalytics.Models { /// /// AnalyzeBatchInput. diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperationResult.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperationResult.cs index 975cc06c955b6..6a2443cbba2e2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperationResult.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperationResult.cs @@ -14,51 +14,39 @@ public class AnalyzeOperationResult { /// /// - /// Entities result returned from the service - /// PII Entities result returned from the service - /// Keyphrase result returned from the service - /// Variable to map documents with id and maintaining the order - /// DisplayName for the Job - internal AnalyzeOperationResult(EntitiesResult entitiesResult, PiiEntitiesResult piiEntitiesResult, KeyPhraseResult keyPhraseResult, IDictionary map, string displayName) + /// + /// + internal AnalyzeOperationResult(AnalyzeJobState jobState, IDictionary idToIndexMap) { - if (entitiesResult != null) - { - EntitiesResult = Transforms.ConvertToRecognizeEntitiesResultCollection(entitiesResult, map); - } - - if (piiEntitiesResult != null) - { - PiiEntitiesResult = Transforms.ConvertToRecognizePiiEntitiesResultCollection(piiEntitiesResult, map); - } - - if (keyPhraseResult != null) - { - KeyPhraseResult = Transforms.ConvertToExtractKeyPhrasesResultCollection(keyPhraseResult, map); - } - if (displayName != null) - { - DisplayName = displayName; - } + Tasks = jobState.Tasks; + Errors = Transforms.ConvertToErrors(jobState.Errors); + Statistics = jobState.Statistics; + DisplayName = jobState.DisplayName; + Status = jobState.Status; + Tasks = new AnalyzeTasks(jobState.Tasks, idToIndexMap); } /// - /// EntityRecognitionTasks + /// Tasks /// - public RecognizeEntitiesResultCollection EntitiesResult { get; } + public AnalyzeTasks Tasks { get; } /// - /// EntityRecognitionPiiTasks + /// DisplayName /// - public RecognizePiiEntitiesResultCollection PiiEntitiesResult { get; } + public string DisplayName { get; } /// - /// KeyPhraseExtractionTasks + /// Status /// - public ExtractKeyPhrasesResultCollection KeyPhraseResult { get; } + public JobStatus Status { get; } /// - /// DisplayName + /// Errors for AnalyzeOperationResult /// - public string DisplayName { get; } + public IReadOnlyList Errors { get; } + + /// if showStats=true was specified in the request this field will contain information about the request payload. + public TextDocumentBatchStatistics Statistics { get; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionPiiTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionPiiTasksItem.cs index 23eb09e7cee29..1f423bfc331a3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionPiiTasksItem.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionPiiTasksItem.cs @@ -12,6 +12,21 @@ namespace Azure.AI.TextAnalytics [CodeGenModel("TasksStateTasksEntityRecognitionPiiTasksItem")] public partial class EntityRecognitionPiiTasksItem { - internal PiiEntitiesResult Results { get; } + /// Initializes a new instance of EntityRecognitionPiiTasksItem. + public EntityRecognitionPiiTasksItem(EntityRecognitionPiiTasksItem task, IDictionary idToIndexMap) : base(task.LastUpdateDateTime, task.Name, task.Status) + { + Results = Transforms.ConvertToRecognizePiiEntitiesResultCollection(task.ResultsInternal, idToIndexMap); + } + + /// + /// RecognizePiiEntitiesResultCollection Result + /// + public RecognizePiiEntitiesResultCollection Results { get; } + + /// + /// Results for EntityRecognitionPiiTasksItem + /// + [CodeGenMember("Results")] + internal PiiEntitiesResult ResultsInternal { get; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionTasksItem.cs index 17b2c3b357e0a..51033b2c98345 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionTasksItem.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionTasksItem.cs @@ -1,6 +1,7 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +using System; using System.Collections.Generic; using Azure.AI.TextAnalytics.Models; using Azure.Core; @@ -13,9 +14,21 @@ namespace Azure.AI.TextAnalytics [CodeGenModel("TasksStateTasksEntityRecognitionTasksItem")] public partial class EntityRecognitionTasksItem { + /// Initializes a new instance of EntityRecognitionTasksItem. + public EntityRecognitionTasksItem(EntityRecognitionTasksItem task, IDictionary idToIndexMap) : base(task.LastUpdateDateTime, task.Name, task.Status) + { + Results = Transforms.ConvertToRecognizeEntitiesResultCollection(task.ResultsInternal, idToIndexMap); + } + + /// + /// RecognizeEntitiesResultCollection Result + /// + public RecognizeEntitiesResultCollection Results { get; } + /// /// Results for EntityRecognitionTasksItem /// - internal EntitiesResult Results { get; } + [CodeGenMember("Results")] + private EntitiesResult ResultsInternal { get; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeBatchInput.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeBatchInput.Serialization.cs index 6a8b3ee514c11..d2e689818569e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeBatchInput.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeBatchInput.Serialization.cs @@ -8,7 +8,7 @@ using System.Text.Json; using Azure.Core; -namespace Azure.AI.TextAnalytics +namespace Azure.AI.TextAnalytics.Models { internal partial class AnalyzeBatchInput : IUtf8JsonSerializable { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeBatchInput.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeBatchInput.cs index bbc0e44c68b54..af773043f6a11 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeBatchInput.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/AnalyzeBatchInput.cs @@ -6,9 +6,9 @@ #nullable disable using System; -using Azure.AI.TextAnalytics.Models; +using Azure.AI.TextAnalytics; -namespace Azure.AI.TextAnalytics +namespace Azure.AI.TextAnalytics.Models { /// The AnalyzeBatchInput. internal partial class AnalyzeBatchInput : JobDescriptor diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.Serialization.cs index a894e1495ab24..13a862b13a456 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.Serialization.cs @@ -15,19 +15,14 @@ public partial class EntityRecognitionPiiTasksItem { internal static EntityRecognitionPiiTasksItem DeserializeEntityRecognitionPiiTasksItem(JsonElement element) { - Optional results = default; + PiiEntitiesResult results = default; DateTimeOffset lastUpdateDateTime = default; - string name = default; + Optional name = default; JobStatus status = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("results")) { - if (property.Value.ValueKind == JsonValueKind.Null) - { - property.ThrowNonNullablePropertyIsNull(); - continue; - } results = PiiEntitiesResult.DeserializePiiEntitiesResult(property.Value); continue; } @@ -47,7 +42,7 @@ internal static EntityRecognitionPiiTasksItem DeserializeEntityRecognitionPiiTas continue; } } - return new EntityRecognitionPiiTasksItem(lastUpdateDateTime, name, status, results.Value); + return new EntityRecognitionPiiTasksItem(lastUpdateDateTime, name.Value, status, results); } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.cs index b9f2e0a47f71a..81a66e5c3d524 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItem.cs @@ -14,31 +14,27 @@ public partial class EntityRecognitionPiiTasksItem : TaskState { /// Initializes a new instance of EntityRecognitionPiiTasksItem. /// . - /// . /// . - /// is null. - internal EntityRecognitionPiiTasksItem(DateTimeOffset lastUpdateDateTime, string name, JobStatus status) : base(lastUpdateDateTime, name, status) + /// . + /// is null. + internal EntityRecognitionPiiTasksItem(DateTimeOffset lastUpdateDateTime, JobStatus status, PiiEntitiesResult resultsInternal) : base(lastUpdateDateTime, status) { - if (name == null) + if (resultsInternal == null) { - throw new ArgumentNullException(nameof(name)); + throw new ArgumentNullException(nameof(resultsInternal)); } + + ResultsInternal = resultsInternal; } /// Initializes a new instance of EntityRecognitionPiiTasksItem. /// . /// . /// . - /// . - /// is null. - internal EntityRecognitionPiiTasksItem(DateTimeOffset lastUpdateDateTime, string name, JobStatus status, PiiEntitiesResult results) : base(lastUpdateDateTime, name, status) + /// . + internal EntityRecognitionPiiTasksItem(DateTimeOffset lastUpdateDateTime, string name, JobStatus status, PiiEntitiesResult resultsInternal) : base(lastUpdateDateTime, name, status) { - if (name == null) - { - throw new ArgumentNullException(nameof(name)); - } - - Results = results; + ResultsInternal = resultsInternal; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItemProperties.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItemProperties.Serialization.cs index c1b2ee734e9ff..5710c688d0c24 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItemProperties.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItemProperties.Serialization.cs @@ -15,21 +15,16 @@ internal partial class EntityRecognitionPiiTasksItemProperties { internal static EntityRecognitionPiiTasksItemProperties DeserializeEntityRecognitionPiiTasksItemProperties(JsonElement element) { - Optional results = default; + PiiEntitiesResult results = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("results")) { - if (property.Value.ValueKind == JsonValueKind.Null) - { - property.ThrowNonNullablePropertyIsNull(); - continue; - } results = PiiEntitiesResult.DeserializePiiEntitiesResult(property.Value); continue; } } - return new EntityRecognitionPiiTasksItemProperties(results.Value); + return new EntityRecognitionPiiTasksItemProperties(results); } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItemProperties.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItemProperties.cs index 8acc57b8b154d..7e676cc25e23a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItemProperties.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionPiiTasksItemProperties.cs @@ -5,6 +5,7 @@ #nullable disable +using System; using Azure.AI.TextAnalytics; namespace Azure.AI.TextAnalytics.Models diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.Serialization.cs index c0c58f6b2b0b1..5cfb5f68257b4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.Serialization.cs @@ -16,19 +16,14 @@ public partial class EntityRecognitionTasksItem { internal static EntityRecognitionTasksItem DeserializeEntityRecognitionTasksItem(JsonElement element) { - Optional results = default; + EntitiesResult results = default; DateTimeOffset lastUpdateDateTime = default; - string name = default; + Optional name = default; JobStatus status = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("results")) { - if (property.Value.ValueKind == JsonValueKind.Null) - { - property.ThrowNonNullablePropertyIsNull(); - continue; - } results = EntitiesResult.DeserializeEntitiesResult(property.Value); continue; } @@ -48,7 +43,7 @@ internal static EntityRecognitionTasksItem DeserializeEntityRecognitionTasksItem continue; } } - return new EntityRecognitionTasksItem(lastUpdateDateTime, name, status, results.Value); + return new EntityRecognitionTasksItem(lastUpdateDateTime, name.Value, status, results); } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.cs index c291dc6cabe19..856ecac3691df 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItem.cs @@ -15,31 +15,27 @@ public partial class EntityRecognitionTasksItem : TaskState { /// Initializes a new instance of EntityRecognitionTasksItem. /// . - /// . /// . - /// is null. - internal EntityRecognitionTasksItem(DateTimeOffset lastUpdateDateTime, string name, JobStatus status) : base(lastUpdateDateTime, name, status) + /// . + /// is null. + internal EntityRecognitionTasksItem(DateTimeOffset lastUpdateDateTime, JobStatus status, EntitiesResult resultsInternal) : base(lastUpdateDateTime, status) { - if (name == null) + if (resultsInternal == null) { - throw new ArgumentNullException(nameof(name)); + throw new ArgumentNullException(nameof(resultsInternal)); } + + ResultsInternal = resultsInternal; } /// Initializes a new instance of EntityRecognitionTasksItem. /// . /// . /// . - /// . - /// is null. - internal EntityRecognitionTasksItem(DateTimeOffset lastUpdateDateTime, string name, JobStatus status, EntitiesResult results) : base(lastUpdateDateTime, name, status) + /// . + internal EntityRecognitionTasksItem(DateTimeOffset lastUpdateDateTime, string name, JobStatus status, EntitiesResult resultsInternal) : base(lastUpdateDateTime, name, status) { - if (name == null) - { - throw new ArgumentNullException(nameof(name)); - } - - Results = results; + ResultsInternal = resultsInternal; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItemProperties.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItemProperties.Serialization.cs index 3a04b46feabcd..f4878bd864540 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItemProperties.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItemProperties.Serialization.cs @@ -14,21 +14,16 @@ internal partial class EntityRecognitionTasksItemProperties { internal static EntityRecognitionTasksItemProperties DeserializeEntityRecognitionTasksItemProperties(JsonElement element) { - Optional results = default; + EntitiesResult results = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("results")) { - if (property.Value.ValueKind == JsonValueKind.Null) - { - property.ThrowNonNullablePropertyIsNull(); - continue; - } results = EntitiesResult.DeserializeEntitiesResult(property.Value); continue; } } - return new EntityRecognitionTasksItemProperties(results.Value); + return new EntityRecognitionTasksItemProperties(results); } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItemProperties.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItemProperties.cs index f91af84f43c14..cac2cfdb1e040 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItemProperties.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/EntityRecognitionTasksItemProperties.cs @@ -5,20 +5,23 @@ #nullable disable +using System; + namespace Azure.AI.TextAnalytics.Models { /// The Components15Gvwi3SchemasTasksstatePropertiesTasksPropertiesEntityrecognitiontasksItemsAllof1. internal partial class EntityRecognitionTasksItemProperties { - /// Initializes a new instance of EntityRecognitionTasksItemProperties. - internal EntityRecognitionTasksItemProperties() - { - } - /// Initializes a new instance of EntityRecognitionTasksItemProperties. /// . + /// is null. internal EntityRecognitionTasksItemProperties(EntitiesResult results) { + if (results == null) + { + throw new ArgumentNullException(nameof(results)); + } + Results = results; } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.Serialization.cs index 513839407ff37..5feb7b5c8a2e7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.Serialization.cs @@ -7,9 +7,10 @@ using System; using System.Text.Json; +using Azure.AI.TextAnalytics; using Azure.Core; -namespace Azure.AI.TextAnalytics +namespace Azure.AI.TextAnalytics.Models { internal partial class JobMetadata { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.cs index ac49c093f33c1..36bce0f444be8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/JobMetadata.cs @@ -6,8 +6,9 @@ #nullable disable using System; +using Azure.AI.TextAnalytics; -namespace Azure.AI.TextAnalytics +namespace Azure.AI.TextAnalytics.Models { /// The JobMetadata. internal partial class JobMetadata diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.Serialization.cs index 9ce04741c5a56..fc8343fff48c2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.Serialization.cs @@ -16,19 +16,14 @@ public partial class KeyPhraseExtractionTasksItem { internal static KeyPhraseExtractionTasksItem DeserializeKeyPhraseExtractionTasksItem(JsonElement element) { - Optional results = default; + KeyPhraseResult results = default; DateTimeOffset lastUpdateDateTime = default; - string name = default; + Optional name = default; JobStatus status = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("results")) { - if (property.Value.ValueKind == JsonValueKind.Null) - { - property.ThrowNonNullablePropertyIsNull(); - continue; - } results = KeyPhraseResult.DeserializeKeyPhraseResult(property.Value); continue; } @@ -48,7 +43,7 @@ internal static KeyPhraseExtractionTasksItem DeserializeKeyPhraseExtractionTasks continue; } } - return new KeyPhraseExtractionTasksItem(lastUpdateDateTime, name, status, results.Value); + return new KeyPhraseExtractionTasksItem(lastUpdateDateTime, name.Value, status, results); } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.cs index 30edf914f7fc6..dcbf385f28c57 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItem.cs @@ -13,5 +13,29 @@ namespace Azure.AI.TextAnalytics /// The TasksStateTasksKeyPhraseExtractionTasksItem. public partial class KeyPhraseExtractionTasksItem : TaskState { + /// Initializes a new instance of KeyPhraseExtractionTasksItem. + /// . + /// . + /// . + /// is null. + internal KeyPhraseExtractionTasksItem(DateTimeOffset lastUpdateDateTime, JobStatus status, KeyPhraseResult resultsInternal) : base(lastUpdateDateTime, status) + { + if (resultsInternal == null) + { + throw new ArgumentNullException(nameof(resultsInternal)); + } + + ResultsInternal = resultsInternal; + } + + /// Initializes a new instance of KeyPhraseExtractionTasksItem. + /// . + /// . + /// . + /// . + internal KeyPhraseExtractionTasksItem(DateTimeOffset lastUpdateDateTime, string name, JobStatus status, KeyPhraseResult resultsInternal) : base(lastUpdateDateTime, name, status) + { + ResultsInternal = resultsInternal; + } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItemProperties.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItemProperties.Serialization.cs index b7478de0d248f..e6e25fbc7ace1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItemProperties.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItemProperties.Serialization.cs @@ -14,21 +14,16 @@ internal partial class KeyPhraseExtractionTasksItemProperties { internal static KeyPhraseExtractionTasksItemProperties DeserializeKeyPhraseExtractionTasksItemProperties(JsonElement element) { - Optional results = default; + KeyPhraseResult results = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("results")) { - if (property.Value.ValueKind == JsonValueKind.Null) - { - property.ThrowNonNullablePropertyIsNull(); - continue; - } results = KeyPhraseResult.DeserializeKeyPhraseResult(property.Value); continue; } } - return new KeyPhraseExtractionTasksItemProperties(results.Value); + return new KeyPhraseExtractionTasksItemProperties(results); } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItemProperties.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItemProperties.cs index 5d50ea24378fe..8fb7ff7eeef2a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItemProperties.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/KeyPhraseExtractionTasksItemProperties.cs @@ -5,20 +5,23 @@ #nullable disable +using System; + namespace Azure.AI.TextAnalytics.Models { /// The Components1D9IzucSchemasTasksstatePropertiesTasksPropertiesKeyphraseextractiontasksItemsAllof1. internal partial class KeyPhraseExtractionTasksItemProperties { - /// Initializes a new instance of KeyPhraseExtractionTasksItemProperties. - internal KeyPhraseExtractionTasksItemProperties() - { - } - /// Initializes a new instance of KeyPhraseExtractionTasksItemProperties. /// . + /// is null. internal KeyPhraseExtractionTasksItemProperties(KeyPhraseResult results) { + if (results == null) + { + throw new ArgumentNullException(nameof(results)); + } + Results = results; } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.Serialization.cs index bfbf35ab4efb6..fb57fee046f80 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.Serialization.cs @@ -16,7 +16,7 @@ public partial class TaskState internal static TaskState DeserializeTaskState(JsonElement element) { DateTimeOffset lastUpdateDateTime = default; - string name = default; + Optional name = default; JobStatus status = default; foreach (var property in element.EnumerateObject()) { @@ -36,7 +36,7 @@ internal static TaskState DeserializeTaskState(JsonElement element) continue; } } - return new TaskState(lastUpdateDateTime, name, status); + return new TaskState(lastUpdateDateTime, name.Value, status); } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.cs index 488deddd9a86a..328caa4527b7e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TaskState.cs @@ -12,5 +12,13 @@ namespace Azure.AI.TextAnalytics /// The TaskState. public partial class TaskState { + /// Initializes a new instance of TaskState. + /// . + /// . + internal TaskState(DateTimeOffset lastUpdateDateTime, JobStatus status) + { + LastUpdateDateTime = lastUpdateDateTime; + Status = status; + } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.Serialization.cs index 1a11e4bc77116..f150465870edc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.Serialization.cs @@ -16,7 +16,7 @@ public partial class TasksStateTasksDetails internal static TasksStateTasksDetails DeserializeTasksStateTasksDetails(JsonElement element) { DateTimeOffset lastUpdateDateTime = default; - string name = default; + Optional name = default; JobStatus status = default; foreach (var property in element.EnumerateObject()) { @@ -36,7 +36,7 @@ internal static TasksStateTasksDetails DeserializeTasksStateTasksDetails(JsonEle continue; } } - return new TasksStateTasksDetails(lastUpdateDateTime, name, status); + return new TasksStateTasksDetails(lastUpdateDateTime, name.Value, status); } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.cs index b14a8d1eeee7a..f04956440793f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.cs @@ -12,5 +12,19 @@ namespace Azure.AI.TextAnalytics /// The TasksStateTasksDetails. public partial class TasksStateTasksDetails : TaskState { + /// Initializes a new instance of TasksStateTasksDetails. + /// . + /// . + internal TasksStateTasksDetails(DateTimeOffset lastUpdateDateTime, JobStatus status) : base(lastUpdateDateTime, status) + { + } + + /// Initializes a new instance of TasksStateTasksDetails. + /// . + /// . + /// . + internal TasksStateTasksDetails(DateTimeOffset lastUpdateDateTime, string name, JobStatus status) : base(lastUpdateDateTime, name, status) + { + } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobMetadata.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobMetadata.cs index c777568cbc6d3..05967a55bb24a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobMetadata.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/JobMetadata.cs @@ -3,7 +3,7 @@ using Azure.Core; -namespace Azure.AI.TextAnalytics +namespace Azure.AI.TextAnalytics.Models { /// /// JobMetadata. diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseExtractionTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseExtractionTasksItem.cs index c79ba160b8926..c2f5cd13950ba 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseExtractionTasksItem.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseExtractionTasksItem.cs @@ -15,24 +15,20 @@ namespace Azure.AI.TextAnalytics public partial class KeyPhraseExtractionTasksItem { /// Initializes a new instance of KeyPhraseExtractionTasksItem. - /// . - /// . - /// . - /// is null. - internal KeyPhraseExtractionTasksItem(DateTimeOffset lastUpdateDateTime, string name, JobStatus status) : base(lastUpdateDateTime, name, status) + public KeyPhraseExtractionTasksItem(KeyPhraseExtractionTasksItem task, IDictionary idToIndexMap) : base(task.LastUpdateDateTime, task.Name, task.Status) { + Results = Transforms.ConvertToExtractKeyPhrasesResultCollection(task.ResultsInternal, idToIndexMap); } - /// Initializes a new instance of KeyPhraseExtractionTasksItem. - /// . - /// . - /// . - /// . - /// is null. - internal KeyPhraseExtractionTasksItem(DateTimeOffset lastUpdateDateTime, string name, JobStatus status, KeyPhraseResult results) : base(lastUpdateDateTime, name, status) - { - Results = results; - } - internal KeyPhraseResult Results { get; } + /// + /// RecognizeEntitiesResultCollection Result + /// + public ExtractKeyPhrasesResultCollection Results { get; } + + /// + /// Results for KeyPhraseExtractionTasksItem + /// + [CodeGenMember("Results")] + internal KeyPhraseResult ResultsInternal { get; } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasks.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasks.cs index 83a7c225342c5..ff84a23bf1c2b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasks.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasks.cs @@ -12,6 +12,32 @@ namespace Azure.AI.TextAnalytics [CodeGenModel("TasksStateTasks")] public partial class AnalyzeTasks { + /// Initializes a new instance of AnalyzeTasks. + /// + /// + internal AnalyzeTasks(AnalyzeTasks tasks, IDictionary idToIndexMap) + { + Details = tasks.Details; + Completed = tasks.Completed; + Failed = tasks.Failed; + InProgress = tasks.InProgress; + Total = tasks.Total; + + if (tasks.EntityRecognitionTasks.Count > 0) + { + EntityRecognitionTasks = Transforms.ConvertToEntityRecognitionTasks(tasks.EntityRecognitionTasks, idToIndexMap); + } + + if (tasks.EntityRecognitionPiiTasks.Count > 0) + { + EntityRecognitionPiiTasks = Transforms.ConvertToEntityRecognitionPiiTasks(tasks.EntityRecognitionPiiTasks, idToIndexMap); + } + + if (tasks.KeyPhraseExtractionTasks.Count > 0) + { + KeyPhraseExtractionTasks = Transforms.ConvertToKeyPhraseExtractionTasks(tasks.KeyPhraseExtractionTasks, idToIndexMap); + } + } /// /// Details /// @@ -40,16 +66,16 @@ public partial class AnalyzeTasks /// /// EntityRecognitionTasks /// - public IReadOnlyList EntityRecognitionTasks { get; } + public IReadOnlyList EntityRecognitionTasks { get; } = new List(); /// /// EntityRecognitionPiiTasks /// - public IReadOnlyList EntityRecognitionPiiTasks { get; } + public IReadOnlyList EntityRecognitionPiiTasks { get; } = new List(); /// /// KeyPhraseExtractionTasks /// - public IReadOnlyList KeyPhraseExtractionTasks { get; } + public IReadOnlyList KeyPhraseExtractionTasks { get; } = new List(); } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasksDetails.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasksDetails.cs index 4c04495356b3f..46472bc69df42 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasksDetails.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasksDetails.cs @@ -12,8 +12,5 @@ namespace Azure.AI.TextAnalytics [CodeGenModel("TasksStateTasksDetails")] public partial class TasksStateTasksDetails { - internal TasksStateTasksDetails(DateTimeOffset lastUpdateDateTime, string name, JobStatus status) : base(lastUpdateDateTime, name, status) - { - } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index e01765d6416f3..348e271d1f781 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -2603,8 +2603,6 @@ private async Task StartAnalyzeOperationBatchAsync(MultiLangua JobManifestTasks tasks = new JobManifestTasks(); - AnalyzeBatchInput analyzeDocumentInputs = new AnalyzeBatchInput(batchInput, tasks); - if (options.PiiTaskParameters != null) { tasks.EntityRecognitionPiiTasks = new List() { new PiiTask() { Parameters = options.PiiTaskParameters } }; @@ -2618,10 +2616,7 @@ private async Task StartAnalyzeOperationBatchAsync(MultiLangua tasks.KeyPhraseExtractionTasks = new List() { new KeyPhrasesTask() { Parameters = options.KeyPhrasesTaskParameters } }; } - if (options.DisplayName != null) - { - analyzeDocumentInputs.DisplayName = options.DisplayName; - } + AnalyzeBatchInput analyzeDocumentInputs = new AnalyzeBatchInput(batchInput, tasks, options.DisplayName); using DiagnosticScope scope = _clientDiagnostics.CreateScope($"{nameof(TextAnalyticsClient)}.{nameof(StartAnalyzeOperationBatch)}"); scope.Start(); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs index 764db3bd2dfd2..55a147a1711f0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs @@ -1,6 +1,7 @@ // Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. +using System; using System.Collections.Generic; using System.Linq; using Azure.AI.TextAnalytics.Models; @@ -27,6 +28,56 @@ internal static TextAnalyticsError ConvertToError(TextAnalyticsErrorInternal err return new TextAnalyticsError(errorCode, message, target); } + internal static List ConvertToErrors(IReadOnlyList internalErrors) + { + var errors = new List(); + + if (internalErrors == null) + { + return errors; + } + + foreach (TextAnalyticsErrorInternal error in internalErrors) + { + errors.Add(ConvertToError(error)); + } + return errors; + + } + + internal static IReadOnlyList ConvertToKeyPhraseExtractionTasks(IReadOnlyList keyPhraseExtractionTasks, IDictionary idToIndexMap) + { + var collection = new List(); + foreach (KeyPhraseExtractionTasksItem task in keyPhraseExtractionTasks) + { + collection.Add(new KeyPhraseExtractionTasksItem(task, idToIndexMap)); + } + + return collection; + } + + internal static IReadOnlyList ConvertToEntityRecognitionPiiTasks(IReadOnlyList entityRecognitionPiiTasks, IDictionary idToIndexMap) + { + var collection = new List(); + foreach (EntityRecognitionPiiTasksItem task in entityRecognitionPiiTasks) + { + collection.Add(new EntityRecognitionPiiTasksItem(task, idToIndexMap)); + } + + return collection; + } + + internal static IReadOnlyList ConvertToEntityRecognitionTasks(IReadOnlyList entityRecognitionTasks, IDictionary idToIndexMap) + { + var collection = new List(); + foreach (EntityRecognitionTasksItem task in entityRecognitionTasks) + { + collection.Add(new EntityRecognitionTasksItem(task, idToIndexMap)); + } + + return collection; + } + internal static List ConvertToWarnings(IReadOnlyList internalWarnings) { var warnings = new List(); @@ -255,11 +306,7 @@ internal static RecognizeHealthcareEntitiesResultCollection ConvertToRecognizeHe internal static AnalyzeOperationResult ConvertToAnalyzeOperationResult(AnalyzeJobState jobState, IDictionary map) { - EntitiesResult entitiesResult = jobState.Tasks.EntityRecognitionTasks.Count > 0 ? jobState.Tasks.EntityRecognitionTasks[0].Results : null; - PiiEntitiesResult piiEntitiesResult = jobState.Tasks.EntityRecognitionPiiTasks.Count > 0 ? jobState.Tasks.EntityRecognitionPiiTasks[0].Results : null; - KeyPhraseResult keyPhraseResult = jobState.Tasks.KeyPhraseExtractionTasks.Count > 0 ? jobState.Tasks.KeyPhraseExtractionTasks[0].Results : null; - - return new AnalyzeOperationResult(entitiesResult, piiEntitiesResult, keyPhraseResult, map, jobState.DisplayName); + return new AnalyzeOperationResult(jobState, map); } #endregion diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/autorest.md b/sdk/textanalytics/Azure.AI.TextAnalytics/src/autorest.md index 7ed2e718a3024..727b220d0e6e9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/autorest.md +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/autorest.md @@ -7,7 +7,7 @@ Run `dotnet build /t:GenerateCode` to generate code. ``` yaml input-file: - - https://github.com/Azure/azure-rest-api-specs/blob/a147420dbc73a0327841adebd861c5c44254a877/specification/cognitiveservices/data-plane/TextAnalytics/preview/v3.1-preview.3/TextAnalytics.json + - https://github.com/Azure/azure-rest-api-specs/blob/9b2689fe79302577b843f1cdf40f42330a67de08/specification/cognitiveservices/data-plane/TextAnalytics/preview/v3.1-preview.3/TextAnalytics.json ``` ### Make generated models internal by default diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs index a55f19d49638c..ed179c10856b8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs @@ -47,17 +47,14 @@ public async Task AnalyzeOperationTest() AnalyzeOperationResult resultCollection = operation.Value; - RecognizeEntitiesResultCollection entitiesResult = resultCollection.EntitiesResult; + IReadOnlyList entityRecognitionTasksItemCollection = resultCollection.Tasks.EntityRecognitionTasks; + IReadOnlyList entityRecognitionPiiTasksItemCollection = resultCollection.Tasks.EntityRecognitionPiiTasks; - ExtractKeyPhrasesResultCollection keyPhrasesResult = resultCollection.KeyPhraseResult; - - RecognizePiiEntitiesResultCollection piiResult = resultCollection.PiiEntitiesResult; - - Assert.IsNotNull(keyPhrasesResult); - Assert.IsNull(entitiesResult); - Assert.IsNull(piiResult); + ExtractKeyPhrasesResultCollection keyPhrasesResult = resultCollection.Tasks.KeyPhraseExtractionTasks[0].Results; Assert.IsNotNull(keyPhrasesResult); + Assert.IsNotNull(entityRecognitionTasksItemCollection); + Assert.IsNotNull(entityRecognitionPiiTasksItemCollection); Assert.AreEqual(2, keyPhrasesResult.Count); @@ -94,10 +91,7 @@ public async Task AnalyzeOperationWithLanguageTest() AnalyzeOperationOptions operationOptions = new AnalyzeOperationOptions() { - KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters() - { - ModelVersion = "latest" - }, + KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters(), DisplayName = "AnalyzeOperationWithLanguageTest" }; @@ -107,23 +101,23 @@ public async Task AnalyzeOperationWithLanguageTest() AnalyzeOperationResult resultCollection = operation.Value; - ExtractKeyPhrasesResultCollection result = resultCollection.KeyPhraseResult; + ExtractKeyPhrasesResultCollection keyPhrasesResult = resultCollection.Tasks.KeyPhraseExtractionTasks[0].Results; - Assert.IsNotNull(result); + Assert.IsNotNull(keyPhrasesResult); - Assert.AreEqual(2, result.Count); + Assert.AreEqual(2, keyPhrasesResult.Count); Assert.AreEqual("AnalyzeOperationWithLanguageTest", resultCollection.DisplayName); var keyPhrasesListId1 = new List { "Bill Gates", "Paul Allen", "Microsoft" }; var keyPhrasesListId2 = new List { "gato", "perro", "veterinario" }; - foreach (string keyphrase in result[0].KeyPhrases) + foreach (string keyphrase in keyPhrasesResult[0].KeyPhrases) { Assert.IsTrue(keyPhrasesListId1.Contains(keyphrase)); } - foreach (string keyphrase in result[1].KeyPhrases) + foreach (string keyphrase in keyPhrasesResult[1].KeyPhrases) { Assert.IsTrue(keyPhrasesListId2.Contains(keyphrase)); } @@ -148,18 +142,9 @@ public async Task AnalyzeOperationWithMultipleTasks() AnalyzeOperationOptions operationOptions = new AnalyzeOperationOptions() { - KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters() - { - ModelVersion = "latest" - }, - EntitiesTaskParameters = new EntitiesTaskParameters() - { - ModelVersion = "latest" - }, - PiiTaskParameters = new PiiTaskParameters() - { - ModelVersion = "latest" - }, + KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters(), + EntitiesTaskParameters = new EntitiesTaskParameters(), + PiiTaskParameters = new PiiTaskParameters(), DisplayName = "AnalyzeOperationWithMultipleTasks" }; @@ -169,11 +154,11 @@ public async Task AnalyzeOperationWithMultipleTasks() AnalyzeOperationResult resultCollection = operation.Value; - RecognizeEntitiesResultCollection entitiesResult = resultCollection.EntitiesResult; + RecognizeEntitiesResultCollection entitiesResult = resultCollection.Tasks.EntityRecognitionTasks[0].Results; - ExtractKeyPhrasesResultCollection keyPhrasesResult = resultCollection.KeyPhraseResult; + ExtractKeyPhrasesResultCollection keyPhrasesResult = resultCollection.Tasks.KeyPhraseExtractionTasks[0].Results; - RecognizePiiEntitiesResultCollection piiResult = resultCollection.PiiEntitiesResult; + RecognizePiiEntitiesResultCollection piiResult = resultCollection.Tasks.EntityRecognitionPiiTasks[0].Results; Assert.IsNotNull(keyPhrasesResult); Assert.IsNotNull(entitiesResult); @@ -228,10 +213,7 @@ public async Task AnalyzeOperationWithSkipParameter() AnalyzeOperationOptions operationOptions = new AnalyzeOperationOptions() { - KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters() - { - ModelVersion = "latest" - }, + KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters(), DisplayName = "AnalyzeOperationWithSkipParameter", Skip = 1 }; @@ -242,7 +224,7 @@ public async Task AnalyzeOperationWithSkipParameter() AnalyzeOperationResult resultCollection = operation.Value; - ExtractKeyPhrasesResultCollection result = resultCollection.KeyPhraseResult; + ExtractKeyPhrasesResultCollection result = resultCollection.Tasks.KeyPhraseExtractionTasks[0].Results; Assert.IsNotNull(result); @@ -263,10 +245,7 @@ public async Task AnalyzeOperationWithTopParameter() AnalyzeOperationOptions operationOptions = new AnalyzeOperationOptions() { - KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters() - { - ModelVersion = "latest" - }, + KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters(), DisplayName = "AnalyzeOperationWithSkipParameter", Top = 1 }; @@ -277,7 +256,7 @@ public async Task AnalyzeOperationWithTopParameter() AnalyzeOperationResult resultCollection = operation.Value; - ExtractKeyPhrasesResultCollection result = resultCollection.KeyPhraseResult; + ExtractKeyPhrasesResultCollection result = resultCollection.Tasks.KeyPhraseExtractionTasks[0].Results; Assert.IsNotNull(result); @@ -305,10 +284,7 @@ public async Task AnalyzeOperationBatchWithErrorTest() AnalyzeOperationOptions operationOptions = new AnalyzeOperationOptions() { - KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters() - { - ModelVersion = "latest" - }, + KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters(), DisplayName = "AnalyzeOperationBatchWithErrorTest", Skip = 1 }; @@ -339,7 +315,6 @@ public async Task AnalyzeOperationBatchWithPHIDomain() { PiiTaskParameters = new PiiTaskParameters() { - ModelVersion = "latest", Domain = PiiTaskParametersDomain.Phi }, DisplayName = "AnalyzeOperationWithPHIDomain" @@ -351,14 +326,15 @@ public async Task AnalyzeOperationBatchWithPHIDomain() AnalyzeOperationResult resultCollection = operation.Value; - RecognizePiiEntitiesResultCollection result = resultCollection.PiiEntitiesResult; + RecognizePiiEntitiesResultCollection result = resultCollection.Tasks.EntityRecognitionPiiTasks[0].Results;; Assert.IsNotNull(result); Assert.AreEqual(1, result.Count); - var redactedText = string.Empty; - Assert.AreEqual(redactedText, result[0].Entities.RedactedText); + // TODO - Update this once the service starts returning RedactedText + //var redactedText = string.Empty; + //Assert.AreEqual(redactedText, result[0].Entities.RedactedText); Assert.IsFalse(result[0].HasError); Assert.AreEqual(2, result[0].Entities.Count); @@ -384,10 +360,7 @@ public async Task AnalyzeOperationBatchWithStatisticsTest() AnalyzeOperationOptions operationOptions = new AnalyzeOperationOptions() { - KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters() - { - ModelVersion = "latest" - }, + KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters(), DisplayName = "AnalyzeOperationTest", IncludeStatistics = true }; @@ -398,7 +371,7 @@ public async Task AnalyzeOperationBatchWithStatisticsTest() AnalyzeOperationResult resultCollection = operation.Value; - ExtractKeyPhrasesResultCollection result = resultCollection.KeyPhraseResult; + ExtractKeyPhrasesResultCollection result = resultCollection.Tasks.KeyPhraseExtractionTasks[0].Results; Assert.IsNotNull(result); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json index 19b46104d2d0b..b81693289661b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json @@ -11,9 +11,10 @@ "Content-Length": "311", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0392dccd4aea354f91b0525056ca6f59-56b877e8d3e24944-00", + "Request-Id": "00-b8b127bf9ca31b4fad7c49cc71f268ab-3894f0862717114f-00", + "traceparent": "00-b8b127bf9ca31b4fad7c49cc71f268ab-3894f0862717114f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cfe8e2f8ee3911d883f149c5ba708a25", @@ -43,18 +44,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "d29ea625-c015-40ed-94c8-65eb14e0e5c4", - "Date": "Tue, 10 Nov 2020 16:44:14 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", + "apim-request-id": "6bb07817-2312-4a94-ae6c-5abfa6dcee90", + "Date": "Thu, 12 Nov 2020 00:04:38 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-envoy-upstream-service-time": "279" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -62,8 +63,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66bf0-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0af6547e6d21f99df5e133f9fb1abff6", @@ -72,26 +74,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3c7c5142-ca24-4287-bcad-0c772255650a", + "apim-request-id": "44751566-6852-41c7-bee9-3373b7438936", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:14 GMT", + "Date": "Thu, 12 Nov 2020 00:04:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" + "x-envoy-upstream-service-time": "115" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "notStarted", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", + "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -101,7 +103,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -109,8 +111,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66bf1-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1ffe04ae50f965a11f4bc1da8e14f022", @@ -119,26 +122,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b26e8460-9a1e-4d7f-b01d-f210cdb5d0e7", + "apim-request-id": "6abc182b-ddf2-4a67-8e20-242c6a4a09e8", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:16 GMT", + "Date": "Thu, 12 Nov 2020 00:04:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "107" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -148,7 +151,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -156,8 +159,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66bf2-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1647a062e0a88b5844efda57badf1569", @@ -166,26 +170,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "37f3aefd-f5e4-415a-8d1e-6a6fade97a9b", + "apim-request-id": "0e12eb96-d1ec-4cc6-8979-1d87d47fbcdc", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:17 GMT", + "Date": "Thu, 12 Nov 2020 00:05:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "68" + "x-envoy-upstream-service-time": "192" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -195,7 +199,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -203,8 +207,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66bf3-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b61653316b722e2cb391ead5abc26ae0", @@ -213,26 +218,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6b6c11ab-f7c8-4c80-af5b-748c508b46a3", + "apim-request-id": "209d4b1f-6f43-4b0b-8f26-fa3b275670a7", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:19 GMT", + "Date": "Thu, 12 Nov 2020 00:05:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "76" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -242,7 +247,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -250,8 +255,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66bf4-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5a9611f1a9d2cd4dab72da09754aaa40", @@ -260,26 +266,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b6911278-d389-4c3e-931c-e35e9e365467", + "apim-request-id": "2e0f7c4a-b1d7-4b08-a077-eeece9cd5cbd", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:20 GMT", + "Date": "Thu, 12 Nov 2020 00:05:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "95" + "x-envoy-upstream-service-time": "78" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -289,7 +295,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -297,8 +303,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66bf5-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3ba9583539fdf7af74196317f682e081", @@ -307,26 +314,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "19c7913f-8544-459a-ab3a-401c3b16c7ff", + "apim-request-id": "c240de6a-ea0f-4918-9a85-cbb1e644da33", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:21 GMT", + "Date": "Thu, 12 Nov 2020 00:05:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -336,7 +343,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -344,8 +351,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66bf6-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a966f984bb48889605490aff9122b869", @@ -354,26 +362,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1de19964-ac47-4a51-a23e-accadfc13017", + "apim-request-id": "0a1381df-40a7-48f3-9f71-8d3a5015a827", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:22 GMT", + "Date": "Thu, 12 Nov 2020 00:05:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "57" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -383,7 +391,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -391,8 +399,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66bf7-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "52a0a9e62e19b7e3619fe5b94536d629", @@ -401,26 +410,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a56af35f-02e7-48e5-8a35-3d00a392f152", + "apim-request-id": "f69ae3e8-bce7-42c5-9b50-02ab40f5bc7e", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:23 GMT", + "Date": "Thu, 12 Nov 2020 00:05:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -430,7 +439,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -438,8 +447,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66bf8-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7c84589201e47af8c22036b42eb06652", @@ -448,26 +458,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f31a5877-9a17-487e-8cd3-2127cb6c989e", + "apim-request-id": "d0384d10-b41d-4129-a9cb-88114108e15c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:24 GMT", + "Date": "Thu, 12 Nov 2020 00:05:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -477,7 +487,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -485,8 +495,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66bf9-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4c31fa618de2566816ae47a9d5dc42cf", @@ -495,26 +506,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "96da6406-4fab-4253-9a04-9dede68beeef", + "apim-request-id": "9a31637e-221f-431a-95fd-863969ff8fa7", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:25 GMT", + "Date": "Thu, 12 Nov 2020 00:05:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "52" + "x-envoy-upstream-service-time": "53" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -524,7 +535,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -532,8 +543,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66bfa-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "386ce1723b9de485b12590f8f82e88b1", @@ -542,26 +554,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d478a5af-2a60-48e9-92ab-deed8b0c1f06", + "apim-request-id": "cb406173-8dcd-4b9d-afbd-6f41441e7f32", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:26 GMT", + "Date": "Thu, 12 Nov 2020 00:05:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -571,7 +583,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -579,8 +591,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66bfb-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4b5893388a040546f02e6635b94ea5e5", @@ -589,26 +602,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3f6f9ff1-d9dc-4e17-89b9-89b8a969ddac", + "apim-request-id": "361c0787-b497-4dee-a7ae-a51ae99a1477", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:27 GMT", + "Date": "Thu, 12 Nov 2020 00:05:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "55" + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -618,7 +631,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -626,8 +639,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66bfc-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4d4166de2e4325b5754c9abcfc6f5de7", @@ -636,26 +650,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2820aece-61c7-4132-a252-0bd2fb304732", + "apim-request-id": "ba1188bb-80b7-4191-8a35-332a5358bd60", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:30 GMT", + "Date": "Thu, 12 Nov 2020 00:05:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "69" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -665,7 +679,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -673,8 +687,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66bfd-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "41709625f784e8cb9b67476ed54f2b62", @@ -683,26 +698,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "af81cb25-9faa-4d06-bda9-cf2dce98dd61", + "apim-request-id": "ca9229e9-34ee-4e99-b34d-ae4725b7f2df", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:31 GMT", + "Date": "Thu, 12 Nov 2020 00:05:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "62" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -712,7 +727,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -720,8 +735,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66bfe-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "921aaa803bed0a6edd33d6b7ef8a0880", @@ -730,26 +746,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "34e5960a-35e8-417e-9c6e-e57fb93265a4", + "apim-request-id": "afc1f636-59be-4bc1-8e7c-5b0020be918b", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:32 GMT", + "Date": "Thu, 12 Nov 2020 00:05:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "56" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -759,7 +775,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -767,8 +783,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66bff-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "220f7ed163dee7609b59b2dbe6464f25", @@ -777,26 +794,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4601990e-5aec-4be8-a6ee-ba8cd6911de9", + "apim-request-id": "ecb43e31-36f9-491f-a825-e29b8815465a", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:33 GMT", + "Date": "Thu, 12 Nov 2020 00:05:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-envoy-upstream-service-time": "53" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -806,7 +823,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -814,8 +831,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c00-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "513b3721cb55eafa286564512013f810", @@ -824,26 +842,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "20734c68-67fa-44c1-b115-40de8398e7d5", + "apim-request-id": "ea9141e1-fbca-4576-9782-ca25cb29af65", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:34 GMT", + "Date": "Thu, 12 Nov 2020 00:05:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "58" + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -853,7 +871,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -861,8 +879,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c01-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "569dc65e083f1d844a33f69389922497", @@ -871,26 +890,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "edc57e6f-4394-40c8-8362-41df3b82babd", + "apim-request-id": "ea2f9785-9c4d-40d8-9875-a31e7d97963f", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:35 GMT", + "Date": "Thu, 12 Nov 2020 00:05:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "66" + "x-envoy-upstream-service-time": "56" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -900,7 +919,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -908,8 +927,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c02-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b795b0e3b74e062b8425fa78ff0fc687", @@ -918,26 +938,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "95dd980f-6e0b-47ad-b2e1-cfe79b2d1dc1", + "apim-request-id": "7c3a3a13-32d4-49e5-af58-cd50f2e461a8", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:37 GMT", + "Date": "Thu, 12 Nov 2020 00:05:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -947,7 +967,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -955,8 +975,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c03-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1f7da160f8a919e6b31e0721d4676096", @@ -965,26 +986,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e205e893-7607-49e7-80dd-16a7f6d9ebfa", + "apim-request-id": "dbbd26c8-e064-45cb-8b2d-b6852e535a55", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:38 GMT", + "Date": "Thu, 12 Nov 2020 00:05:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "56" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -994,7 +1015,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1002,8 +1023,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c04-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "706dcc41417da7c29b97d2190d0c1e3a", @@ -1012,26 +1034,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "43e6c432-b499-4172-b51f-5ff9f28c8856", + "apim-request-id": "cb80f5fd-b76a-488e-90b4-63a1b89f433b", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:39 GMT", + "Date": "Thu, 12 Nov 2020 00:05:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -1041,7 +1063,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1049,8 +1071,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c05-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e8326f6d0514ebedca7c0430af09311d", @@ -1059,26 +1082,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0e4bda61-9376-4c6d-8b56-b955911a0191", + "apim-request-id": "67bd1214-8008-4e2a-92ba-68d6201c991d", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:40 GMT", + "Date": "Thu, 12 Nov 2020 00:05:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -1088,7 +1111,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1096,8 +1119,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c06-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "323763c556a21f09ded5841225cc0ba7", @@ -1106,26 +1130,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9335987c-f866-474c-bd80-ce5bb3d48f71", + "apim-request-id": "1ba24f05-45a3-415b-a74c-830637f8b35d", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:42 GMT", + "Date": "Thu, 12 Nov 2020 00:05:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "74" + "x-envoy-upstream-service-time": "65" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -1135,7 +1159,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1143,8 +1167,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c07-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "64b4cdff78343c81df81a6013c91f891", @@ -1153,26 +1178,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "623bd85a-6618-4cd8-ab7f-fb80cbfb14d3", + "apim-request-id": "878b5e2a-4988-4520-a5c9-5c7a8de21a0c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:43 GMT", + "Date": "Thu, 12 Nov 2020 00:05:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -1182,7 +1207,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1190,8 +1215,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c08-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "aa54b565ecd417976513093e80dbc5fd", @@ -1200,26 +1226,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "726d8b7c-ea61-4210-ad39-b9e0d359493c", + "apim-request-id": "aeb63fea-55f4-422e-86c6-656f8679f031", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:44 GMT", + "Date": "Thu, 12 Nov 2020 00:05:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -1229,7 +1255,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1237,8 +1263,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c09-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e2305d70cc544ce8e2fa5220af07e24c", @@ -1247,26 +1274,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4f0e9274-cb77-4b40-97de-e836d0fe82cd", + "apim-request-id": "0b569ec3-70b4-439b-95c5-9947b0d41af1", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:45 GMT", + "Date": "Thu, 12 Nov 2020 00:05:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "66" + "x-envoy-upstream-service-time": "68" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -1276,7 +1303,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1284,8 +1311,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c0a-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "70acf2dd617813d2359dff216e43bb04", @@ -1294,26 +1322,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4b48c8d8-6a46-4226-b4fd-8d80dedf4728", + "apim-request-id": "35b0c3ba-a177-486d-b6ad-88003b70a07c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:46 GMT", + "Date": "Thu, 12 Nov 2020 00:05:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "54" + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -1323,7 +1351,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1331,8 +1359,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c0b-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "df91a9bb1561983ccc07c8da9977675d", @@ -1341,26 +1370,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0315aef6-3f7c-4a3f-925f-831fb2cc7e7e", + "apim-request-id": "aae593fc-e5cf-45bb-98d6-395652e3a97c", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:48 GMT", + "Date": "Thu, 12 Nov 2020 00:05:33 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": "65" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -1370,7 +1399,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1378,8 +1407,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c0c-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8e60bc30552e0e848b1cacb7cdc7dd9f", @@ -1388,26 +1418,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f8545edc-da60-4d8e-8ac2-d14e2c81265c", + "apim-request-id": "f87440ef-83af-4e27-ba70-a6d00f9fac10", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:49 GMT", + "Date": "Thu, 12 Nov 2020 00:05:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "93" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -1417,7 +1447,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1425,8 +1455,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c0d-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "06654e3f0376c7ebb614a37099f87abe", @@ -1435,26 +1466,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3201ed08-a127-4cd6-9c15-b83965e45649", + "apim-request-id": "6cb70bab-9d38-4926-a568-2d038d7ed7c2", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:50 GMT", + "Date": "Thu, 12 Nov 2020 00:05:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -1464,7 +1495,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1472,8 +1503,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c0e-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b2f0a1362de265d5248254446985cb04", @@ -1482,26 +1514,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f1d91f80-46fe-4f1d-bee6-ac3c40006dfc", + "apim-request-id": "2eb84e30-be47-4ffa-af36-5f7aff9a778d", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:51 GMT", + "Date": "Thu, 12 Nov 2020 00:05:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -1511,7 +1543,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1519,8 +1551,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c0f-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4a9a282a60112de7d198d81ab1147592", @@ -1529,26 +1562,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "01352478-5a13-438a-bea7-44208bde3cec", + "apim-request-id": "f43e4535-a8d7-410f-bcda-fe4e26276b67", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:53 GMT", + "Date": "Thu, 12 Nov 2020 00:05:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -1558,7 +1591,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1566,8 +1599,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c10-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2b80eea22bd612bc78ffe2f3aea65e30", @@ -1576,9 +1610,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "06581975-a3bf-420e-a18f-be2d90294ee7", + "apim-request-id": "2a21fd22-5b56-40ef-bc65-76e40eb19c1f", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:54 GMT", + "Date": "Thu, 12 Nov 2020 00:05:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -1586,16 +1620,16 @@ }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -1605,7 +1639,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1613,8 +1647,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c11-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "70459f492f5dd6acbac3e14954bbb40f", @@ -1623,26 +1658,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "92edd0c2-192b-4636-8cc2-5232ccfbc00f", + "apim-request-id": "60f71f03-a17a-4839-b468-3d395af8af74", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:55 GMT", + "Date": "Thu, 12 Nov 2020 00:05:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "67" + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -1652,7 +1687,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1660,8 +1695,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c12-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7aa2c10d9f04ff2e6c88d2127df37e2a", @@ -1670,26 +1706,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1abcd62e-2a26-45ca-a884-30fcc0718aa7", + "apim-request-id": "248187b4-7724-4cb2-8373-ef09be2ac9e8", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:56 GMT", + "Date": "Thu, 12 Nov 2020 00:05:42 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": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -1699,7 +1735,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1707,8 +1743,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c13-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "12d1a73a04ce733541aa71124973bdbc", @@ -1717,26 +1754,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ba2c806a-55c7-48f9-a31b-6f18957b6a3a", + "apim-request-id": "11dd21ee-54b9-4fc3-8538-e24fa2aa11a9", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:57 GMT", + "Date": "Thu, 12 Nov 2020 00:05:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "52" + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -1746,7 +1783,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1754,8 +1791,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c14-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ede6d34be304a92c704604d55d9a58c6", @@ -1764,26 +1802,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6352f63e-89bb-4a18-b120-f65cbd0ea698", + "apim-request-id": "e55596f9-be2d-458e-8ae3-95765a3c6aee", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:44:58 GMT", + "Date": "Thu, 12 Nov 2020 00:05:44 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": "59" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -1793,7 +1831,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1801,8 +1839,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c15-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ad0eb645a1ea09408c2f395a2d1bb5f8", @@ -1811,26 +1850,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "88f18e1d-011a-458b-89df-a62a742b5238", + "apim-request-id": "7332d395-34cc-4b43-b683-b1b7f63b9a6e", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:00 GMT", + "Date": "Thu, 12 Nov 2020 00:05:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "60" + "x-envoy-upstream-service-time": "82" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -1840,7 +1879,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1848,8 +1887,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c16-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "aac615ca910d56257b27a187ff5f15a7", @@ -1858,26 +1898,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b8b958da-5dbf-4e82-86e5-692e8e258315", + "apim-request-id": "eab8aea4-54da-4ec4-8493-0b517eea9068", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:01 GMT", + "Date": "Thu, 12 Nov 2020 00:05:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "64" + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -1887,7 +1927,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1895,8 +1935,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c17-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "93cdab521065aad192dc60d5aad17c55", @@ -1905,26 +1946,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ac94fa7b-9ef6-46f3-bbd6-e36c9d02f5e5", + "apim-request-id": "dde126cb-2ba7-4de9-932e-2a0d3130b996", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:02 GMT", + "Date": "Thu, 12 Nov 2020 00:05:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -1934,7 +1975,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1942,8 +1983,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c18-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "470b0c91add3b4b891b832c3ffb8092c", @@ -1952,26 +1994,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d4622308-d860-4f77-933e-befdd25837af", + "apim-request-id": "94b5e593-6990-44c1-a8fe-61fb26b96322", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:03 GMT", + "Date": "Thu, 12 Nov 2020 00:05:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -1981,7 +2023,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1989,8 +2031,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c19-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "82089119214eba93431c18303050aca9", @@ -1999,26 +2042,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c629a1b2-3954-46a1-9d9b-c251eb2fdf8f", + "apim-request-id": "6c1c51f4-b51b-44b1-b56a-2ba718f3a740", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:04 GMT", + "Date": "Thu, 12 Nov 2020 00:05:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "52" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -2028,7 +2071,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2036,8 +2079,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c1a-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f3f64caace54a4d3f21801addd0eabd9", @@ -2046,197 +2090,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cbb55820-5a62-43b6-8eb5-dc1bf6a719b6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:05 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "58" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "18bc34d3fac96f07795003b695878341", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cf676aa9-d551-4d0a-b2b4-571b5a0fbf2e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:07 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b218890b15c24ad7be638f3520e6dc35", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0e12e8c5-bcee-48b7-a95a-c4a38738e896", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:08 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "76" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "fc5d3e719393b0df45867a04ca1c0e6a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5856b22d-2e54-4f12-b706-1708f4cd0b24", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:09 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "54a1c094f8f5be175c715a656ad14f92", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3ab8315d-2b8f-441c-8f17-f64f6d9afd74", + "apim-request-id": "983eab0f-dff4-4674-b2ae-f4f011b9015b", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:11 GMT", + "Date": "Thu, 12 Nov 2020 00:05:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -2244,63 +2100,16 @@ }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5745cd74872a78ada9676d3c9ad37fa1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "91e5d50f-b2e4-46c8-a182-6e5c312da1d8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:12 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 0, "failed": 0, @@ -2310,7 +2119,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2318,2762 +2127,37 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|6dd66c1b-4e364dc921df1895.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "5fa0245588447940279e9f2239794674", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "23c3d0dc-2058-49d7-8642-a214e292c0fc", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:13 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "fd90e736b7d70d3f1329aa8d8bda2389", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "229c89e0-076c-42b1-94e8-85416b95eb33", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:15 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4510b9f1f030eb4d8dcc308be88b3e30", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d52aa118-dc73-4eca-81f6-88e6bf827579", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:16 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b305f92182439dc9e4934b1bddb2ed4c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "63042428-6941-4e28-927a-472563637fc3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:17 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7f30167b0168464399a46f0b87b42488", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b877fec0-a785-4ac8-bfcd-20a0d588793b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:18 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "926c7aea70d56f45ef72609da4320edb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "797becd1-f2db-489e-98f4-802bbdbc3c39", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:19 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "91" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d210e3debe5b20c7b5bf199f13bd1630", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "74c0df36-aca8-493c-9528-9d550b7eb896", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:20 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "6331c36e5b460b76d0c190f6a0a5a167", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "edd29f44-8e0a-4cfc-b61f-a40606f9163b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:21 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a32d949552a32b2db24bdc1656a65b31", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1dcc5c56-7116-45e3-97a1-0871f7d9aef5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:23 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e12e2f5caa0082946d05019a2ed17f10", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "14b34e14-f3ab-4269-abb7-877435f6c663", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:24 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "64" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7f09b11d72901c8d9606b0fa7e60b42a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "23e8003e-19af-4c0f-958e-e8f68e5bd683", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:25 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "73" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "71995e65c077eb67ffaa369e5093fce1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "66f18904-4a20-47cd-864a-98cc8e10bf7a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:27 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "49" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a5f8ccccdc9ce9a1a1124bf9f99a040c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "797dc91a-190d-4f0f-985d-dd759c6684ec", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:28 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d034d7510e375d994a1e7fe63cefcb03", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "34353685-5ecd-4f55-b5a3-ac1d7c9e7e66", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:29 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b22ecf0a0e67888dbdb0cf65756df164", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a9b6e678-4ebc-4c19-b333-e992ea06f0a6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:31 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "49" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "794d29a62c5ebda9339b5b7e5cbaacb2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1aa4704b-2784-4d5d-81d6-a9ef1d8040a4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:32 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "49" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "29ef4846516c42a549ac12863f33e8dc", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "202a0ca0-a0bf-493d-9973-85d1e372cb4f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:33 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "12401b2c51a2dda425707fcbb30f2b02", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ae863510-dc6c-4145-9cb3-9b01754c6917", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:34 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2c1e1c03c77d54f8840a30b119237eff", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4063da62-a82e-465d-814a-d37661d09d7f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:36 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "54" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "41517eb39a7af410a31103fcd2d98e39", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5a65b7ff-bfce-4805-a784-655d5ae80387", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:37 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "58" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "22821080bb15655e22eb8e9721f2c402", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4f3240e6-f78e-4dd3-b499-bdf45a671055", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:38 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "341880f1eabe69880c29896cc3fc82aa", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f6af0700-2536-4791-958b-b2831efad3be", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:39 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "49" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0831f67c5ca0f7e920ec1e8e0b78d3b0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "24100a6f-21c7-4e46-9887-a6deb9f357ca", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:40 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "520a014c59c1967b871815eb31f2a126", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2e3791fe-373f-45e3-9a24-23bfb312e631", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:41 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "61" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2b1ae469bbc19462962014d1cbfa5e93", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "00aabef7-29fc-4f7b-8641-ad5c639b5e58", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:42 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "65" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c21fd95630f122e97a9b818746fec62e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ae4efdbe-fbb7-4fbf-81b9-b5bdfc06baf5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:43 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2725f84aa75d91ef9e76bba045aaca8d", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "26ccbc0f-bf2e-469d-8795-5716d59c4f0c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:45 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "589582baded33935faf8b0263ada4d98", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f84411c2-e796-46c8-87ae-aebdd0ee486a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:47 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d386e55a36d4ae35e98e237b7449ddd0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d18542ff-08d0-40e7-a497-84a0d22e684f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:48 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c4cdf3d06d686c5bc3ec2c65f7c956c3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "19fab11b-f326-40a8-bae3-2584b2c05315", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:49 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5f452328f72383b84ce66e44bab9c4b1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4e9bc2ff-e0b4-49a3-af6f-60ed5eb8b3ef", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:50 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4655e01b890ded2f8a1a0fe80acfb720", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3b73a6af-2b79-43b4-9c48-0c49064d5925", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:51 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "505260377d03d8ad3b497782fe16b109", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "94bcc50a-7249-47a0-83a0-69470eddcdbb", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:53 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "61" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "174a7b270f739fb5f458d508e7cf797c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f5eb84bd-af60-4f8a-9322-677c998337ef", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:54 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5a0d4d2f73679dae327c0bc411adee74", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b0ed713b-854c-423d-935f-b0a9fb828b7f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:55 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8ec10668a08527adaab35caba8a4f16b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e566e86e-3fe3-4023-8833-a33255cc1cf8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:56 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b052fbd05708b3a2cdade4f604f18d46", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c5f70b85-c56d-409a-ba2f-f673b0b754e4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:57 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e19f6069ea0e8ff7a0e5b0b31702f58e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "60247647-12f3-47ee-8d67-e01e2aa2d905", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:45:59 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "63" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "16f39f8b3d5a116b640dc1d8bbb623b8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3af8e3af-914b-432d-baf4-610955dc3c85", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:46:00 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "474115251004e55c03c31023a6ee9cca", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "acfabcf0-0342-4293-a213-15a98d2f9044", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:46:01 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "646b55b777fd2cecf58e7c01291fd3e9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "22cc435e-c075-4f1a-96a7-26b58877dd0a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:46:03 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "62" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "018ef7c2adc17b89430e12972d486a75", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "7d31494d-da9d-4d26-af94-b3c1661ea968", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:46:04 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "52" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "6520f670be4aadba29155276935bbbe3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0f460421-7736-4655-af06-05519680e5e1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:46:05 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "74" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "af6026ef9b600a08ccf021ef6454fead", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ef8fe287-6c3d-45ab-9ebc-817c76d6daa4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:46:06 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "329006236dff039f3de0d7ac5a13e8e8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8fe5bf30-7179-429b-b1d3-740dfd329842", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:46:07 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "06a72f52bbe7d515ee15995a9dcb49d5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cd045bc2-a8cf-4699-93ab-591bbb61dcf6", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:46:09 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8c53a51688ca81e4875d717fc45cafb8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "332eb37d-38a9-4657-8b89-fae710e1c35b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:46:10 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "359c3808f8ad67c5f1bb44e9d4446572", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a7df4ac9-f7e3-446d-acdd-8d28f88572a9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:46:11 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "66" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b59602975bc0ca1d4a257f894a961191", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "161695db-c184-4ae6-b8ae-55a0a35b60f3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:46:12 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "6552e166132e1d28dfeb9b0e44faad42", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c6617db3-ab73-41ae-834c-5342f323673a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:46:13 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "52" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c2e8fff7fac6acf81ad2ea87783c1d5a", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9efe1984-542f-41f7-8fd1-916e5236c045", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:46:14 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "52" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f283b3aa00f28343d978d6d4c00f8550", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f2401c0c-0dc2-49b8-bd18-efed2b30b2f5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:46:16 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4a913c774ead6bcbe9a54a5c28a0a4a3", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3df61d4d-d4d0-4df4-9ae3-cd9decc8ae01", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:46:17 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "916440cebb76f74fbc64e84d2423eb0b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "087b1439-e398-4358-890f-241dbc49a771", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:46:18 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "3b0f9a4cd2aa5bade717094db6e65a39", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "317cfad3-b86d-486d-a4c1-80f4ebb68f4f", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:46:20 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "800532d3f4abbcd9ed9a8d48667d47c5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4132ebac-7ca3-423f-ab59-013f21aac72d", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:46:21 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8d103eb96990fcf89308a95fb10240d6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "460351c8-ec95-4ce5-9a91-98f0a7fd4eac", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:46:22 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f17aae096b1e5760c1534e104464f469", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "12890b0a-5a55-40f6-81f2-fc54593b4a73", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:46:23 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "779344d0cdd56aa93a09eda24b790bea", + "x-ms-client-request-id": "18bc34d3fac96f07795003b695878341", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c3e032a4-829e-4e37-9a2c-0c497740c12a", + "apim-request-id": "d5225d4c-348a-4c9a-9a86-9d2e4d148b9f", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:46:25 GMT", + "Date": "Thu, 12 Nov 2020 00:05:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "178" + "x-envoy-upstream-service-time": "102" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "ebfd0f20-ce47-4c98-bdf5-4682c5e03d6d_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:44:15Z", - "createdDateTime": "2020-11-10T16:44:15Z", - "expirationDateTime": "2020-11-11T16:44:15Z", + "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:04:38Z", + "createdDateTime": "2020-11-12T00:04:37Z", + "expirationDateTime": "2020-11-13T00:04:37Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15Z" + "lastUpdateDateTime": "2020-11-12T00:04:38Z" }, "completed": 1, "failed": 0, @@ -5082,7 +2166,7 @@ "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-10T16:44:15.3188337Z", + "lastUpdateDateTime": "2020-11-12T00:04:38.4236181Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json index 60ff8bee739cb..51a6307d5a803 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json @@ -11,10 +11,10 @@ "Content-Length": "265", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "00-e92d632eed359f49871b8dddc95bb19e-5879c3c95fba8541-00", - "traceparent": "00-e92d632eed359f49871b8dddc95bb19e-5879c3c95fba8541-00", + "Request-Id": "00-eb2187d8d0a22a4baee707016cc450b7-f01a84148de8e749-00", + "traceparent": "00-eb2187d8d0a22a4baee707016cc450b7-f01a84148de8e749-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bc10ae4f3809e9b40d4f6b783fc973c7", @@ -47,18 +47,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "4c3ce51b-25c4-4c66-a3d1-7af7cf650980", - "Date": "Tue, 10 Nov 2020 21:49:16 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8eb9291d-22f7-4b47-8d75-870792ed749f_637405632000000000", + "apim-request-id": "cc3132aa-c421-4c34-b9d5-9cbc2f6a0617", + "Date": "Wed, 11 Nov 2020 23:27:44 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/06d023d4-5eab-4c1c-8f32-25109cf6647b_637406496000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "262" + "x-envoy-upstream-service-time": "312" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8eb9291d-22f7-4b47-8d75-870792ed749f_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/06d023d4-5eab-4c1c-8f32-25109cf6647b_637406496000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -66,9 +66,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|3d8ab2c9-4c65f3c47f9b89a7.", + "Request-Id": "|798d337c-426444c94be64117.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e45290396662ad6e1e38f63536f933b4", @@ -77,24 +77,24 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "971def95-2788-4a8e-9e60-046fd0ee8a37", + "apim-request-id": "01071d14-ed3f-4460-a1f7-5fb1939d5e20", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 21:52:22 GMT", + "Date": "Wed, 11 Nov 2020 23:27:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "373" + "x-envoy-upstream-service-time": "366" }, "ResponseBody": { - "jobId": "8eb9291d-22f7-4b47-8d75-870792ed749f_637405632000000000", - "lastUpdateDateTime": "2020-11-10T21:49:17Z", - "createdDateTime": "2020-11-10T21:49:16Z", - "expirationDateTime": "2020-11-11T21:49:16Z", + "jobId": "06d023d4-5eab-4c1c-8f32-25109cf6647b_637406496000000000", + "lastUpdateDateTime": "2020-11-11T23:27:45Z", + "createdDateTime": "2020-11-11T23:27:44Z", + "expirationDateTime": "2020-11-12T23:27:44Z", "status": "succeeded", "errors": [], "tasks": { "details": { - "lastUpdateDateTime": "2020-11-10T21:49:17Z" + "lastUpdateDateTime": "2020-11-11T23:27:45Z" }, "completed": 1, "failed": 0, @@ -102,7 +102,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2020-11-10T21:49:17.2442521Z", + "lastUpdateDateTime": "2020-11-11T23:27:45.4944375Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json index d365848740424..06beb0f96d129 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json @@ -8,12 +8,13 @@ "application/json", "text/json" ], - "Content-Length": "324", + "Content-Length": "336", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-587c64897780a24bbe1f4b25ed31d8cd-66292821636e674d-00", + "Request-Id": "00-529fe8196da0dd46a334d498bced16b1-3d84f1e94128ae4e-00", + "traceparent": "00-529fe8196da0dd46a334d498bced16b1-3d84f1e94128ae4e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a87cf6cc9d26e81e4ad3c40561433cdc", @@ -43,22 +44,22 @@ } ] }, - "displayName": "AnalyzeOperationTest" + "displayName": "AnalyzeOperationWithLanguageTest" }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "1e969cbc-dbe1-42a1-9207-87b6b9468512", - "Date": "Tue, 10 Nov 2020 16:34:09 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/dbee3d34-3e36-4d71-9c3a-380d85e984d2_637405632000000000", + "apim-request-id": "9b1901fe-caf1-4836-8e0b-b0d06cb83fdf", + "Date": "Thu, 12 Nov 2020 00:11:21 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e8919afe-03a2-496d-8e53-6a04448ec21d_637407360000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "54" + "x-envoy-upstream-service-time": "171" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/dbee3d34-3e36-4d71-9c3a-380d85e984d2_637405632000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e8919afe-03a2-496d-8e53-6a04448ec21d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -66,8 +67,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|fbdda08e-4dc726341c3db8aa.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "829f189700a91102b7313377687a2cfe", @@ -76,120 +78,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6c1148cc-fa53-4615-a0e1-ec55dfcd147b", + "apim-request-id": "15331f2c-d4e7-42ce-89f1-95b36a044825", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:34:10 GMT", + "Date": "Thu, 12 Nov 2020 00:11:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-envoy-upstream-service-time": "259" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "dbee3d34-3e36-4d71-9c3a-380d85e984d2_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:34:10Z", - "createdDateTime": "2020-11-10T16:34:10Z", - "expirationDateTime": "2020-11-11T16:34:10Z", - "status": "notStarted", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-10T16:34:10Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/dbee3d34-3e36-4d71-9c3a-380d85e984d2_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "84565c5816eeba49622c1ac1b6d8c94c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3f3908d1-1509-4682-8533-b68fd3c6c271", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:34:11 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "58" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "dbee3d34-3e36-4d71-9c3a-380d85e984d2_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:34:10Z", - "createdDateTime": "2020-11-10T16:34:10Z", - "expirationDateTime": "2020-11-11T16:34:10Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-10T16:34:10Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/dbee3d34-3e36-4d71-9c3a-380d85e984d2_637405632000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e6dbb519b5b4cb28f46af0f469a680d0", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9f6a8079-1d21-493f-b390-2bf83b58a127", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:34:12 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "101" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "dbee3d34-3e36-4d71-9c3a-380d85e984d2_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:34:10Z", - "createdDateTime": "2020-11-10T16:34:10Z", - "expirationDateTime": "2020-11-11T16:34:10Z", + "displayName": "AnalyzeOperationWithLanguageTest", + "jobId": "e8919afe-03a2-496d-8e53-6a04448ec21d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:11:22Z", + "createdDateTime": "2020-11-12T00:11:22Z", + "expirationDateTime": "2020-11-13T00:11:22Z", "status": "succeeded", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-10T16:34:10Z" + "name": "AnalyzeOperationWithLanguageTest", + "lastUpdateDateTime": "2020-11-12T00:11:22Z" }, "completed": 1, "failed": 0, @@ -197,8 +105,8 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-10T16:34:10.8607454Z", + "name": "AnalyzeOperationWithLanguageTest", + "lastUpdateDateTime": "2020-11-12T00:11:22.9627091Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasks.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasks.json index 048895c0e3a2b..58a440b84e43b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasks.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasks.json @@ -8,12 +8,13 @@ "application/json", "text/json" ], - "Content-Length": "465", + "Content-Length": "478", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6080981021cc7a4fad1adb707ae6e843-accc7b7aebd9cc4b-00", + "Request-Id": "00-b8d551e535fe164084957a99a7855b8f-e35078dc9dd66847-00", + "traceparent": "00-b8d551e535fe164084957a99a7855b8f-e35078dc9dd66847-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "36d74cae0543ad22b4752e104a677574", @@ -57,22 +58,22 @@ } ] }, - "displayName": "AnalyzeOperationTest" + "displayName": "AnalyzeOperationWithMultipleTasks" }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "e56e288e-3d77-4b2c-8fb2-b2354201cd33", - "Date": "Mon, 09 Nov 2020 07:54:22 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", + "apim-request-id": "94b37d99-93b9-4dab-9c7a-c59fa8d263b4", + "Date": "Thu, 12 Nov 2020 00:06:17 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "358" + "x-envoy-upstream-service-time": "169" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -80,8 +81,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af84d-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "360f939000899016ea2d36ca05142466", @@ -90,36 +92,36 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "79c2d24f-81d4-40b8-9ff4-43eff2dfb102", + "apim-request-id": "befbf09b-f18b-48aa-a60e-3e137c682d5d", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:54:22 GMT", + "Date": "Thu, 12 Nov 2020 00:06:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-envoy-upstream-service-time": "149" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:22Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", - "status": "notStarted", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:22Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 0, "failed": 0, - "inProgress": 0, - "total": 0 + "inProgress": 3, + "total": 3 } } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -127,8 +129,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af84e-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "32033b4d84a2f3a2ac913141d710299b", @@ -137,36 +140,67 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "afc30a17-a9b5-478c-a882-73f9cda8edbf", + "apim-request-id": "37c2eefc-f848-4db0-9ade-77a7871b7230", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:54:24 GMT", + "Date": "Thu, 12 Nov 2020 00:06:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "67" + "x-envoy-upstream-service-time": "183" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:22Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", - "status": "notStarted", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:22Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, - "completed": 0, + "completed": 1, "failed": 0, - "inProgress": 0, - "total": 0 + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] } } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -174,8 +208,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af84f-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f287b823979aae6e35464c16cf57a89f", @@ -184,26 +219,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6ddee911-b9ff-4366-8374-50abb52d6b3c", + "apim-request-id": "b70aab55-88c6-4b0c-b6ce-fb41e5959656", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:54:25 GMT", + "Date": "Thu, 12 Nov 2020 00:06:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "246" + "x-envoy-upstream-service-time": "151" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -211,8 +246,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -244,7 +279,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -252,8 +287,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af850-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0fc2c75142640bd1f11c89f7cfd5b8da", @@ -262,26 +298,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d8395671-1042-4b7d-8dda-93d314e1d27a", + "apim-request-id": "d4ccfd1f-a8fb-4a35-b4cd-b9c5a3b51f0d", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:54:32 GMT", + "Date": "Thu, 12 Nov 2020 00:06:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5216" + "x-envoy-upstream-service-time": "138" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -289,8 +325,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -322,7 +358,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -330,8 +366,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af851-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4da79a03318db6cbcc54fd5b388b2454", @@ -340,26 +377,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d01f426b-0b7c-4d68-ba16-52519ed9d395", + "apim-request-id": "60dddfc2-d6e8-4ad6-815b-44221b5451b4", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:54:38 GMT", + "Date": "Thu, 12 Nov 2020 00:06:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5257" + "x-envoy-upstream-service-time": "212" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -367,8 +404,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -400,7 +437,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -408,8 +445,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af852-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "10ef92e91a4de036e67c017e0d76df5f", @@ -418,26 +456,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "506cdfc1-a09f-45c3-b598-03522c2e51aa", + "apim-request-id": "ab97fbb2-6362-4c86-9f46-326a60762669", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:54:39 GMT", + "Date": "Thu, 12 Nov 2020 00:06:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "129" + "x-envoy-upstream-service-time": "126" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -445,8 +483,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -478,7 +516,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -486,8 +524,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af853-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3412728d5bb02012fb0c420f4575d365", @@ -496,26 +535,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cdbe0ff8-a514-414c-8ba4-d0224e44ece6", + "apim-request-id": "b47a569e-95dc-45e2-9af2-60a4895a0d1b", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:54:41 GMT", + "Date": "Thu, 12 Nov 2020 00:06:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "176" + "x-envoy-upstream-service-time": "130" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -523,8 +562,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -556,7 +595,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -564,8 +603,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af854-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3d0e35f7a8e5e98c63c76610304da856", @@ -574,26 +614,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0b014f8c-6e24-476c-afc5-17c0f99aa6df", + "apim-request-id": "a2ad7dc4-18a0-4242-83fd-cb79e02a132d", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:54:42 GMT", + "Date": "Thu, 12 Nov 2020 00:06:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "120" + "x-envoy-upstream-service-time": "148" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -601,8 +641,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -634,7 +674,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -642,8 +682,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af855-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c5cd9d75ef798da47fcf1441d8269b70", @@ -652,26 +693,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b43122d4-1a3d-402d-af0c-84e35d4ee658", + "apim-request-id": "bb6b4ad6-477d-439a-b3be-720a2b33c8ce", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:54:43 GMT", + "Date": "Thu, 12 Nov 2020 00:06:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "131" + "x-envoy-upstream-service-time": "147" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -679,8 +720,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -712,7 +753,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -720,8 +761,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af856-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d8869ca8a267e579e629d0e8f401f0ae", @@ -730,26 +772,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2a7c22e3-e146-4a82-87f7-0b845dc46fa9", + "apim-request-id": "71c8403a-5531-442f-a253-72f0065c1458", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:54:50 GMT", + "Date": "Thu, 12 Nov 2020 00:06:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5197" + "x-envoy-upstream-service-time": "171" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -757,8 +799,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -790,7 +832,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -798,8 +840,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af857-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a79aeb630da808eb9080bd16944a103c", @@ -808,26 +851,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c58618e1-877a-4142-b081-a669fa58853c", + "apim-request-id": "4a0ff40e-284e-4303-8de6-0a586b87f927", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:54:51 GMT", + "Date": "Thu, 12 Nov 2020 00:06:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "149" + "x-envoy-upstream-service-time": "128" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -835,8 +878,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -868,7 +911,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -876,8 +919,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af858-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9368f62bd0c6d3ee23e8df501fbb997e", @@ -886,26 +930,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c64832fc-1cb2-4e16-a31f-956adc0d5b9f", + "apim-request-id": "03f95b62-1e19-4c20-82da-31e95476f01b", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:54:52 GMT", + "Date": "Thu, 12 Nov 2020 00:06:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "102" + "x-envoy-upstream-service-time": "128" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -913,8 +957,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -946,7 +990,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -954,8 +998,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af859-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ecde66dff38c9bc8b17e47e7e563509b", @@ -964,26 +1009,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "75ea978f-7ae8-443a-8417-407ad3d38991", + "apim-request-id": "1f48dd0c-d4e9-43d4-929c-616a9e67d965", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:54:54 GMT", + "Date": "Thu, 12 Nov 2020 00:06:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "119" + "x-envoy-upstream-service-time": "180" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -991,8 +1036,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -1024,7 +1069,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1032,8 +1077,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af85a-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "febd93185c9993e7fdc784bf2d9ae8d4", @@ -1042,26 +1088,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9ef1239c-dde2-4f97-864e-030bec7bcc21", + "apim-request-id": "f4e8104c-82b7-46b2-a5cd-1511236720ba", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:54:55 GMT", + "Date": "Thu, 12 Nov 2020 00:06:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "131" + "x-envoy-upstream-service-time": "157" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -1069,8 +1115,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -1102,7 +1148,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1110,8 +1156,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af85b-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2e363ee7236b38b02ecce2488807edc0", @@ -1120,26 +1167,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2fdbe73a-f5e8-431a-8766-943dec0cf8d1", + "apim-request-id": "d0512ba7-3ae3-4641-ac09-3182abf8926c", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:54:56 GMT", + "Date": "Thu, 12 Nov 2020 00:06:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "128" + "x-envoy-upstream-service-time": "130" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -1147,8 +1194,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -1180,7 +1227,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1188,8 +1235,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af85c-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8b3844989bfe83e57f4befc46f086d16", @@ -1198,26 +1246,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "03ec938c-8cda-4b6e-b877-7000bb7b6553", + "apim-request-id": "aae12f05-71a4-40a1-a7e0-0c63cd9f14dc", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:54:57 GMT", + "Date": "Thu, 12 Nov 2020 00:06:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "136" + "x-envoy-upstream-service-time": "127" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -1225,8 +1273,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -1258,7 +1306,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1266,8 +1314,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af85d-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a6ff7395222cf430e384cfcc7a9e0af5", @@ -1276,26 +1325,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3d6c094c-3f73-4cb5-a658-3c6fd4fd656c", + "apim-request-id": "0e330d12-b432-4691-89a5-695498b95c16", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:54:59 GMT", + "Date": "Thu, 12 Nov 2020 00:06:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "123" + "x-envoy-upstream-service-time": "126" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -1303,8 +1352,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -1336,7 +1385,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1344,8 +1393,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af85e-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e927c4d95d624cd658b3af2033ebc925", @@ -1354,26 +1404,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5286f82f-9536-460c-945c-00ee76a8e9a7", + "apim-request-id": "798905a7-6623-48d7-a577-8fc786894a61", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:55:00 GMT", + "Date": "Thu, 12 Nov 2020 00:06:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "175" + "x-envoy-upstream-service-time": "131" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -1381,8 +1431,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -1414,7 +1464,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1422,8 +1472,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af85f-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "15b2cc5e470775931443a779cb1908e0", @@ -1432,26 +1483,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "be51ccce-e093-4dc7-b5f2-9150c2dcada2", + "apim-request-id": "6401f222-9a18-4c82-ba75-3f55bb08cec6", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:55:02 GMT", + "Date": "Thu, 12 Nov 2020 00:06:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "102" + "x-envoy-upstream-service-time": "135" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -1459,8 +1510,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -1492,7 +1543,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1500,8 +1551,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af860-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "aaeaf94084e038b39db34d79720fc1f7", @@ -1510,26 +1562,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8ba8d66c-b949-4d20-b8a8-768053890460", + "apim-request-id": "78428689-d05b-4b3d-ba52-117856765adf", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:55:08 GMT", + "Date": "Thu, 12 Nov 2020 00:06:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5138" + "x-envoy-upstream-service-time": "128" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -1537,8 +1589,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -1570,7 +1622,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1578,8 +1630,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af861-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ae6daabbf5eb92ee30b1d51fb55c813f", @@ -1588,26 +1641,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "88907c5b-673a-4b89-9c1f-31fbe58b478f", + "apim-request-id": "e8a8dbea-39b3-4d49-82d1-cd3dcd5d8e86", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:55:09 GMT", + "Date": "Thu, 12 Nov 2020 00:06:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "135" + "x-envoy-upstream-service-time": "165" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -1615,8 +1668,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -1648,7 +1701,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1656,8 +1709,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af862-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3adfceaa1e00da44187a7854f91a0204", @@ -1666,26 +1720,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "668212e2-de22-49b4-b8c2-965b91ac8a53", + "apim-request-id": "b78cf6e3-bb37-431a-9ea4-e98b6a056a46", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:55:10 GMT", + "Date": "Thu, 12 Nov 2020 00:06:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "133" + "x-envoy-upstream-service-time": "119" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -1693,8 +1747,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -1726,7 +1780,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1734,8 +1788,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af863-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "20beb0825aab4af40b58792fae948240", @@ -1744,26 +1799,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c9c816da-f303-43e5-8250-f8b2b3f94ac4", + "apim-request-id": "1e44e5cb-6e71-4685-8d3d-739f44fb67f5", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:55:12 GMT", + "Date": "Thu, 12 Nov 2020 00:06:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "134" + "x-envoy-upstream-service-time": "161" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -1771,8 +1826,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -1804,7 +1859,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1812,8 +1867,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af864-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a3ce0e3286309cf6659295717d9a9916", @@ -1822,26 +1878,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8890f75c-d080-4631-905e-65a7fdd773cd", + "apim-request-id": "0878cdf2-faaf-44a7-a704-0e872f54b55c", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:55:13 GMT", + "Date": "Thu, 12 Nov 2020 00:06:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "111" + "x-envoy-upstream-service-time": "133" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -1849,8 +1905,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -1882,7 +1938,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1890,8 +1946,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af865-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "059dd1ae609d4f93da942ea8a4152b84", @@ -1900,26 +1957,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "37cf7e22-3251-4705-97d5-1149172abda6", + "apim-request-id": "430cf8e7-cdd9-47ac-b859-d2e09421cb70", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:55:14 GMT", + "Date": "Thu, 12 Nov 2020 00:06:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "107" + "x-envoy-upstream-service-time": "166" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -1927,8 +1984,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -1960,7 +2017,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1968,8 +2025,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af866-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ea2137f85e4bfbd4b922bb18c583cc71", @@ -1978,26 +2036,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5aaed294-a686-4e64-8768-c42371fc2676", + "apim-request-id": "79b8fdb6-7e21-4823-a4a3-f65c07d83f84", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:55:16 GMT", + "Date": "Thu, 12 Nov 2020 00:06:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "109" + "x-envoy-upstream-service-time": "150" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -2005,8 +2063,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -2038,7 +2096,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2046,8 +2104,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af867-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "dd8063bf7df6d2a37a7ec99b584ef74f", @@ -2056,26 +2115,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b60a059f-0382-4309-a6c7-c56321e3fbb3", + "apim-request-id": "8c919af5-8ba9-4243-b304-4c9add0c9c84", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:55:17 GMT", + "Date": "Thu, 12 Nov 2020 00:06:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "109" + "x-envoy-upstream-service-time": "154" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -2083,8 +2142,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -2116,7 +2175,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2124,8 +2183,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af868-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "46791167ae784fcafca14b7ba47b8a57", @@ -2134,26 +2194,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a5dae933-eda8-40b9-a0ac-604b97a87736", + "apim-request-id": "978d2375-5483-4d98-89ad-38c93cf91888", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:55:18 GMT", + "Date": "Thu, 12 Nov 2020 00:07:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "126" + "x-envoy-upstream-service-time": "144" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -2161,8 +2221,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -2194,7 +2254,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2202,8 +2262,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af869-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "41e9bdc74d957a8d934f70cd9539a36b", @@ -2212,26 +2273,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fccefc49-fcd8-4ebf-b778-c896a8241922", + "apim-request-id": "a2ded01c-8343-473a-bedf-a6670242797f", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:55:20 GMT", + "Date": "Thu, 12 Nov 2020 00:07:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "162" + "x-envoy-upstream-service-time": "164" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -2239,8 +2300,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -2272,7 +2333,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2280,8 +2341,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af86a-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b3b16b2a860a10f99830e15432272dff", @@ -2290,26 +2352,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "717d40c1-57e1-491a-a01e-95635d67044a", + "apim-request-id": "7a28dd7e-cda1-4b0b-b955-8f77b8908d8a", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:55:21 GMT", + "Date": "Thu, 12 Nov 2020 00:07:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "154" + "x-envoy-upstream-service-time": "160" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -2317,8 +2379,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -2350,7 +2412,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2358,8 +2420,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af86b-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9ad372f3b66519ba84feb2283dfdbac3", @@ -2368,26 +2431,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8c84c586-5b1c-400f-b14a-657186701464", + "apim-request-id": "d625159e-8e3d-4de0-8bcb-41a383017947", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:55:22 GMT", + "Date": "Thu, 12 Nov 2020 00:07:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "101" + "x-envoy-upstream-service-time": "129" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -2395,8 +2458,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -2428,7 +2491,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2436,8 +2499,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af86c-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3851dffed7c9414cc4d8a9646c38486b", @@ -2446,26 +2510,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d6b1f56a-f3ae-40fc-9c9f-34d85ea30ec1", + "apim-request-id": "dac6a888-4281-4f70-845f-e6029ae275ec", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:55:29 GMT", + "Date": "Thu, 12 Nov 2020 00:07:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5146" + "x-envoy-upstream-service-time": "137" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -2473,8 +2537,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -2506,7 +2570,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2514,8 +2578,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af86d-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "22d9702208667306b1982f0bd3d1d29a", @@ -2524,26 +2589,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "347416fa-a11c-4a1e-a3db-0141dbdab719", + "apim-request-id": "f7ae6f63-3f8d-4978-b673-60483b3cfff8", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:55:30 GMT", + "Date": "Thu, 12 Nov 2020 00:07:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "142" + "x-envoy-upstream-service-time": "134" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 1, "failed": 0, @@ -2551,8 +2616,8 @@ "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -2584,7 +2649,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2592,8 +2657,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af86e-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "52561d75f4d61c352591d68d0d55ac4c", @@ -2602,104 +2668,35 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "92ffc3e3-5929-4a09-b17e-347b9a4cc2c8", + "apim-request-id": "31b3ad2f-59ef-4453-9110-1aea41ddb460", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:55:31 GMT", + "Date": "Thu, 12 Nov 2020 00:07:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "189" + "x-envoy-upstream-service-time": "197" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionTasks": [ - { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "Mi", - "category": "DateTime", - "subcategory": "Date", - "offset": 0, - "length": 2, - "confidenceScore": 0.8 - }, - { - "text": "mi", - "category": "DateTime", - "subcategory": "Date", - "offset": 11, - "length": 2, - "confidenceScore": 0.8 - }, - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.52 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ], "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -2731,7 +2728,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2739,8 +2736,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af86f-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cd0546b59724f55dd9dd8731a7416df3", @@ -2749,104 +2747,114 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "25db7ce3-b560-4217-8118-d423f7518dbf", + "apim-request-id": "d33b7518-a2b2-4a8b-8907-9ceafac4c982", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:55:33 GMT", + "Date": "Thu, 12 Nov 2020 00:07:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "250" + "x-envoy-upstream-service-time": "116" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionTasks": [ + "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ { "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" ], "warnings": [] }, { "id": "2", - "entities": [ - { - "text": "Mi", - "category": "DateTime", - "subcategory": "Date", - "offset": 0, - "length": 2, - "confidenceScore": 0.8 - }, - { - "text": "mi", - "category": "DateTime", - "subcategory": "Date", - "offset": 11, - "length": 2, - "confidenceScore": 0.8 - }, - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.52 - } + "keyPhrases": [ + "gato", + "perro", + "veterinario" ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-04-01" + "modelVersion": "2020-07-01" } } - ], + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af870-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4fee0e05f6e12d953abcfdd43278665b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a6aece72-bb7d-427f-b36a-c2c8939d9032", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "119" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -2878,7 +2886,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2886,62 +2894,5797 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af871-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "4fee0e05f6e12d953abcfdd43278665b", + "x-ms-client-request-id": "8c55e2eb05cbde76c06078f86c0475e4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "376d0702-7bb4-466e-afa2-31d118f3af38", + "apim-request-id": "e20ef13b-741f-41a1-97e5-5c9ff4a2fb92", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:55:34 GMT", + "Date": "Thu, 12 Nov 2020 00:07:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "158" + "x-envoy-upstream-service-time": "139" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionTasks": [ + "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ { "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af872-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ff87e3235d67bf6ab1d892679a88c360", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c1f8d7bf-8fbc-42fe-9cc2-cb33fc0d86c5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "161" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af873-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c4462c77e1ebff2897108e817d9cc036", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3a49a0c1-18e7-4484-ac62-e2d7dfd2319d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "196" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af874-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4eb1184767f18df47896dbf2730f4437", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5fa44448-ba64-4e7a-aeeb-ead5350608f5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "137" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af875-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4081179cb0be42f9bb886756cfe84114", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e79c453f-284c-46e9-b324-e190853a166b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "113" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af876-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "81205b1774d7106f38b84c5505358b88", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9add6da0-3e6c-4fcc-a5e4-c22e29a0500a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "165" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af877-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "66e556cc801b97781f6e9368ff9dbe90", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f2f3cf48-f01b-4131-9f41-ab689712f8ac", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "139" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af878-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "17dbc754c2ee2760a770070563a43d85", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c65a4a53-2e80-4705-86cd-08634b7eed08", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "134" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af879-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "788adefcdb0397f8e3886169e107109b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "13dafe5b-7c50-4d7f-b71c-0d60c5880c3f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "162" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af87a-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3e00bcfa73590999f6bdbeab7872337b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "81ab8ad3-1c9e-415f-89c7-0f7d06a80360", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "120" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af87b-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "206b0d314612788cce44346561f646a0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1c90024c-3af2-4cfc-aa99-175378579f21", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "134" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af87c-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a70a6c5ffea3892b458081461d4d1e71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "84692f24-7c0e-40ae-a352-eb7c73b88d91", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "270" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af87d-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d337e555ef9bb4882f8770153f33a8ff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5b11a7f8-9f01-4e12-9d6e-79efa15406e3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "153" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af87e-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0b4b1d768b6732d8e1e2db92c4465b80", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5642b06f-d85f-44fb-97ed-88f5c261f098", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "411" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af87f-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7b10c32573be7005e456781b8e164911", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fc881c3c-3348-46ba-b77a-f0ca623c9853", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "170" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af880-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ffcf81d81202c9090d05f1b814f6efe8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1ec32afb-790d-456a-8afd-6ed40647c4e5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "174" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af881-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7cf0ef2c2c23034018db271113bca3cb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d6ce5253-2ec1-4fb7-a9b2-a11a1496303d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "192" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af882-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "43b9ca985b77127db9476db9814c5bee", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f6fe916f-8d18-47af-a6a7-06332fbd7282", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "199" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af883-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9eef8f66cd25aced40cbe727ebf8b551", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2961bd67-7e21-4a69-8d93-a02537f6193b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "193" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af884-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4a202662ac3cd07172ddc2dcbe8782cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "eca85469-052e-485c-b04a-92d8a5ae5ca6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "166" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af885-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "84aa387f04cccba5dc0d02ab745526c1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d2c1f78c-cf21-4c3f-8790-a5635ea3a6c5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "211" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af886-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "5b571c91112cbab11d1f2c480b11edb8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "70da97aa-b7c0-46fa-b7e2-c92262764c32", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "166" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af887-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b3a81b49314e5d8580546d2fa9c65b1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d445d6ca-19c1-4bf1-b01f-5edac7064c75", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "176" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af888-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a24a00b726306da086ef66add75dc0ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e75a22e1-c573-4817-a67a-c7bf6dc2f46c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "161" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af889-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "59614a1f73ad5f7397f9dad7a4811156", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f0255544-76be-4fa9-9f63-1c126f5fe93b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "175" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af88a-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0a9110c34ac623887a3a2c5ecad88522", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dc4f9570-d773-4290-8e70-c9730c24c440", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "196" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af88b-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "5f10a2940265436f8deb0b364bc8c905", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5eea206e-57f9-4b81-8a60-42dc0c5d4e91", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "222" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af88c-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c7e910deb5ccd404c13ede72461494bf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b4540a69-2f8b-491b-ab43-68a60ef7ee18", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "160" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af88d-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0142b773b171c1f1a14d7ddb3f51d7b2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f98047d7-02dc-4c9f-8e54-4d0fbf1e58b2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "154" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af88e-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ba802770beeedf569e3b9d2723fcfd78", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "32baa863-b10f-45a2-9a59-d8a12ef96736", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "166" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af88f-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "93c24c56c8852c931f27267f37289570", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bfa8ac67-097b-4c4c-a075-39fc9349575b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "173" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af890-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1f012c66da94b5d06163633614c99da4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "41b51394-4dbe-408d-9330-6bf8c508a545", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "204" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af891-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f3850550438ea82c94539bc698d7a775", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c4f8b14d-ca2e-455b-9972-16b150d3d7bc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "166" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af892-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f7c02da6defa7be37b0d3222655d1855", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1a87dfa8-32db-4e77-94c2-f2541007827c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "188" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af893-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "322e818aa1a323e1ff598b413e091d8a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2b1b9605-5a8e-461f-9d73-615f000e644e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:07:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "171" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af894-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e68fedbba60972a921097881110a4336", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "861f0ae7-e32c-4d97-8436-8627a80361bf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:08:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "164" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af895-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "163c463b75a804d14b9cf7a152a23c71", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a4553dd7-749b-4a00-a185-aa29ead43e25", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:08:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "388" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af896-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7766a8ef31cde44bd7bc109a296012f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6b55bcb4-292a-4976-9173-94fed9a3f4b0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:08:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "173" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af897-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f806541507cc46e11c8a9b6cae071f7f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8a5bf377-2f47-450d-9491-0ea8d6e117ce", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:08:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "249" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af898-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "689106cccca30969fa583eeb6536dbeb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cf76ac79-f18f-4042-9f00-3dda82d5b755", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:08:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "184" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af899-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "fe8c028a449be8a4c6205a4295df35cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6eec08dc-ba8c-4dd8-8233-d56b5ce03bd6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:08:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "162" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af89a-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "23ce909da9cf4952ebfcfe74c8f5e1e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d4583bd8-2eb0-4d5a-ac1e-46fb01204cc2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:08:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "187" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af89b-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ace2b0af207b87e361a8a2837126731b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e252a29a-60af-4551-a324-442cbccfa69f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:08:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "193" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af89c-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d44e6e22b868e11baf42139f463020d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a7875a2c-6636-4d35-8227-29af6e0307c1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:08:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "171" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af89d-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e593743e89fc7d54ac46c12607ced8c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cc189029-a4ad-47f3-ba30-af705d6599e8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:08:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "169" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af89e-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "5951e2890ca7f67d9401fc390d444130", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b03c26b9-b206-4ab2-86b4-eb09848e882b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:08:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "193" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af89f-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "fc44d1888e92981e1ad12821f6f5d9e1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d83194d6-5c73-4975-bfdd-d98d8df205a2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:08:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "231" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af8a0-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "63164e6ac6de3128f79d51fb8d1b7067", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "19e5f6d8-7625-4405-8924-0a0d1d58a2e0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:08:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "172" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af8a1-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "359d9105db89fa32c3b93fd6e45cff9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3bf58f6b-c463-4b95-bdf4-60fd113d9acc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:08:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "164" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af8a2-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "bece1a27dd2ec151a81305f43d220aff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "08d79de0-45f5-453c-a8af-92d1de614d20", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:08:20 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "194" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, "length": 10, "confidenceScore": 0.85 }, @@ -2954,46 +8697,153 @@ } ], "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] }, { "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af8a3-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "651bc061a4578e571b1b9f2587514d9a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1cee09cc-4f60-4bde-8d84-bcffbc79eaed", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:08:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "179" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", "entities": [ { - "text": "Mi", - "category": "DateTime", - "subcategory": "Date", + "text": "Microsoft", + "category": "Organization", "offset": 0, - "length": 2, - "confidenceScore": 0.8 + "length": 9, + "confidenceScore": 0.83 }, { - "text": "mi", - "category": "DateTime", - "subcategory": "Date", - "offset": 11, - "length": 2, - "confidenceScore": 0.8 + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 }, { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.52 + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 } ], "warnings": [] } ], - "errors": [], - "modelVersion": "2020-04-01" + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" } } ], "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -3025,7 +8875,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3033,49 +8883,51 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af8a4-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "8c55e2eb05cbde76c06078f86c0475e4", + "x-ms-client-request-id": "73d4b29db14c27393fdc8c76d63ebda1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8b477ae6-66db-4f81-9f82-6267f42bc7c0", + "apim-request-id": "9b462d81-7c5d-49cb-89ee-981a9f3dda22", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:55:36 GMT", + "Date": "Thu, 12 Nov 2020 00:08:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "174" + "x-envoy-upstream-service-time": "193" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "running", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionTasks": [ + "entityRecognitionPiiTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ { + "redactedText": "", "id": "1", "entities": [ { @@ -3101,46 +8953,153 @@ } ], "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] }, { "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af8a5-49e21189d89a0179.", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "24753fae9a408347c33fa2133d2c3956", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3ccfe5f0-1742-4ad3-8ade-672a63be61f4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 00:08:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "227" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "", + "id": "1", "entities": [ { - "text": "Mi", - "category": "DateTime", - "subcategory": "Date", + "text": "Microsoft", + "category": "Organization", "offset": 0, - "length": 2, - "confidenceScore": 0.8 + "length": 9, + "confidenceScore": 0.83 }, { - "text": "mi", - "category": "DateTime", - "subcategory": "Date", - "offset": 11, - "length": 2, - "confidenceScore": 0.8 + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 }, { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.52 + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 } ], "warnings": [] } ], - "errors": [], - "modelVersion": "2020-04-01" + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" } } ], "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -3172,7 +9131,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3180,36 +9139,37 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|975af8a6-49e21189d89a0179.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201108.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ff87e3235d67bf6ab1d892679a88c360", + "x-ms-client-request-id": "8a566ac5974eafb387f4267b17e1b8dd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2e5a59b5-2730-4a9e-b773-6ebeaaeebb08", + "apim-request-id": "0dac10dd-ca94-49c0-a901-4e33cc061b53", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 07:55:37 GMT", + "Date": "Thu, 12 Nov 2020 00:08:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "201" + "x-envoy-upstream-service-time": "216" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "2c681642-aa22-409f-947a-05a01a0e6b0c_637404768000000000", - "lastUpdateDateTime": "2020-11-09T07:54:24Z", - "createdDateTime": "2020-11-09T07:54:22Z", - "expirationDateTime": "2020-11-11T07:54:22Z", + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:06:17Z", + "createdDateTime": "2020-11-12T00:06:17Z", + "expirationDateTime": "2020-11-13T00:06:17Z", "status": "succeeded", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24Z" + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17Z" }, "completed": 3, "failed": 0, @@ -3217,8 +9177,8 @@ "total": 3, "entityRecognitionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -3286,8 +9246,8 @@ ], "entityRecognitionPiiTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ @@ -3335,8 +9295,8 @@ ], "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T07:54:24.698594Z", + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithTopParameter.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithTopParameter.json index db3c72c8e5391..2967e85ad3158 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithTopParameter.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithTopParameter.json @@ -11,9 +11,10 @@ "Content-Length": "315", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f45c64c854a4a54ab6cf61f0c552081f-10f4347c96f8cc48-00", + "Request-Id": "00-59dc84ef23ecbf4f85e9e759a04c7f54-3daf6c99d323d746-00", + "traceparent": "00-59dc84ef23ecbf4f85e9e759a04c7f54-3daf6c99d323d746-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f5a0428665082c595c1d3b6d579c7b27", @@ -47,18 +48,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "ace99ccd-a655-42aa-84ef-9474ac1b8eb5", - "Date": "Tue, 10 Nov 2020 16:46:29 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/98d1d723-11d3-4585-9e25-6c4c8ab9e295_637405632000000000", + "apim-request-id": "c72fc51f-a9d5-49b7-aa1c-ceb1bac6da51", + "Date": "Thu, 12 Nov 2020 00:10:57 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a87f3cb4-197a-4862-bbfc-79654d5039ae_637407360000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "75" + "x-envoy-upstream-service-time": "288" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/98d1d723-11d3-4585-9e25-6c4c8ab9e295_637405632000000000?showStats=false\u0026$top=1", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a87f3cb4-197a-4862-bbfc-79654d5039ae_637407360000000000?showStats=false\u0026$top=1", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -66,8 +67,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|73151a50-44c5cabff455e21b.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "553c2e9c301fafa2ce30174e56a7aeb6", @@ -76,26 +78,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3642fea4-8aa8-4382-b9e5-4d1f884b8a97", + "apim-request-id": "34e3d08c-d218-4577-a87e-e4b7db3dc772", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:46:29 GMT", + "Date": "Thu, 12 Nov 2020 00:11:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "149" }, "ResponseBody": { "displayName": "AnalyzeOperationWithSkipParameter", - "jobId": "98d1d723-11d3-4585-9e25-6c4c8ab9e295_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:46:30Z", - "createdDateTime": "2020-11-10T16:46:30Z", - "expirationDateTime": "2020-11-11T16:46:30Z", + "jobId": "a87f3cb4-197a-4862-bbfc-79654d5039ae_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:10:58Z", + "createdDateTime": "2020-11-12T00:10:57Z", + "expirationDateTime": "2020-11-13T00:10:57Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithSkipParameter", - "lastUpdateDateTime": "2020-11-10T16:46:30Z" + "lastUpdateDateTime": "2020-11-12T00:10:58Z" }, "completed": 0, "failed": 0, @@ -105,7 +107,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/98d1d723-11d3-4585-9e25-6c4c8ab9e295_637405632000000000?showStats=false\u0026$top=1", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a87f3cb4-197a-4862-bbfc-79654d5039ae_637407360000000000?showStats=false\u0026$top=1", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -113,8 +115,9 @@ "text/json" ], "Ocp-Apim-Subscription-Key": "Sanitized", + "Request-Id": "|73151a51-44c5cabff455e21b.", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ef89b7f4fba1a676b9ada33b769d705d", @@ -123,167 +126,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5bbf6b0f-a0fd-41ea-a47a-ed0dc9b9555c", + "apim-request-id": "9c88cb28-1b84-49df-9999-b2ffbc3cc6bd", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:46:31 GMT", + "Date": "Thu, 12 Nov 2020 00:11:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "223" }, "ResponseBody": { "displayName": "AnalyzeOperationWithSkipParameter", - "jobId": "98d1d723-11d3-4585-9e25-6c4c8ab9e295_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:46:30Z", - "createdDateTime": "2020-11-10T16:46:30Z", - "expirationDateTime": "2020-11-11T16:46:30Z", - "status": "notStarted", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithSkipParameter", - "lastUpdateDateTime": "2020-11-10T16:46:30Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/98d1d723-11d3-4585-9e25-6c4c8ab9e295_637405632000000000?showStats=false\u0026$top=1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5101bd37175355c39ff126d84e0bd6b5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c2a9cd38-b78e-41ad-8571-69594cc088c2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:46:32 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithSkipParameter", - "jobId": "98d1d723-11d3-4585-9e25-6c4c8ab9e295_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:46:30Z", - "createdDateTime": "2020-11-10T16:46:30Z", - "expirationDateTime": "2020-11-11T16:46:30Z", - "status": "notStarted", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithSkipParameter", - "lastUpdateDateTime": "2020-11-10T16:46:30Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/98d1d723-11d3-4585-9e25-6c4c8ab9e295_637405632000000000?showStats=false\u0026$top=1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a079846f8c12a185b7959b718d673830", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ce130bb1-5923-4103-94ad-146bc7863b8b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:46:33 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithSkipParameter", - "jobId": "98d1d723-11d3-4585-9e25-6c4c8ab9e295_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:46:30Z", - "createdDateTime": "2020-11-10T16:46:30Z", - "expirationDateTime": "2020-11-11T16:46:30Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithSkipParameter", - "lastUpdateDateTime": "2020-11-10T16:46:30Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/98d1d723-11d3-4585-9e25-6c4c8ab9e295_637405632000000000?showStats=false\u0026$top=1", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9817b9bf5ca6dc63f4334fb0d49e58ae", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c0e4fdc2-38a4-44db-952c-1413bb599f4b", - "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 16:46:34 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "96" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithSkipParameter", - "jobId": "98d1d723-11d3-4585-9e25-6c4c8ab9e295_637405632000000000", - "lastUpdateDateTime": "2020-11-10T16:46:30Z", - "createdDateTime": "2020-11-10T16:46:30Z", - "expirationDateTime": "2020-11-11T16:46:30Z", + "jobId": "a87f3cb4-197a-4862-bbfc-79654d5039ae_637407360000000000", + "lastUpdateDateTime": "2020-11-12T00:10:58Z", + "createdDateTime": "2020-11-12T00:10:57Z", + "expirationDateTime": "2020-11-13T00:10:57Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithSkipParameter", - "lastUpdateDateTime": "2020-11-10T16:46:30Z" + "lastUpdateDateTime": "2020-11-12T00:10:58Z" }, "completed": 1, "failed": 0, @@ -292,7 +154,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithSkipParameter", - "lastUpdateDateTime": "2020-11-10T16:46:30.4396217Z", + "lastUpdateDateTime": "2020-11-12T00:10:58.1748106Z", "results": { "inTerminalState": true, "documents": [ @@ -308,12 +170,12 @@ ], "errors": [], "modelVersion": "2020-07-01", - "@nextLink": "http://svc--textanalyticsdispatcher.text-analytics.svc.cluster.local/text/analytics/v3.1-preview.3/jobs/910c2a56-71e7-4fe5-9e70-79d169ac7f3d?$skip=1\u0026$top=1" + "@nextLink": "http://svc--textanalyticsdispatcher.text-analytics.svc.cluster.local/text/analytics/v3.1-preview.3/jobs/d61728df-c8e4-4b46-8a70-c953338f3942?$skip=1\u0026$top=1" } } ] }, - "nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/98d1d723-11d3-4585-9e25-6c4c8ab9e295_637405632000000000?$skip=1\u0026$top=1" + "nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a87f3cb4-197a-4862-bbfc-79654d5039ae_637407360000000000?$skip=1\u0026$top=1" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperation.cs index 0f5e29c1453da..82d8310681eb2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperation.cs @@ -53,11 +53,11 @@ public async Task AnalyzeOperation() AnalyzeOperationResult resultCollection = operation.Value; - RecognizeEntitiesResultCollection entitiesResult = resultCollection.EntitiesResult; + RecognizeEntitiesResultCollection entitiesResult = resultCollection.Tasks.EntityRecognitionTasks[0].Results; - ExtractKeyPhrasesResultCollection keyPhrasesResult = resultCollection.KeyPhraseResult; + ExtractKeyPhrasesResultCollection keyPhrasesResult = resultCollection.Tasks.KeyPhraseExtractionTasks[0].Results; - RecognizePiiEntitiesResultCollection piiResult = resultCollection.PiiEntitiesResult; + RecognizePiiEntitiesResultCollection piiResult = resultCollection.Tasks.EntityRecognitionPiiTasks[0].Results; Console.WriteLine("Recognized Entities"); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationAsync.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationAsync.cs index 1d9ed4db3230a..78c23773aab93 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationAsync.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationAsync.cs @@ -18,8 +18,8 @@ public partial class TextAnalyticsSamples: SamplesBase { [Test] - public async Task HealthcareCancellation() + public void HealthcareCancellation() { string endpoint = TestEnvironment.Endpoint; string apiKey = TestEnvironment.ApiKey; @@ -42,7 +42,7 @@ with a strong family history of coronary artery disease with a brother dying at HealthcareOperation healthOperation = client.StartHealthcareBatch(batchDocument, "en"); - await client.StartCancelHealthJobAsync(healthOperation); + client.StartCancelHealthJob(healthOperation); } #endregion From bce412d354af65e21096dd93dfcbfc362dc0bb41 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Thu, 12 Nov 2020 11:55:13 -0800 Subject: [PATCH 46/58] resolve comments --- .../src/EntityRecognitionPiiTasksItem.cs | 2 +- .../src/EntityRecognitionTasksItem.cs | 2 +- .../src/KeyPhraseExtractionTasksItem.cs | 2 +- .../Azure.AI.TextAnalytics/src/Transforms.cs | 66 +++++++++---------- .../tests/samples/Sample_AnalyzeOperation.cs | 26 ++++---- .../samples/Sample_AnalyzeOperationAsync.cs | 11 +++- 6 files changed, 59 insertions(+), 50 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionPiiTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionPiiTasksItem.cs index 1f423bfc331a3..bef821a403a48 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionPiiTasksItem.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionPiiTasksItem.cs @@ -13,7 +13,7 @@ namespace Azure.AI.TextAnalytics public partial class EntityRecognitionPiiTasksItem { /// Initializes a new instance of EntityRecognitionPiiTasksItem. - public EntityRecognitionPiiTasksItem(EntityRecognitionPiiTasksItem task, IDictionary idToIndexMap) : base(task.LastUpdateDateTime, task.Name, task.Status) + internal EntityRecognitionPiiTasksItem(EntityRecognitionPiiTasksItem task, IDictionary idToIndexMap) : base(task.LastUpdateDateTime, task.Name, task.Status) { Results = Transforms.ConvertToRecognizePiiEntitiesResultCollection(task.ResultsInternal, idToIndexMap); } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionTasksItem.cs index 51033b2c98345..1f313b24d2818 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionTasksItem.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/EntityRecognitionTasksItem.cs @@ -15,7 +15,7 @@ namespace Azure.AI.TextAnalytics public partial class EntityRecognitionTasksItem { /// Initializes a new instance of EntityRecognitionTasksItem. - public EntityRecognitionTasksItem(EntityRecognitionTasksItem task, IDictionary idToIndexMap) : base(task.LastUpdateDateTime, task.Name, task.Status) + internal EntityRecognitionTasksItem(EntityRecognitionTasksItem task, IDictionary idToIndexMap) : base(task.LastUpdateDateTime, task.Name, task.Status) { Results = Transforms.ConvertToRecognizeEntitiesResultCollection(task.ResultsInternal, idToIndexMap); } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseExtractionTasksItem.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseExtractionTasksItem.cs index c2f5cd13950ba..c132bd96144f4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseExtractionTasksItem.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/KeyPhraseExtractionTasksItem.cs @@ -15,7 +15,7 @@ namespace Azure.AI.TextAnalytics public partial class KeyPhraseExtractionTasksItem { /// Initializes a new instance of KeyPhraseExtractionTasksItem. - public KeyPhraseExtractionTasksItem(KeyPhraseExtractionTasksItem task, IDictionary idToIndexMap) : base(task.LastUpdateDateTime, task.Name, task.Status) + internal KeyPhraseExtractionTasksItem(KeyPhraseExtractionTasksItem task, IDictionary idToIndexMap) : base(task.LastUpdateDateTime, task.Name, task.Status) { Results = Transforms.ConvertToExtractKeyPhrasesResultCollection(task.ResultsInternal, idToIndexMap); } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs index 55a147a1711f0..c0d46daf53978 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Transforms.cs @@ -45,39 +45,6 @@ internal static List ConvertToErrors(IReadOnlyList ConvertToKeyPhraseExtractionTasks(IReadOnlyList keyPhraseExtractionTasks, IDictionary idToIndexMap) - { - var collection = new List(); - foreach (KeyPhraseExtractionTasksItem task in keyPhraseExtractionTasks) - { - collection.Add(new KeyPhraseExtractionTasksItem(task, idToIndexMap)); - } - - return collection; - } - - internal static IReadOnlyList ConvertToEntityRecognitionPiiTasks(IReadOnlyList entityRecognitionPiiTasks, IDictionary idToIndexMap) - { - var collection = new List(); - foreach (EntityRecognitionPiiTasksItem task in entityRecognitionPiiTasks) - { - collection.Add(new EntityRecognitionPiiTasksItem(task, idToIndexMap)); - } - - return collection; - } - - internal static IReadOnlyList ConvertToEntityRecognitionTasks(IReadOnlyList entityRecognitionTasks, IDictionary idToIndexMap) - { - var collection = new List(); - foreach (EntityRecognitionTasksItem task in entityRecognitionTasks) - { - collection.Add(new EntityRecognitionTasksItem(task, idToIndexMap)); - } - - return collection; - } - internal static List ConvertToWarnings(IReadOnlyList internalWarnings) { var warnings = new List(); @@ -309,6 +276,39 @@ internal static AnalyzeOperationResult ConvertToAnalyzeOperationResult(AnalyzeJo return new AnalyzeOperationResult(jobState, map); } + internal static IReadOnlyList ConvertToKeyPhraseExtractionTasks(IReadOnlyList keyPhraseExtractionTasks, IDictionary idToIndexMap) + { + var collection = new List(); + foreach (KeyPhraseExtractionTasksItem task in keyPhraseExtractionTasks) + { + collection.Add(new KeyPhraseExtractionTasksItem(task, idToIndexMap)); + } + + return collection; + } + + internal static IReadOnlyList ConvertToEntityRecognitionPiiTasks(IReadOnlyList entityRecognitionPiiTasks, IDictionary idToIndexMap) + { + var collection = new List(); + foreach (EntityRecognitionPiiTasksItem task in entityRecognitionPiiTasks) + { + collection.Add(new EntityRecognitionPiiTasksItem(task, idToIndexMap)); + } + + return collection; + } + + internal static IReadOnlyList ConvertToEntityRecognitionTasks(IReadOnlyList entityRecognitionTasks, IDictionary idToIndexMap) + { + var collection = new List(); + foreach (EntityRecognitionTasksItem task in entityRecognitionTasks) + { + collection.Add(new EntityRecognitionTasksItem(task, idToIndexMap)); + } + + return collection; + } + #endregion private static List SortHeterogeneousCollection(List collection, IDictionary idToIndexMap) where T : TextAnalyticsResult diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperation.cs index 82d8310681eb2..53908964a6313 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperation.cs @@ -22,9 +22,18 @@ public async Task AnalyzeOperation() var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); #region Snippet:TextAnalyticsAnalyzeOperation + + string document = @"We went to Contoso Steakhouse located at midtown NYC last week for a dinner party, + and we adore the spot! They provide marvelous food and they have a great menu. The + chief cook happens to be the owner (I think his name is John Doe) and he is super + nice, coming out of the kitchen and greeted us all. We enjoyed very much dining in + the place! The Sirloin steak I ordered was tender and juicy, and the place was impeccably + clean. You can even pre-order from their online menu at www.contososteakhouse.com, + call 312-555-0176 or send email to order@contososteakhouse.com! The only complaint + I have is the food didn't come fast enough. Overall I highly recommend it!"; var batchDocuments = new List { - new TextDocumentInput("1", "Microsoft was founded by Bill Gates and Paul Allen.") + new TextDocumentInput("1", document) { Language = "en", } @@ -32,18 +41,9 @@ public async Task AnalyzeOperation() AnalyzeOperationOptions operationOptions = new AnalyzeOperationOptions() { - KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters() - { - ModelVersion = "latest" - }, - EntitiesTaskParameters = new EntitiesTaskParameters() - { - ModelVersion = "latest" - }, - PiiTaskParameters = new PiiTaskParameters() - { - ModelVersion = "latest" - }, + KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters(), + EntitiesTaskParameters = new EntitiesTaskParameters(), + PiiTaskParameters = new PiiTaskParameters(), DisplayName = "AnalyzeOperationSample" }; diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationAsync.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationAsync.cs index 78c23773aab93..9fb7c53ada666 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationAsync.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/samples/Sample_AnalyzeOperationAsync.cs @@ -24,9 +24,18 @@ public async Task AnalyzeOperationAsync() var client = new TextAnalyticsClient(new Uri(endpoint), new AzureKeyCredential(apiKey)); #region Snippet:TextAnalyticsSampleHealthcareAsync + string document = @"We went to Contoso Steakhouse located at midtown NYC last week for a dinner party, + and we adore the spot! They provide marvelous food and they have a great menu. The + chief cook happens to be the owner (I think his name is John Doe) and he is super + nice, coming out of the kitchen and greeted us all. We enjoyed very much dining in + the place! The Sirloin steak I ordered was tender and juicy, and the place was impeccably + clean. You can even pre-order from their online menu at www.contososteakhouse.com, + call 312-555-0176 or send email to order@contososteakhouse.com! The only complaint + I have is the food didn't come fast enough. Overall I highly recommend it!"; + var batchDocuments = new List { - new TextDocumentInput("1", "Microsoft was founded by Bill Gates and Paul Allen.") + new TextDocumentInput("1", document) { Language = "en", } From b178027d909b1e0722f379eccf6a7989445aa040 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Thu, 12 Nov 2020 11:55:40 -0800 Subject: [PATCH 47/58] update session records --- .../AnalyzeOperationBatchWithErrorTest.json | 22 +- ...alyzeOperationBatchWithErrorTestAsync.json | 22 +- .../AnalyzeOperationBatchWithPHIDomain.json | 3900 +++++++++--- ...alyzeOperationBatchWithPHIDomainAsync.json | 3375 +++++----- .../AnalyzeOperationTest.json | 134 +- .../AnalyzeOperationTestAsync.json | 173 +- .../AnalyzeOperationWithLanguageTest.json | 220 +- ...AnalyzeOperationWithLanguageTestAsync.json | 220 +- .../AnalyzeOperationWithMultipleTasks.json | 5616 ++++++----------- ...nalyzeOperationWithMultipleTasksAsync.json | 5584 +++++++++++----- .../AnalyzeOperationWithSkipParameter.json | 159 +- ...nalyzeOperationWithSkipParameterAsync.json | 123 +- .../AnalyzeOperationWithTopParameter.json | 173 +- ...AnalyzeOperationWithTopParameterAsync.json | 289 + ...lyzeSentimentBatchConvenienceFullTest.json | 20 +- ...entimentBatchConvenienceFullTestAsync.json | 20 +- .../AnalyzeSentimentBatchConvenienceTest.json | 20 +- ...yzeSentimentBatchConvenienceTestAsync.json | 20 +- ...tBatchConvenienceWithCancellationTest.json | 20 +- ...hConvenienceWithCancellationTestAsync.json | 20 +- ...nienceWithLanguageAndCancellationTest.json | 20 +- ...eWithLanguageAndCancellationTestAsync.json | 20 +- ...venienceWithLanguageAndStatisticsTest.json | 20 +- ...nceWithLanguageAndStatisticsTestAsync.json | 20 +- ...imentBatchConvenienceWithLanguageTest.json | 20 +- ...BatchConvenienceWithLanguageTestAsync.json | 20 +- ...BatchConvenienceWithOpinionMiningTest.json | 20 +- ...ConvenienceWithOpinionMiningTestAsync.json | 20 +- ...enceWithStatisticsAndCancellationTest.json | 20 +- ...ithStatisticsAndCancellationTestAsync.json | 20 +- ...entBatchConvenienceWithStatisticsTest.json | 20 +- ...tchConvenienceWithStatisticsTestAsync.json | 20 +- .../AnalyzeSentimentBatchTest.json | 20 +- .../AnalyzeSentimentBatchTestAsync.json | 20 +- .../AnalyzeSentimentBatchWithErrorTest.json | 20 +- ...alyzeSentimentBatchWithErrorTestAsync.json | 20 +- .../AnalyzeSentimentBatchWithNullIdTest.json | 18 +- ...lyzeSentimentBatchWithNullIdTestAsync.json | 20 +- ...AnalyzeSentimentBatchWithNullTextTest.json | 20 +- ...zeSentimentBatchWithNullTextTestAsync.json | 18 +- ...zeSentimentBatchWithOpinionMiningTest.json | 20 +- ...timentBatchWithOpinionMiningTestAsync.json | 20 +- ...alyzeSentimentBatchWithStatisticsTest.json | 20 +- ...SentimentBatchWithStatisticsTestAsync.json | 20 +- .../AnalyzeSentimentTest.json | 20 +- .../AnalyzeSentimentTestAsync.json | 20 +- .../AnalyzeSentimentWithCancellationTest.json | 20 +- ...yzeSentimentWithCancellationTestAsync.json | 20 +- ...timentWithLanguageAndCancellationTest.json | 20 +- ...tWithLanguageAndCancellationTestAsync.json | 20 +- .../AnalyzeSentimentWithLanguageTest.json | 20 +- ...AnalyzeSentimentWithLanguageTestAsync.json | 20 +- .../AnalyzeSentimentWithOpinionMining.json | 20 +- ...nalyzeSentimentWithOpinionMiningAsync.json | 20 +- ...nalyzeSentimentWithOpinionMiningEmpty.json | 20 +- ...eSentimentWithOpinionMiningEmptyAsync.json | 20 +- ...lyzeSentimentWithOpinionMiningNegated.json | 20 +- ...entimentWithOpinionMiningNegatedAsync.json | 18 +- .../DetectLanguageBatchConvenienceTest.json | 20 +- ...tectLanguageBatchConvenienceTestAsync.json | 18 +- ...ageBatchConvenienceWithStatisticsTest.json | 20 +- ...tchConvenienceWithStatisticsTestAsync.json | 20 +- .../DetectLanguageBatchTest.json | 20 +- .../DetectLanguageBatchTestAsync.json | 20 +- .../DetectLanguageBatchWithErrorTest.json | 20 +- ...DetectLanguageBatchWithErrorTestAsync.json | 18 +- .../DetectLanguageBatchWithNullIdTest.json | 20 +- ...etectLanguageBatchWithNullIdTestAsync.json | 20 +- .../DetectLanguageBatchWithNullTextTest.json | 18 +- ...ectLanguageBatchWithNullTextTestAsync.json | 18 +- ...DetectLanguageBatchWithStatisticsTest.json | 18 +- ...tLanguageBatchWithStatisticsTestAsync.json | 18 +- .../DetectLanguageTest.json | 20 +- .../DetectLanguageTestAsync.json | 20 +- .../DetectLanguageWithCountryHintTest.json | 20 +- ...etectLanguageWithCountryHintTestAsync.json | 20 +- ...etectLanguageWithErrorCountryHintTest.json | 18 +- ...LanguageWithErrorCountryHintTestAsync.json | 18 +- ...DetectLanguageWithNoneCountryHintTest.json | 20 +- ...tLanguageWithNoneCountryHintTestAsync.json | 20 +- ...anguageWithNoneDefaultCountryHintTest.json | 20 +- ...geWithNoneDefaultCountryHintTestAsync.json | 20 +- ...ExtractKeyPhrasesBatchConvenienceTest.json | 20 +- ...ctKeyPhrasesBatchConvenienceTestAsync.json | 20 +- ...sesBatchConvenienceWithStatisticsTest.json | 20 +- ...tchConvenienceWithStatisticsTestAsync.json | 20 +- .../ExtractKeyPhrasesBatchTest.json | 20 +- .../ExtractKeyPhrasesBatchTestAsync.json | 20 +- .../ExtractKeyPhrasesBatchWithErrorTest.json | 20 +- ...ractKeyPhrasesBatchWithErrorTestAsync.json | 20 +- .../ExtractKeyPhrasesBatchWithNullIdTest.json | 20 +- ...actKeyPhrasesBatchWithNullIdTestAsync.json | 18 +- ...xtractKeyPhrasesBatchWithNullTextTest.json | 20 +- ...tKeyPhrasesBatchWithNullTextTestAsync.json | 18 +- ...tractKeyPhrasesBatchWithSatisticsTest.json | 20 +- ...KeyPhrasesBatchWithSatisticsTestAsync.json | 20 +- .../ExtractKeyPhrasesTest.json | 18 +- .../ExtractKeyPhrasesTestAsync.json | 20 +- .../ExtractKeyPhrasesWithLanguageTest.json | 18 +- ...xtractKeyPhrasesWithLanguageTestAsync.json | 20 +- .../ExtractKeyPhrasesWithWarningTest.json | 20 +- ...ExtractKeyPhrasesWithWarningTestAsync.json | 20 +- ...RecognizeEntitiesBatchConvenienceTest.json | 20 +- ...nizeEntitiesBatchConvenienceTestAsync.json | 20 +- ...iesBatchConvenienceWithStatisticsTest.json | 20 +- ...tchConvenienceWithStatisticsTestAsync.json | 20 +- .../RecognizeEntitiesBatchTest.json | 20 +- .../RecognizeEntitiesBatchTestAsync.json | 20 +- .../RecognizeEntitiesBatchWithErrorTest.json | 20 +- ...ognizeEntitiesBatchWithErrorTestAsync.json | 20 +- ...EntitiesBatchWithInvalidDocumentBatch.json | 18 +- ...iesBatchWithInvalidDocumentBatchAsync.json | 20 +- .../RecognizeEntitiesBatchWithNullIdTest.json | 20 +- ...gnizeEntitiesBatchWithNullIdTestAsync.json | 18 +- ...ecognizeEntitiesBatchWithNullTextTest.json | 18 +- ...izeEntitiesBatchWithNullTextTestAsync.json | 18 +- ...ognizeEntitiesBatchWithStatisticsTest.json | 20 +- ...eEntitiesBatchWithStatisticsTestAsync.json | 20 +- .../RecognizeEntitiesTest.json | 20 +- .../RecognizeEntitiesTestAsync.json | 20 +- .../RecognizeEntitiesWithLanguageTest.json | 20 +- ...ecognizeEntitiesWithLanguageTestAsync.json | 20 +- .../RecognizeEntitiesWithSubCategoryTest.json | 20 +- ...gnizeEntitiesWithSubCategoryTestAsync.json | 20 +- ...ealthcareEntitiesBatchConvenienceTest.json | 258 +- ...careEntitiesBatchConvenienceTestAsync.json | 166 +- ...iesBatchConvenienceWithStatisticsTest.json | 136 +- ...tchConvenienceWithStatisticsTestAsync.json | 136 +- .../RecognizeHealthcareEntitiesBatchTest.json | 168 +- ...gnizeHealthcareEntitiesBatchTestAsync.json | 168 +- ...eHealthcareEntitiesBatchWithErrorTest.json | 138 +- ...thcareEntitiesBatchWithErrorTestAsync.json | 136 +- ...HealthcareEntitiesBatchWithPagination.json | 296 +- ...hcareEntitiesBatchWithPaginationAsync.json | 296 +- ...thcareEntitiesBatchWithStatisticsTest.json | 106 +- ...eEntitiesBatchWithStatisticsTestAsync.json | 106 +- .../RecognizeHealthcareEntitiesTest.json | 168 +- .../RecognizeHealthcareEntitiesTestAsync.json | 166 +- ...izeHealthcareEntitiesWithLanguageTest.json | 134 +- ...althcareEntitiesWithLanguageTestAsync.json | 134 +- ...zeHealthcareEntitiesWithSkipParameter.json | 166 +- ...lthcareEntitiesWithSkipParameterAsync.json | 166 +- ...izeHealthcareEntitiesWithTopParameter.json | 138 +- ...althcareEntitiesWithTopParameterAsync.json | 140 +- ...izeLinkedEntitiesBatchConvenienceTest.json | 20 +- ...nkedEntitiesBatchConvenienceTestAsync.json | 20 +- ...iesBatchConvenienceWithStatisticsTest.json | 20 +- ...tchConvenienceWithStatisticsTestAsync.json | 18 +- .../RecognizeLinkedEntitiesBatchTest.json | 20 +- ...RecognizeLinkedEntitiesBatchTestAsync.json | 20 +- ...gnizeLinkedEntitiesBatchWithErrorTest.json | 18 +- ...LinkedEntitiesBatchWithErrorTestAsync.json | 20 +- ...EntitiesBatchWithInvalidDocumentBatch.json | 20 +- ...iesBatchWithInvalidDocumentBatchAsync.json | 20 +- ...nizeLinkedEntitiesBatchWithNullIdTest.json | 20 +- ...inkedEntitiesBatchWithNullIdTestAsync.json | 20 +- ...zeLinkedEntitiesBatchWithNullTextTest.json | 20 +- ...kedEntitiesBatchWithNullTextTestAsync.json | 18 +- ...LinkedEntitiesBatchWithStatisticsTest.json | 20 +- ...dEntitiesBatchWithStatisticsTestAsync.json | 20 +- .../RecognizeLinkedEntitiesTest.json | 20 +- .../RecognizeLinkedEntitiesTestAsync.json | 20 +- ...cognizeLinkedEntitiesWithLanguageTest.json | 20 +- ...zeLinkedEntitiesWithLanguageTestAsync.json | 20 +- ...ognizePiiEntitiesBatchConvenienceTest.json | 20 +- ...ePiiEntitiesBatchConvenienceTestAsync.json | 20 +- ...iesBatchConvenienceWithStatisticsTest.json | 20 +- ...tchConvenienceWithStatisticsTestAsync.json | 20 +- .../RecognizePiiEntitiesBatchTest.json | 20 +- .../RecognizePiiEntitiesBatchTestAsync.json | 20 +- ...ecognizePiiEntitiesBatchWithErrorTest.json | 20 +- ...izePiiEntitiesBatchWithErrorTestAsync.json | 20 +- ...izePiiEntitiesBatchWithStatisticsTest.json | 20 +- ...iEntitiesBatchWithStatisticsTestAsync.json | 20 +- .../RecognizePiiEntitiesTest.json | 20 +- .../RecognizePiiEntitiesTestAsync.json | 20 +- .../RecognizePiiEntitiesWithDomainTest.json | 20 +- ...cognizePiiEntitiesWithDomainTestAsync.json | 20 +- .../RecognizePiiEntitiesWithLanguageTest.json | 20 +- ...gnizePiiEntitiesWithLanguageTestAsync.json | 20 +- .../EntitiesCategories.json | 18 +- .../EntitiesCategoriesAsync.json | 20 +- .../RotateApiKey.json | 54 +- .../RotateApiKeyAsync.json | 52 +- .../TextInKoreanNFC.json | 20 +- .../TextInKoreanNFCAsync.json | 20 +- .../TextWithDiacriticsNFC.json | 20 +- .../TextWithDiacriticsNFCAsync.json | 20 +- .../TextWithEmoji.json | 20 +- .../TextWithEmojiAsync.json | 20 +- 190 files changed, 14991 insertions(+), 11481 deletions(-) create mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithTopParameterAsync.json diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithErrorTest.json index 66ecb4d9abfda..fa59c39a98207 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithErrorTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "410", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-007d613896a45b4e8873c0f59847c4f1-67698018ca79e94a-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-78d3c761d055ad4d8c8610ab6935d41b-1a6759d88ea2f343-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8bc4734310bb7be2c59f879707480cb0", "x-ms-return-client-request-id": "true" }, @@ -52,18 +46,18 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "cf00b9cd-8d08-4606-b29b-6ac36041f3ac", + "apim-request-id": "e144a961-a98e-40de-8f90-76df531557c8", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 21:11:47 GMT", + "Date": "Thu, 12 Nov 2020 19:22:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "error": { "code": "InvalidArgument", - "message": "Value cannot be null.\nParameter name: blobName" + "message": "At least one document is missing a Text attribute." } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithErrorTestAsync.json index b554398c9603c..dd47d46c266f7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithErrorTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "410", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-48b7d8e1ffbfe34398c0ef6ef9baab67-9d7e486583deb040-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-1b0e658d0b9e6d449a79dc8da51133f5-5fff3ca2afa41a4c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e97bbbcf82adc1bcfc469a941c1a1f32", "x-ms-return-client-request-id": "true" }, @@ -52,18 +46,18 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "c0d98706-294f-4cdd-9ab3-5c2484c55ea4", + "apim-request-id": "ef5fce97-32c2-48b0-a447-2996240f4eae", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 21:11:48 GMT", + "Date": "Thu, 12 Nov 2020 19:27:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "error": { "code": "InvalidArgument", - "message": "Value cannot be null.\nParameter name: blobName" + "message": "At least one document is missing a Text attribute." } } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json index b81693289661b..9c51ef1ba635a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json @@ -4,19 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "311", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "00-b8b127bf9ca31b4fad7c49cc71f268ab-3894f0862717114f-00", - "traceparent": "00-b8b127bf9ca31b4fad7c49cc71f268ab-3894f0862717114f-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-2263a60e96b26e4994f30a7c23bf6cc6-be4e7827ee9e2d4a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "cfe8e2f8ee3911d883f149c5ba708a25", "x-ms-return-client-request-id": "true" }, @@ -44,104 +37,90 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "6bb07817-2312-4a94-ae6c-5abfa6dcee90", - "Date": "Thu, 12 Nov 2020 00:04:38 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", + "apim-request-id": "e7f408fe-6938-46a9-9fb7-3e5bc9ddfa9e", + "Date": "Thu, 12 Nov 2020 19:22:32 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "279" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "36" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66bf0-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "0af6547e6d21f99df5e133f9fb1abff6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "44751566-6852-41c7-bee9-3373b7438936", + "apim-request-id": "966d8773-94a0-47be-af59-d8560b8e6c0e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:04:39 GMT", + "Date": "Thu, 12 Nov 2020 19:22:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "115" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", - "status": "running", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:32Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:32Z" }, "completed": 0, "failed": 0, - "inProgress": 1, - "total": 1 + "inProgress": 0, + "total": 0 } } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66bf1-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1ffe04ae50f965a11f4bc1da8e14f022", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6abc182b-ddf2-4a67-8e20-242c6a4a09e8", + "apim-request-id": "8c72eedc-3182-4b2e-9ecd-0a5b5573bcb0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:04:47 GMT", + "Date": "Thu, 12 Nov 2020 19:22:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "107" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "75" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", - "status": "running", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -151,45 +130,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66bf2-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1647a062e0a88b5844efda57badf1569", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0e12eb96-d1ec-4cc6-8979-1d87d47fbcdc", + "apim-request-id": "992198a7-8ff6-41f9-8b6c-65165ce669fa", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:01 GMT", + "Date": "Thu, 12 Nov 2020 19:22:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "192" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -199,45 +171,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66bf3-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b61653316b722e2cb391ead5abc26ae0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "209d4b1f-6f43-4b0b-8f26-fa3b275670a7", + "apim-request-id": "29e5b92f-f5c4-449b-9268-2de26a4763f3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:02 GMT", + "Date": "Thu, 12 Nov 2020 19:22:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "76" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -247,45 +212,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66bf4-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "5a9611f1a9d2cd4dab72da09754aaa40", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2e0f7c4a-b1d7-4b08-a077-eeece9cd5cbd", + "apim-request-id": "c72beac9-5e31-442f-8b8b-0fe094a5c6a0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:03 GMT", + "Date": "Thu, 12 Nov 2020 19:22:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "78" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -295,45 +253,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66bf5-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3ba9583539fdf7af74196317f682e081", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c240de6a-ea0f-4918-9a85-cbb1e644da33", + "apim-request-id": "0a2abfc3-55cc-4c48-ac86-e21c3264fa45", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:04 GMT", + "Date": "Thu, 12 Nov 2020 19:22:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "63" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -343,45 +294,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66bf6-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a966f984bb48889605490aff9122b869", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0a1381df-40a7-48f3-9f71-8d3a5015a827", + "apim-request-id": "a9709d87-8579-4c94-a0e6-45e820e6f7f3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:05 GMT", + "Date": "Thu, 12 Nov 2020 19:22:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "57" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -391,45 +335,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66bf7-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "52a0a9e62e19b7e3619fe5b94536d629", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f69ae3e8-bce7-42c5-9b50-02ab40f5bc7e", + "apim-request-id": "6e820150-2941-489b-b83b-e2f4b8a39bc4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:06 GMT", + "Date": "Thu, 12 Nov 2020 19:22:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -439,45 +376,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66bf8-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7c84589201e47af8c22036b42eb06652", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d0384d10-b41d-4129-a9cb-88114108e15c", + "apim-request-id": "7b01c4c0-5424-4bc6-91ec-7a9a50d10855", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:09 GMT", + "Date": "Thu, 12 Nov 2020 19:22:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -487,45 +417,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66bf9-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4c31fa618de2566816ae47a9d5dc42cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9a31637e-221f-431a-95fd-863969ff8fa7", + "apim-request-id": "c7deace9-9662-4191-9a1b-5d15a8d5b690", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:10 GMT", + "Date": "Thu, 12 Nov 2020 19:22:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -535,45 +458,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66bfa-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "386ce1723b9de485b12590f8f82e88b1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cb406173-8dcd-4b9d-afbd-6f41441e7f32", + "apim-request-id": "faeed6d2-4aa0-4380-8f5e-6197032767cc", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:11 GMT", + "Date": "Thu, 12 Nov 2020 19:22:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -583,45 +499,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66bfb-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4b5893388a040546f02e6635b94ea5e5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "361c0787-b497-4dee-a7ae-a51ae99a1477", + "apim-request-id": "d4dc4948-3ba4-43ba-9483-c371d0ef8125", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:13 GMT", + "Date": "Thu, 12 Nov 2020 19:22:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "59" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -631,45 +540,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66bfc-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4d4166de2e4325b5754c9abcfc6f5de7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ba1188bb-80b7-4191-8a35-332a5358bd60", + "apim-request-id": "30b6de18-4a07-4704-bc2d-b924f349f5c0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:14 GMT", + "Date": "Thu, 12 Nov 2020 19:22:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "69" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -679,45 +581,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66bfd-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "41709625f784e8cb9b67476ed54f2b62", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ca9229e9-34ee-4e99-b34d-ae4725b7f2df", + "apim-request-id": "3db8d420-1f21-45e0-b884-7a1e18cfacb7", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:15 GMT", + "Date": "Thu, 12 Nov 2020 19:22:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "62" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -727,45 +622,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66bfe-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "921aaa803bed0a6edd33d6b7ef8a0880", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "afc1f636-59be-4bc1-8e7c-5b0020be918b", + "apim-request-id": "d91de1a4-ef52-4af8-bf28-09b96789a122", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:16 GMT", + "Date": "Thu, 12 Nov 2020 19:22:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -775,45 +663,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66bff-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "220f7ed163dee7609b59b2dbe6464f25", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ecb43e31-36f9-491f-a825-e29b8815465a", + "apim-request-id": "7407446f-ab9c-420e-a18a-b5c3077a58d6", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:18 GMT", + "Date": "Thu, 12 Nov 2020 19:22:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "55" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -823,45 +704,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c00-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "513b3721cb55eafa286564512013f810", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ea9141e1-fbca-4576-9782-ca25cb29af65", + "apim-request-id": "52f13b29-62f3-4345-bab4-2050127b09ed", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:19 GMT", + "Date": "Thu, 12 Nov 2020 19:22:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -871,45 +745,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c01-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "569dc65e083f1d844a33f69389922497", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ea2f9785-9c4d-40d8-9875-a31e7d97963f", + "apim-request-id": "33516755-e496-436e-ac0a-c36dfe4b9492", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:20 GMT", + "Date": "Thu, 12 Nov 2020 19:22:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -919,45 +786,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c02-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b795b0e3b74e062b8425fa78ff0fc687", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7c3a3a13-32d4-49e5-af58-cd50f2e461a8", + "apim-request-id": "d432070f-4030-4275-8250-f7e234255ee9", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:21 GMT", + "Date": "Thu, 12 Nov 2020 19:22:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -967,45 +827,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c03-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1f7da160f8a919e6b31e0721d4676096", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dbbd26c8-e064-45cb-8b2d-b6852e535a55", + "apim-request-id": "8e6e13ac-609a-47d6-ab54-a032f3050776", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:23 GMT", + "Date": "Thu, 12 Nov 2020 19:22:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -1015,45 +868,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c04-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "706dcc41417da7c29b97d2190d0c1e3a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cb80f5fd-b76a-488e-90b4-63a1b89f433b", + "apim-request-id": "c5f56b2b-2155-49b0-8e97-a24793977951", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:24 GMT", + "Date": "Thu, 12 Nov 2020 19:22:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -1063,45 +909,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c05-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e8326f6d0514ebedca7c0430af09311d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "67bd1214-8008-4e2a-92ba-68d6201c991d", + "apim-request-id": "b9b0b31f-cff6-41b5-b1cc-0528c834e781", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:25 GMT", + "Date": "Thu, 12 Nov 2020 19:22:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -1111,45 +950,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c06-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "323763c556a21f09ded5841225cc0ba7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1ba24f05-45a3-415b-a74c-830637f8b35d", + "apim-request-id": "9143c7a1-ae98-43a4-859f-c8c72afb07fd", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:26 GMT", + "Date": "Thu, 12 Nov 2020 19:22:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "65" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "76" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -1159,45 +991,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c07-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "64b4cdff78343c81df81a6013c91f891", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "878b5e2a-4988-4520-a5c9-5c7a8de21a0c", + "apim-request-id": "0a056424-acd5-4265-973c-125a1fc00a96", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:28 GMT", + "Date": "Thu, 12 Nov 2020 19:23:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -1207,45 +1032,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c08-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "aa54b565ecd417976513093e80dbc5fd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aeb63fea-55f4-422e-86c6-656f8679f031", + "apim-request-id": "f1f3d643-9d76-4dd4-b711-1ec1babf5a26", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:29 GMT", + "Date": "Thu, 12 Nov 2020 19:23:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -1255,45 +1073,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c09-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e2305d70cc544ce8e2fa5220af07e24c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0b569ec3-70b4-439b-95c5-9947b0d41af1", + "apim-request-id": "287af8ff-d42e-48db-8919-f1dfb27b0c48", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:30 GMT", + "Date": "Thu, 12 Nov 2020 19:23:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "68" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -1303,45 +1114,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c0a-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "70acf2dd617813d2359dff216e43bb04", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "35b0c3ba-a177-486d-b6ad-88003b70a07c", + "apim-request-id": "2f6cfe04-cab0-48a3-a31d-acbc79d9f56e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:31 GMT", + "Date": "Thu, 12 Nov 2020 19:23:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -1351,45 +1155,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c0b-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "df91a9bb1561983ccc07c8da9977675d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aae593fc-e5cf-45bb-98d6-395652e3a97c", + "apim-request-id": "ec43d539-20e9-4f8f-b3ea-faf347e8c649", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:33 GMT", + "Date": "Thu, 12 Nov 2020 19:23:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "65" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "32" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -1399,45 +1196,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c0c-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8e60bc30552e0e848b1cacb7cdc7dd9f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f87440ef-83af-4e27-ba70-a6d00f9fac10", + "apim-request-id": "94d25942-7e4a-435e-ab7f-a09ee9eb69e8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:34 GMT", + "Date": "Thu, 12 Nov 2020 19:23:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "93" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "65" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -1447,45 +1237,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c0d-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "06654e3f0376c7ebb614a37099f87abe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6cb70bab-9d38-4926-a568-2d038d7ed7c2", + "apim-request-id": "e95cd9cd-bfa2-46de-8fee-b14eb55c4657", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:35 GMT", + "Date": "Thu, 12 Nov 2020 19:23:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -1495,45 +1278,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c0e-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b2f0a1362de265d5248254446985cb04", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2eb84e30-be47-4ffa-af36-5f7aff9a778d", + "apim-request-id": "c1cebe75-8e12-4944-859c-0734afdded07", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:37 GMT", + "Date": "Thu, 12 Nov 2020 19:23:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -1543,45 +1319,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c0f-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4a9a282a60112de7d198d81ab1147592", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f43e4535-a8d7-410f-bcda-fe4e26276b67", + "apim-request-id": "3ca23458-a05e-44e6-8df7-4857fd68a3dd", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:38 GMT", + "Date": "Thu, 12 Nov 2020 19:23:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -1591,45 +1360,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c10-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "2b80eea22bd612bc78ffe2f3aea65e30", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2a21fd22-5b56-40ef-bc65-76e40eb19c1f", + "apim-request-id": "12fcc078-e32e-41d6-93c5-443474f3bb64", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:39 GMT", + "Date": "Thu, 12 Nov 2020 19:23:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "62" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -1639,45 +1401,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c11-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "70459f492f5dd6acbac3e14954bbb40f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "60f71f03-a17a-4839-b468-3d395af8af74", + "apim-request-id": "ef989b59-fa55-4d2d-8d09-d6f8bf40ab83", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:40 GMT", + "Date": "Thu, 12 Nov 2020 19:23:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -1687,45 +1442,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c12-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7aa2c10d9f04ff2e6c88d2127df37e2a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "248187b4-7724-4cb2-8373-ef09be2ac9e8", + "apim-request-id": "b3cd6992-2393-4fe0-818c-5aa6c4370476", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:42 GMT", + "Date": "Thu, 12 Nov 2020 19:23:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "54" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -1735,45 +1483,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c13-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "12d1a73a04ce733541aa71124973bdbc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "11dd21ee-54b9-4fc3-8538-e24fa2aa11a9", + "apim-request-id": "95142b5e-10ea-4e72-948d-0e4b6cc28e56", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:43 GMT", + "Date": "Thu, 12 Nov 2020 19:23:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -1783,45 +1524,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c14-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ede6d34be304a92c704604d55d9a58c6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e55596f9-be2d-458e-8ae3-95765a3c6aee", + "apim-request-id": "98601297-9232-4ff0-9b3e-9588f5de28b0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:44 GMT", + "Date": "Thu, 12 Nov 2020 19:23:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "59" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -1831,45 +1565,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c15-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ad0eb645a1ea09408c2f395a2d1bb5f8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7332d395-34cc-4b43-b683-b1b7f63b9a6e", + "apim-request-id": "ff70bb47-422e-4e30-991d-989184a0452d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:45 GMT", + "Date": "Thu, 12 Nov 2020 19:23:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "82" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -1879,45 +1606,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c16-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "aac615ca910d56257b27a187ff5f15a7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eab8aea4-54da-4ec4-8493-0b517eea9068", + "apim-request-id": "0177dd59-1453-4fbf-bdfc-556d8d7c387f", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:47 GMT", + "Date": "Thu, 12 Nov 2020 19:23:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "55" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -1927,45 +1647,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c17-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "93cdab521065aad192dc60d5aad17c55", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dde126cb-2ba7-4de9-932e-2a0d3130b996", + "apim-request-id": "5fa397f7-78f8-4b22-b2fe-e44c4162a4ea", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:48 GMT", + "Date": "Thu, 12 Nov 2020 19:23:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "68" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -1975,45 +1688,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c18-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "470b0c91add3b4b891b832c3ffb8092c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "94b5e593-6990-44c1-a8fe-61fb26b96322", + "apim-request-id": "31133a7e-b850-4c57-a13e-5a6ab9aa03ad", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:49 GMT", + "Date": "Thu, 12 Nov 2020 19:23:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "59" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -2023,45 +1729,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c19-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "82089119214eba93431c18303050aca9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6c1c51f4-b51b-44b1-b56a-2ba718f3a740", + "apim-request-id": "118e4d6b-038a-44dd-a379-ea1748635fe6", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:50 GMT", + "Date": "Thu, 12 Nov 2020 19:23:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "52" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "55" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -2071,45 +1770,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c1a-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f3f64caace54a4d3f21801addd0eabd9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "983eab0f-dff4-4674-b2ae-f4f011b9015b", + "apim-request-id": "7adf72f1-5d80-4436-bf1f-bf2bd8f9e5b7", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:52 GMT", + "Date": "Thu, 12 Nov 2020 19:23:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 0, "failed": 0, @@ -2119,45 +1811,2539 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|6dd66c1b-4e364dc921df1895.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "18bc34d3fac96f07795003b695878341", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d5225d4c-348a-4c9a-9a86-9d2e4d148b9f", + "apim-request-id": "06ee22b1-89aa-4eb5-a23c-8b690efc830a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "b218890b15c24ad7be638f3520e6dc35", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a74759c6-b99f-4a0a-a687-a035670ccee8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "fc5d3e719393b0df45867a04ca1c0e6a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b26b3fc7-960c-4abd-b052-9bcb99dd6447", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "43" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "54a1c094f8f5be175c715a656ad14f92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c664e003-f10f-44fa-b9f6-7a9605fffa69", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "42" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5745cd74872a78ada9676d3c9ad37fa1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "108dd02b-5b02-4a84-aff2-6cf463e4fccc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "38" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5fa0245588447940279e9f2239794674", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bb15c6b4-8b64-4f35-bfe6-4eca04288941", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "fd90e736b7d70d3f1329aa8d8bda2389", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "55b2111e-c5cc-4d9a-a0b0-b1bf1768c974", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "92" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4510b9f1f030eb4d8dcc308be88b3e30", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9c416f4a-dd57-47a6-ac1f-a81e20ebfeb5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:34 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "60" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "b305f92182439dc9e4934b1bddb2ed4c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "037da80d-cd6e-4b33-9f63-e5aaa71f1ae7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7f30167b0168464399a46f0b87b42488", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "33791ebe-4f0f-4eb3-90c8-47393eac3e7d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "42" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "926c7aea70d56f45ef72609da4320edb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "18859763-26e4-406f-af17-4bbba06e6b75", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d210e3debe5b20c7b5bf199f13bd1630", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "04a2c94a-e952-4798-9205-f72b04b13293", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "46" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "6331c36e5b460b76d0c190f6a0a5a167", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "37eea200-8998-485b-beee-78b174e57e89", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "67" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "a32d949552a32b2db24bdc1656a65b31", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3af4d0d4-9157-433e-99de-43320497d723", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "46" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "e12e2f5caa0082946d05019a2ed17f10", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2a8e6b65-f73e-466f-b1cc-e44c61873038", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "48" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7f09b11d72901c8d9606b0fa7e60b42a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2fcd598b-345f-403e-b0bb-0f19ec9c1632", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "71995e65c077eb67ffaa369e5093fce1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d691a36f-3c83-43f8-8cbd-3ed78a023d13", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "a5f8ccccdc9ce9a1a1124bf9f99a040c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "14427930-461e-4072-97ad-e637bc287cd3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "62" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d034d7510e375d994a1e7fe63cefcb03", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5b94227d-9b44-4dbb-9819-02913cc5dd4a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "b22ecf0a0e67888dbdb0cf65756df164", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7f0c6ea0-fed8-4507-ac6b-ef2f017e3bb3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "794d29a62c5ebda9339b5b7e5cbaacb2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "694bf664-dc80-4ab2-98a4-9c0d3cb952fb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "77" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "29ef4846516c42a549ac12863f33e8dc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "abe9605b-dc6a-4100-adee-e3aba054750c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "69" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "12401b2c51a2dda425707fcbb30f2b02", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a1264816-31b2-4da9-bcc0-766402229a24", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "2c1e1c03c77d54f8840a30b119237eff", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dcd542aa-0c8d-438e-be0d-1924976cd2a2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:54 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "42" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "41517eb39a7af410a31103fcd2d98e39", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "10db6814-1353-476c-8220-561273ea6ad3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "47" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "22821080bb15655e22eb8e9721f2c402", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "82bd3564-0ce2-4bea-8730-d70c771e8150", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "37" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "341880f1eabe69880c29896cc3fc82aa", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e7ed4e82-12aa-41db-ab71-1ecdf88bf874", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "0831f67c5ca0f7e920ec1e8e0b78d3b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3545a6e7-6f49-4f98-aa7e-323e3bb73fe7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "66" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "520a014c59c1967b871815eb31f2a126", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "756dd0cb-aac9-4925-9e87-3565577eb31d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:23:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "42" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "2b1ae469bbc19462962014d1cbfa5e93", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "15c659b4-6b30-443e-af5f-9b1d3935d7d3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "72" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "c21fd95630f122e97a9b818746fec62e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d948d66a-48be-4b62-b6dc-f8d2f119ba2e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "2725f84aa75d91ef9e76bba045aaca8d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "193378ef-3d0d-41a3-aabf-fb6ff33075d6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "42" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "589582baded33935faf8b0263ada4d98", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "72401350-7f2a-4a07-8859-e1bf9937b2ef", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:04 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d386e55a36d4ae35e98e237b7449ddd0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f9c38d2a-3c03-4f24-9023-a31114a64491", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "43" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "c4cdf3d06d686c5bc3ec2c65f7c956c3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "cff086b4-86a5-43ec-938e-6929bd0ab3f7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "43" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5f452328f72383b84ce66e44bab9c4b1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e421d7aa-9b24-424a-b64a-780a0ba4a8f2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "38" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4655e01b890ded2f8a1a0fe80acfb720", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8e8a7453-5e31-4d05-af16-80db3ed9ce6e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "42" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "505260377d03d8ad3b497782fe16b109", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "106d6f96-1681-40de-9cbb-b7bf58ab232a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "47" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "174a7b270f739fb5f458d508e7cf797c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8b3aad44-2f35-4d31-8b83-93b7b71d7a22", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "42" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5a0d4d2f73679dae327c0bc411adee74", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3535b163-da36-4176-9c02-80da2a058efc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "49" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "8ec10668a08527adaab35caba8a4f16b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f96754c6-6f68-4120-bc45-f03a5df6ffaf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "b052fbd05708b3a2cdade4f604f18d46", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4c65efc0-bd02-4011-bb86-f14ae4e0f9d3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "34" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "e19f6069ea0e8ff7a0e5b0b31702f58e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "776e2cdc-9090-4640-b3ec-5be0e878896a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "16f39f8b3d5a116b640dc1d8bbb623b8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9827d7b0-1723-4b45-9d8d-475f97c6ed2a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "63" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "474115251004e55c03c31023a6ee9cca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fd310cf5-46e3-4c6e-a141-867888ee6b73", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "40" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "646b55b777fd2cecf58e7c01291fd3e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "322026ab-e7a4-4d03-8f81-54c469212c2a", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "42" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "018ef7c2adc17b89430e12972d486a75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "16a882bb-cc0b-44fc-ad9e-caecbc76c252", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "47" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "6520f670be4aadba29155276935bbbe3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8f6a65d4-1c2a-4299-b3de-0a91dcc4b16e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "59" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "af6026ef9b600a08ccf021ef6454fead", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4fb05f72-d085-4fb9-9240-0afd63f68eb0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "329006236dff039f3de0d7ac5a13e8e8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fe7b7edb-8620-4d11-b297-8f68aa1bd157", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "40" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "06a72f52bbe7d515ee15995a9dcb49d5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a3cfc690-b5b2-4032-8f0d-931e04392083", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:27 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "40" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "8c53a51688ca81e4875d717fc45cafb8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c62dc247-b648-4584-aecf-1b6be018d823", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "72" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "359c3808f8ad67c5f1bb44e9d4446572", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f9652289-9b8b-45e2-8623-b2177c8bd455", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:29 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "37" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "b59602975bc0ca1d4a257f894a961191", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "67288d9a-8c7f-416b-923f-eea670247a32", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "49" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "6552e166132e1d28dfeb9b0e44faad42", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c90211bb-c6d3-4d5f-b5b0-e381fc523727", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "c2e8fff7fac6acf81ad2ea87783c1d5a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "91287269-45d0-4d44-8dab-c17fb196b036", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "42" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f283b3aa00f28343d978d6d4c00f8550", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1b6a2825-2fb3-4d9e-a8f1-3dbd31f3b53c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4a913c774ead6bcbe9a54a5c28a0a4a3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e36ee1df-c9f6-4ee2-8108-fe01d1ca87a9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "33" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "916440cebb76f74fbc64e84d2423eb0b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "14166027-a585-41f2-8627-43f480dc9be8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "3b0f9a4cd2aa5bade717094db6e65a39", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4f201a31-51c7-4225-aeb3-b249603bf055", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:38 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "800532d3f4abbcd9ed9a8d48667d47c5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "10f5e8e3-e1c9-4dff-a905-ca9760841425", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "78" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:22:33Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "8d103eb96990fcf89308a95fb10240d6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a4cf3e85-3c96-4dfd-9d8b-8b4f82ce4ed8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:05:53 GMT", + "Date": "Thu, 12 Nov 2020 19:24:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "102" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "80" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "11c0bcd0-9ccf-4e37-9b6a-1cfee647699f_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:04:38Z", - "createdDateTime": "2020-11-12T00:04:37Z", - "expirationDateTime": "2020-11-13T00:04:37Z", + "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:22:33Z", + "createdDateTime": "2020-11-12T19:22:32Z", + "expirationDateTime": "2020-11-13T19:22:32Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38Z" + "lastUpdateDateTime": "2020-11-12T19:22:33Z" }, "completed": 1, "failed": 0, @@ -2166,12 +4352,12 @@ "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T00:04:38.4236181Z", + "lastUpdateDateTime": "2020-11-12T19:22:33.287778Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "", + "redactedText": "A patient with medical id ******** whose phone number is ************ is going under heart surgery", "id": "0", "entities": [ { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomainAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomainAsync.json index 27d8d15151764..1bf8a66a8745d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomainAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomainAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "311", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-474f8d0c4eaed343954a08f3f5d00a99-28e1c8ab0e886d49-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-8ed614973e830842a91c19fe73037192-bde101e91998ba4b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "dbcf75b1d6cb24fdb41d742a5d142b0a", "x-ms-return-client-request-id": "true" }, @@ -43,55 +37,49 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "83f8e185-0a8d-431d-80de-db3bfcf1003d", - "Date": "Mon, 09 Nov 2020 19:30:45 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", + "apim-request-id": "a04689f6-c6e0-43b3-96c9-9a787e651cda", + "Date": "Thu, 12 Nov 2020 19:27:10 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "369" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "126" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4c8042efa9b72511ebff89e389aea38e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "548a5783-c4b3-4d0c-bf2a-17925f8d6765", + "apim-request-id": "302c871f-dbe4-4758-81b2-23a7e8593958", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:30:45 GMT", + "Date": "Thu, 12 Nov 2020 19:27:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:45Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:45Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -101,44 +89,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d874985d95266ebb9878278edaa670b9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "471eb087-c2ad-4992-bb7e-f4ec05d4e73e", + "apim-request-id": "841d4aa5-c3d5-4563-89fa-6f6f7d410ff2", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:30:47 GMT", + "Date": "Thu, 12 Nov 2020 19:27:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "171" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", - "status": "notStarted", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", + "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -148,44 +130,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "75458861a56107e864a9f0cb4c199a06", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0b7345e7-8ea5-4b81-8343-a75972ea7c36", + "apim-request-id": "66f7f709-01d0-4c5e-adfc-aa5111070bde", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:30:48 GMT", + "Date": "Thu, 12 Nov 2020 19:27:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "63" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -195,44 +171,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c4cce67952a059e38711b33f82834b45", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "00b531c0-0755-4401-88d5-fb3a1615a718", + "apim-request-id": "62573c67-936f-4c3b-bc16-4df3bbb91dae", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:30:49 GMT", + "Date": "Thu, 12 Nov 2020 19:27:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "115" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -242,44 +212,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "0182d08f2e68b82daf6c747ca5ef217e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "751c44f0-4d03-4e2a-85e8-7a8f88482842", + "apim-request-id": "bba3a2ef-12e9-481a-ae2e-7bc2295d1c8b", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:30:51 GMT", + "Date": "Thu, 12 Nov 2020 19:27:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -289,44 +253,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f31420deabd90f18a4ecee4ff1a985e1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b27a058d-ce15-4e8b-9b8a-f28229c81de9", + "apim-request-id": "8fc04440-c745-4801-a57a-3e75b2dddad5", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:30:52 GMT", + "Date": "Thu, 12 Nov 2020 19:27:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -336,44 +294,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7c3cab5e99974b9db9141433dd67b397", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2fec1ad6-ae35-4dda-af32-c4f404b81dca", + "apim-request-id": "d8a4b86d-ff44-459f-818d-ae5c9e797e11", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:30:53 GMT", + "Date": "Thu, 12 Nov 2020 19:27:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -383,44 +335,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "616034ef576ee36bb7725c7c40ddc605", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2260f3ff-da46-4095-aa61-297f059df073", + "apim-request-id": "9b856313-65ff-4354-b3d6-f682bc8865e5", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:30:59 GMT", + "Date": "Thu, 12 Nov 2020 19:27:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5044" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -430,44 +376,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "fa1e93e7a5b345e782c93ac496e4323d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f2d16936-4f51-4c9d-847e-d2bcbfd3899a", + "apim-request-id": "73796eae-1c9a-4b8c-b3a7-fb97eb4e3ce7", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:00 GMT", + "Date": "Thu, 12 Nov 2020 19:27:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -477,44 +417,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "bc5f5738234907723f58c4243c200bdb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "18943a35-cd48-47a8-b62d-0abb71399dbd", + "apim-request-id": "4d186407-debf-46a7-b5b6-de07587ec768", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:02 GMT", + "Date": "Thu, 12 Nov 2020 19:27:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -524,44 +458,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "494c0e4db9494ae34d1bdea41ca64cd2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c35c489b-2742-4535-8a19-f19c820ee9b2", + "apim-request-id": "57f110f5-78a8-483a-8977-8d2479ace066", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:03 GMT", + "Date": "Thu, 12 Nov 2020 19:27:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -571,44 +499,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e8441e400a7ec3bc2017ba5be0c20861", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "952ede64-58ca-44e4-99a4-2ec3073a8247", + "apim-request-id": "ec2827b6-6558-412b-9ec6-ac6a754ce850", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:09 GMT", + "Date": "Thu, 12 Nov 2020 19:27:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5039" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "55" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -618,44 +540,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "88775fbee8987ff473156e2e45cdea98", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9e05a276-a0c2-4839-be17-951b9089a0ff", + "apim-request-id": "745293e2-3c3e-4a15-987f-ace3e40432cb", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:10 GMT", + "Date": "Thu, 12 Nov 2020 19:27:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -665,44 +581,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1de4f20b22dc435d52892831fe88698a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5b0147f4-fb8f-475c-9eae-465fd8ecf258", + "apim-request-id": "54f013d8-66cf-4067-a71f-c70de0c48ce6", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:12 GMT", + "Date": "Thu, 12 Nov 2020 19:27:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "105" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -712,44 +622,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "bce67c12c42f583a2ac475689b8e7e53", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aba819cf-34ad-4083-bfe1-fb5a2ee81199", + "apim-request-id": "e0fea2f4-5c67-4089-adba-c329bca34c2b", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:13 GMT", + "Date": "Thu, 12 Nov 2020 19:27:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -759,44 +663,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ee4f222cebde9c850234350ebfc281ea", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "383bbb6e-f233-479e-811a-30e452beafa6", + "apim-request-id": "6476fbcc-b7bd-4acc-891e-f3515dc663af", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:14 GMT", + "Date": "Thu, 12 Nov 2020 19:27:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -806,44 +704,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c81ce4ab2de74668b78bf218acf4a7c3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7a7dbc88-7cb5-4733-bf83-7e5cabe07c84", + "apim-request-id": "e964ccda-3083-4f97-8445-ea0272b483ce", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:15 GMT", + "Date": "Thu, 12 Nov 2020 19:27:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -853,44 +745,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "db05d50a7b3926acf74abafb8f2b9868", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "65b8ccf3-c6c8-4c52-8707-56fc519e7f5d", + "apim-request-id": "0101c452-2b26-4701-bd64-f5c4cbbd5cf7", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:16 GMT", + "Date": "Thu, 12 Nov 2020 19:27:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -900,44 +786,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b7bd8a43b672fe6bb9083652f86cef0e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d2bab7f8-6df3-42c5-8d5b-e3c6d03a00c6", + "apim-request-id": "d8adaed9-d5f0-4f27-a57a-8e7156b4e60a", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:18 GMT", + "Date": "Thu, 12 Nov 2020 19:27:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -947,44 +827,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e903718ca5bc2fb137f5d09d736db78b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eb7cc4cc-3589-4de5-959c-227b71c9d539", + "apim-request-id": "3c89c88d-3ce3-417c-a223-eacf8c3cf097", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:19 GMT", + "Date": "Thu, 12 Nov 2020 19:27:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -994,44 +868,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "21d58af3ef3754516a06223045592e8a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "562b6945-69c8-4844-9faa-3d526694c3be", + "apim-request-id": "b87e817d-9bd5-403f-bdac-97f60e5905d1", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:20 GMT", + "Date": "Thu, 12 Nov 2020 19:27:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -1041,44 +909,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1d6fac5aaf289dabd98d7f7de5ce8b4c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c2ae71eb-4eee-4b07-97e5-6b22806953f2", + "apim-request-id": "b3450542-99c5-4f54-a178-66bd9c420237", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:26 GMT", + "Date": "Thu, 12 Nov 2020 19:27:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5054" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -1088,44 +950,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "6d5faa51cd979cd620ae7fb58381eadd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3dfb3d1e-8ac9-411b-a414-2893b383aabf", + "apim-request-id": "466db0ea-0a44-41f0-a939-8dc9eee126f0", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:28 GMT", + "Date": "Thu, 12 Nov 2020 19:27:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "52" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -1135,44 +991,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c74245c69afd4363df3748a970d46f9b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ffaad1ec-9a92-4e94-9a70-9606201def53", + "apim-request-id": "4186f626-ad06-408c-8f9b-30e2f7adf8fc", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:29 GMT", + "Date": "Thu, 12 Nov 2020 19:27:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -1182,44 +1032,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9aded57bc1fa8df3d5d2fc792ff51a58", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f160e874-7d95-4901-9523-0f57e301c05e", + "apim-request-id": "ff1c847c-d0a1-4c73-871e-2c9df34fdd8a", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:30 GMT", + "Date": "Thu, 12 Nov 2020 19:27:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "37" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "69" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -1229,44 +1073,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9fb6a1a2c38cb74e461b8e60852d2c4c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a2fa99f7-ad06-4bd6-8d37-19ccad7bddfc", + "apim-request-id": "a213c17a-7d74-4e69-9b77-4c8c89375da2", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:31 GMT", + "Date": "Thu, 12 Nov 2020 19:27:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -1276,44 +1114,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ad3ae33f4fa205e352b5f12b9dea13ea", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "829b4ae1-ed41-4de7-8db5-70570dac4252", + "apim-request-id": "7b9813a5-e793-4321-842d-27e939f5b8fb", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:32 GMT", + "Date": "Thu, 12 Nov 2020 19:27:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -1323,44 +1155,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ce06f01cd01db70f872753de339208a8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "67dcba97-b566-4945-a8ec-9aa3c7f3049e", + "apim-request-id": "700d06c2-248d-4b2b-8c8e-59ba3c9da3f1", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:34 GMT", + "Date": "Thu, 12 Nov 2020 19:27:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "67" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -1370,44 +1196,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4c39b0a66dbb52b5beb14cd6d2231a5b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "83869a58-dcc1-426a-80a4-b87a462f972b", + "apim-request-id": "0704f615-b55b-48a6-b314-c29ef6f59b1c", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:35 GMT", + "Date": "Thu, 12 Nov 2020 19:27:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "37" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "55" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -1417,44 +1237,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9444a3075d266f2ed382257bfc04d2c0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "574795d1-e1c1-4184-a14a-345d579345b8", + "apim-request-id": "7843d94a-c6d9-4061-be19-bd8f0beeb0b3", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:36 GMT", + "Date": "Thu, 12 Nov 2020 19:27:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -1464,44 +1278,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ec8449adc7b1ae2f3bb3106c8338e564", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b7001d14-4d9e-4dca-88c4-fcbcba7e2da7", + "apim-request-id": "1d1cccfb-2b8b-48aa-884a-193ae3193618", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:37 GMT", + "Date": "Thu, 12 Nov 2020 19:27:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "63" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -1511,44 +1319,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8fd6f80d734e488181c97838483956b9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d74e706b-7d58-4649-8a59-d767e0fc301e", + "apim-request-id": "fb3d3df6-4172-4282-aaf6-8a5fa93288d8", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:38 GMT", + "Date": "Thu, 12 Nov 2020 19:27:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "57" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -1558,44 +1360,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "88298cde2d9e40aa749559724dc2eb9b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2648f5dd-36af-4655-82e6-04c18369fc4f", + "apim-request-id": "e0ea7d9b-8c35-4907-b58a-d82cc6038fbd", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:40 GMT", + "Date": "Thu, 12 Nov 2020 19:27:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "57" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -1605,44 +1401,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "046ec19c432d3971c73c6be74ef66601", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d4c91b26-f1bc-4747-ba7d-c4cdc9c9bf8e", + "apim-request-id": "a994b909-4f3a-4637-bd42-18cf0ad3f622", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:41 GMT", + "Date": "Thu, 12 Nov 2020 19:27:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "66" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "65" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -1652,44 +1442,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f78d565c5d0edfc54d961ab91a0ffbbf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c2f77703-8bff-4386-af0e-b41aba86ff20", + "apim-request-id": "84f45a2e-b394-4438-9923-98643e732278", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:42 GMT", + "Date": "Thu, 12 Nov 2020 19:27:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -1699,44 +1483,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "869bddde52cb9b8b1af0c061c2c3f17e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9c2d61cb-f397-4944-a156-cc79b57478bc", + "apim-request-id": "101a5842-70ed-4eb0-9155-be91e0718bfe", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:43 GMT", + "Date": "Thu, 12 Nov 2020 19:27:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -1746,44 +1524,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f615582ef4353f8cfb8eb69728b81fb8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "98664c86-0c94-457c-a212-c0b038673860", + "apim-request-id": "9e6ed8b2-0c9c-4f25-80f8-6ff0b67857b0", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:49 GMT", + "Date": "Thu, 12 Nov 2020 19:27:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5047" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -1793,44 +1565,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7109ac41e05a0a35cbf1dd1e9c631d8a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8b5376d5-3154-470f-b0af-7ed7d3d183fa", + "apim-request-id": "f7d3da25-8b89-4019-b5fe-4d47c00159cd", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:50 GMT", + "Date": "Thu, 12 Nov 2020 19:27:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "76" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -1840,44 +1606,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c18a9ba404f9e989505c8a3c9cf37261", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2aef809e-6d9a-4da8-882d-ef3c40ed9a47", + "apim-request-id": "caa01591-e770-46ce-ad38-380b2e9a7840", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:51 GMT", + "Date": "Thu, 12 Nov 2020 19:27:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "70" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -1887,44 +1647,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "162008d080b94e23220b2a44176da397", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "efee6612-cccd-4cdf-af0e-0be0d2b5c1c5", + "apim-request-id": "a0a2bd27-ef69-4f04-aee3-582ab5abd096", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:53 GMT", + "Date": "Thu, 12 Nov 2020 19:27:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "37" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "66" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -1934,44 +1688,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8df32c715d2d3cbf221f20fe55f86dd7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2947b969-6b21-4f59-8f97-b44dcffab1b1", + "apim-request-id": "702fa390-f92d-420c-a2e1-d7a89e3834b6", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:54 GMT", + "Date": "Thu, 12 Nov 2020 19:27:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "55" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "33" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -1981,44 +1729,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "944d7b7e074324d0783c9fedd945d2e2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "54c72d0c-aa0d-447d-a6d8-47093141f13b", + "apim-request-id": "b5106583-fa41-4e12-85ba-dce671859f73", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:55 GMT", + "Date": "Thu, 12 Nov 2020 19:28:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -2028,44 +1770,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "70cbf3b8e500723348e3f3995f25f929", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bc49fb6e-5a62-4b33-b416-13f050c7a098", + "apim-request-id": "6026d617-9857-4c69-ad4a-309741daca92", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:57 GMT", + "Date": "Thu, 12 Nov 2020 19:28:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -2075,44 +1811,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9bc5539d0f1f6a545bce14f1bed163dd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "951128e6-32b9-4a91-a49e-19ce079df9a2", + "apim-request-id": "ea76532a-85c8-4817-b9d9-f549bd6812f7", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:58 GMT", + "Date": "Thu, 12 Nov 2020 19:28:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "64" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -2122,44 +1852,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "62463d4dfd2d98d748db4b5f1336c453", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "99a8e326-5ed3-48b5-af86-8e8490969c46", + "apim-request-id": "d66a4368-4e1e-4b79-9ad7-24a65133e895", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:31:59 GMT", + "Date": "Thu, 12 Nov 2020 19:28:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -2169,44 +1893,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "86507643377fa9c39e611431d142b477", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7811e1b2-be11-47df-a7e8-498ba77b89f0", + "apim-request-id": "dfc7786c-491a-42fe-bd92-49345393053b", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:01 GMT", + "Date": "Thu, 12 Nov 2020 19:28:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -2216,44 +1934,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "214c168097de9ffc7b2d5244c4f55624", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a69a7a51-1d4a-4227-b5d3-8a8645f8d319", + "apim-request-id": "90be9ad3-8616-4801-855f-918b335d9b9b", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:02 GMT", + "Date": "Thu, 12 Nov 2020 19:28:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -2263,44 +1975,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "48aec109dc81165e7a9dc3cbe8a5c706", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b26340d6-0631-4d8f-ae47-905287c50a87", + "apim-request-id": "6f2c2bfc-1ba1-4839-8c1e-50119fcd649e", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:03 GMT", + "Date": "Thu, 12 Nov 2020 19:28:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -2310,44 +2016,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "fdded326a3eaab747ab00a52e47ee4a9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1a165825-6497-4095-9826-caf6e3725af1", + "apim-request-id": "22b5c4dd-686a-415b-a3a9-fa6233c59fa4", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:04 GMT", + "Date": "Thu, 12 Nov 2020 19:28:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "58" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -2357,44 +2057,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "0f27f00a6c93a3f5b736a641d330b7d5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bb4e286b-5690-409f-8475-ad5c2489db98", + "apim-request-id": "e23fb583-78e8-4079-aa4a-6794e5dcc9c9", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:11 GMT", + "Date": "Thu, 12 Nov 2020 19:28:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5081" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "82" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -2404,44 +2098,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f01e4c655916663a4d02ced1d10c31fc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0566ca9f-3748-47db-9e95-824f6a484782", + "apim-request-id": "a35d6660-911a-4bec-a63a-23dd895efe5f", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:12 GMT", + "Date": "Thu, 12 Nov 2020 19:28:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "53" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -2451,44 +2139,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f8c11ab8b87eba72dd3a45b4fc32d849", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f6d64fad-d2a6-446e-9a33-90a7b984ca53", + "apim-request-id": "dee5be66-61c4-4909-bfb1-1393c15b63e5", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:13 GMT", + "Date": "Thu, 12 Nov 2020 19:28:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "35" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -2498,44 +2180,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "98ec34f9f460b192b6c1c2919e24d2ab", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "af7f8d3f-a62c-4af4-be7f-86690dd7d7e4", + "apim-request-id": "3a78ac9e-f6d9-4ef9-8679-041ef1ef63b0", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:14 GMT", + "Date": "Thu, 12 Nov 2020 19:28:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "59" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -2545,44 +2221,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b889aa04be6ead57d96312db1385691a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "93f87e29-70b8-49d3-a1b8-49f7d0f6b337", + "apim-request-id": "1edfd6f3-dd66-4304-b19f-9d33e7d2b838", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:15 GMT", + "Date": "Thu, 12 Nov 2020 19:28:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "64" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -2592,44 +2262,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9dd88429991fc49b870f42bdf5e11bb9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "758a337b-2076-4937-bbc7-f15b0dd1ba29", + "apim-request-id": "5054a520-65e3-4d56-b698-e4f1a9988bd0", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:17 GMT", + "Date": "Thu, 12 Nov 2020 19:28:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "57" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -2639,44 +2303,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "52af9a681fa93adadd3fbefce1b79d30", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "edc542d6-f962-4bcd-bb7d-49af13236063", + "apim-request-id": "72206510-b589-4f1f-ae3d-3d8732d3cdf6", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:18 GMT", + "Date": "Thu, 12 Nov 2020 19:28:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -2686,44 +2344,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1a67a757344c6b8b0ec5315f7b9ab7f7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e50871bf-7272-4807-a5ad-bc101f53197f", + "apim-request-id": "f16bee72-1d88-4876-9fd9-96b08ca3cdf9", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:19 GMT", + "Date": "Thu, 12 Nov 2020 19:28:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "35" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -2733,44 +2385,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7972594717d60a71a99dbfdfda9fe2d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c460c49b-52f3-4d2f-85ad-6af044becf09", + "apim-request-id": "06b89389-96fd-44a9-b9ef-fb5da2a6b802", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:20 GMT", + "Date": "Thu, 12 Nov 2020 19:28:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -2780,44 +2426,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4e651271017a346c0e4444e3ee7bbf42", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "696cf143-7537-4353-841f-9b4348988120", + "apim-request-id": "6b92ac23-f796-47ba-bc9d-79d3926415d3", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:21 GMT", + "Date": "Thu, 12 Nov 2020 19:28:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -2827,44 +2467,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "87b4c6882444405a365d71ae74ac906f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f044fab1-94af-4ca9-a90e-4f04240e2a67", + "apim-request-id": "93572e14-2eef-46ab-b8a9-d1f54aaa11c1", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:23 GMT", + "Date": "Thu, 12 Nov 2020 19:28:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -2874,44 +2508,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "69ed61e26934467dec3e6a91d38d1b2d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "16e4efee-3282-40ae-923b-a78ce83d7082", + "apim-request-id": "4b4be307-a197-46d1-a4ad-092134ed58b2", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:24 GMT", + "Date": "Thu, 12 Nov 2020 19:28:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -2921,44 +2549,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "14567dde5bea4d8bb825171d90bebf62", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "822c182a-32a5-4fba-8b67-96ab070af053", + "apim-request-id": "0bfc607e-e802-4cef-8678-a39a216e466e", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:25 GMT", + "Date": "Thu, 12 Nov 2020 19:28:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "58" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "35" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -2968,44 +2590,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8d01d5b4558e1f0e496e9a06b9c86da8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "240fcd26-5a0f-43f3-aa1b-98f506deb871", + "apim-request-id": "67418283-28a3-4202-bed2-0809e954fbf4", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:26 GMT", + "Date": "Thu, 12 Nov 2020 19:28:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "66" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -3015,44 +2631,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f7d043417c558784d5a0b10f5160b52e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d7d925dd-27c4-4aad-afd8-0edaa01f2e8e", + "apim-request-id": "6f5119dd-894b-4b03-bd13-78b9db937412", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:28 GMT", + "Date": "Thu, 12 Nov 2020 19:28:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -3062,44 +2672,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "fedd087f8e8c889f6f37cb7cc08593ef", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2214503c-1650-47f4-824c-3425d9d56ce1", + "apim-request-id": "a0d9bdf1-8110-418e-a20c-6dbe79920c2a", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:29 GMT", + "Date": "Thu, 12 Nov 2020 19:28:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -3109,44 +2713,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4cdb6eb7c7ee380c5079b7eea4fecee8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "390f5f53-e7d6-4ed2-aecf-f878d428cbe5", + "apim-request-id": "7a55da0b-59d0-4531-b96d-d14c37074f6b", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:30 GMT", + "Date": "Thu, 12 Nov 2020 19:28:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "64" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -3156,44 +2754,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b1866cb86feab31ca447881eb008c650", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9d536493-92bf-4117-9c2e-03b91d7f6c54", + "apim-request-id": "77a1726c-9bcf-449a-8b89-aca4b777ff8c", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:31 GMT", + "Date": "Thu, 12 Nov 2020 19:28:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -3203,44 +2795,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e257c10c6985b840fca5ad12d6b0e470", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0b3c4a2c-68c3-45bc-971f-ee5a0a6a9bb6", + "apim-request-id": "a0cc4854-59fa-4c58-8c15-7a66a637e854", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:32 GMT", + "Date": "Thu, 12 Nov 2020 19:28:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -3250,44 +2836,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "54c3e269e2fe48045228a7a63eee8748", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "42366bb7-c693-4a4c-901b-a682e5175597", + "apim-request-id": "91458ebe-28a7-4b24-a2d6-9fd5e7ffc345", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:34 GMT", + "Date": "Thu, 12 Nov 2020 19:28:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -3297,44 +2877,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e2e167b2eba74f632bceb445c109ddf3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7b6b6c1e-3106-4d1b-9d84-6bf060df51d6", + "apim-request-id": "049adc32-e9e8-4c1e-a733-9b845a7acba6", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:35 GMT", + "Date": "Thu, 12 Nov 2020 19:28:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -3344,44 +2918,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ceb4186272442a51bd0e905dc199790d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2253a03f-a7d8-4814-b531-6a6a1f6a8907", + "apim-request-id": "dc1c9b9f-c3f5-4944-82c1-25a207e08d88", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:36 GMT", + "Date": "Thu, 12 Nov 2020 19:28:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "59" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -3391,44 +2959,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "6e5f651e02cf7dc97f7328302dbf8648", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7921cc53-7ffb-4292-8e0c-8ac20397ab92", + "apim-request-id": "eab10533-61be-4efe-bb9c-8cc5a2ed5923", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:37 GMT", + "Date": "Thu, 12 Nov 2020 19:28:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "33" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -3438,44 +3000,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "2644b34ab839400316b625985b068e92", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "521b0907-1a20-496c-ab19-df280d7795d1", + "apim-request-id": "51b7d7d0-eeed-4fc0-8fa0-1f12dddb7ba7", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:43 GMT", + "Date": "Thu, 12 Nov 2020 19:28:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5051" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -3485,44 +3041,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "5c26a7556ea95f244f374ed14921fcfd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7c95c20e-3401-4dd1-841a-51605e065028", + "apim-request-id": "226325f6-8b3b-403d-8f66-8c4058614ca2", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:45 GMT", + "Date": "Thu, 12 Nov 2020 19:28:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "61" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -3532,44 +3082,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "0d124788525465d3611f5718dd312279", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "53b1d190-57cb-45d6-b35d-a95c9138a3e0", + "apim-request-id": "438500dc-b978-46f7-9096-1e9c568eaeb4", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:46 GMT", + "Date": "Thu, 12 Nov 2020 19:28:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "66" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -3579,44 +3123,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "86da96e52998dc9e8fe5d7026a32f6f5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1432e646-71ac-4219-81cb-2924e6ec9bda", + "apim-request-id": "fcdeb51d-45f2-44f9-bea1-21344b00d3a7", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:47 GMT", + "Date": "Thu, 12 Nov 2020 19:28:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -3626,44 +3164,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "131027b980f3023dd3c1fb8a160b811d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f4ee2079-fad4-4165-8135-df50bc0ef53a", + "apim-request-id": "02eb4806-2b37-4b0a-a646-6937347766a0", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:48 GMT", + "Date": "Thu, 12 Nov 2020 19:28:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "78" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -3673,44 +3205,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b2ebd51576465e64a9367d6f7bd1fa2f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "770af469-77b4-4704-be62-9d6d538d21fc", + "apim-request-id": "b571886a-f026-4d43-b49f-e9cf9aa6d424", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:50 GMT", + "Date": "Thu, 12 Nov 2020 19:28:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "37" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "35" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -3720,44 +3246,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b55f62280e21658559d8b2d72e13c584", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "563243b1-2905-4578-b1bf-0495b79bed49", + "apim-request-id": "545dcd86-f039-49d4-bf6a-6df64b64feb1", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:51 GMT", + "Date": "Thu, 12 Nov 2020 19:28:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -3767,44 +3287,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "95edb963434743afc2b16abd02ce8701", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e54cfbbc-ec1f-48ee-a4cd-01327a549650", + "apim-request-id": "45e7b557-f457-43de-a9c6-13815f2dc33b", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:52 GMT", + "Date": "Thu, 12 Nov 2020 19:28:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -3814,44 +3328,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b461ccc6cbac06fc4f86596ec38d2f95", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "258f13b0-0d68-4dfc-bd8b-fe729cf28872", + "apim-request-id": "e38a26f5-bed9-4c17-ad7d-5b4b33556322", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:53 GMT", + "Date": "Thu, 12 Nov 2020 19:28:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "62" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -3861,44 +3369,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c10bf97065e4e4e8b31bf36fa3c7628b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "40bae807-214d-4376-9ef3-b85e3cd02979", + "apim-request-id": "a54ffaf5-ff39-4ea7-ae75-e5f6fafb1ede", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:54 GMT", + "Date": "Thu, 12 Nov 2020 19:28:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 0, "failed": 0, @@ -3908,44 +3410,899 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/97df8cd8-b810-4345-b882-422f79b48685_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "6210b15010b298d8bce645c0ea417f35", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "14d0ba2e-db35-485f-b4e9-89cf52ffe1fc", + "apim-request-id": "1ac954b3-54ed-4e96-b5c6-33e1c0963d62", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:28:51 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "37" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:27:11Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "094dd581c5c2601de47d0090d88d6287", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f46e45bd-522c-45fa-bec5-a130d3c50f4d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:28:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:27:11Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "121dce24cd7c5fe3207304fe1f27fa72", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "764b9f6f-cada-42c5-98c5-5dce139aa382", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:28:53 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "63" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:27:11Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "ceedbd9c587a8ac893af7e341048bf2f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "62320cd7-5601-4305-873f-c6c5fdc3043b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:28:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:27:11Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "1c9cbe836c23b4b8f2ede94fc01e41bc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0c5e9ef5-f3c8-489d-9be4-211724e5963c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:28:56 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "63" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:27:11Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "1bf38e8394a0cb0d05927ecc4fae4fd8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "fd9f0a15-64ff-461a-a163-7c3dfc9ab2b6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:28:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:27:11Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "617ad5b3dd8a304e0439db8d6f78ca75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ed00e1ed-c89b-4c18-8049-7bcade6b89f9", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:28:58 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:27:11Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "81b1c16ea454ee8fb1d01691edeb6544", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "83da070b-d4db-498b-8fe6-d34bb9cf0234", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:29:00 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "48" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:27:11Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "eb9b109ddfa4a5313fc31666b87f5c8c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "da2a0658-6f0a-443c-ab00-23cfe7cec780", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:29:01 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "50" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:27:11Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "8d5d09c8cefc0f84468bb0b9c6bd4219", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b2404733-4a84-475a-931f-a8ee1b52bee0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:29:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "63" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:27:11Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5eef97d4dedc8fd08f0c41918e283631", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7a0418b4-830a-4ee1-aee7-c38938d1112c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:29:03 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "36" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:27:11Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "e3c98974d78dcf478c8ca4182e77de82", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f2acd49f-81ca-4b06-976c-671ac4551ce8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:29:05 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "46" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:27:11Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "2092fc80fd8fe9b038cefdf08cf2811e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7f88cc1d-61fb-48e8-a141-81e5ba9abebb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:29:06 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "67" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:27:11Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "3d457f555ef3fc8b5020d2503ab86018", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e8835cf0-9acb-46ba-bd81-ea7b72c2e47f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:29:07 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "56" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:27:11Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9110bf2d159576a1d9dfabbfda574399", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "42a07114-8023-4bea-b94f-2759cc4289b5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:29:08 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "47" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:27:11Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "afc3850aa132228e7196d06f2b5fae80", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c1da2600-b419-4c85-b827-47e7eeae0927", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:29:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "48" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:27:11Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "ccc2e56ef0e23f88ddcf6313b3cc22f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c1cbdd7d-d2a9-4df2-abce-e425f6e4e693", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:29:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:27:11Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "b54638ddb0f58ce530ee1fff45324b7a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e73a066b-6ca0-4c2e-bef6-c894d181b694", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:29:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:27:11Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f4512a3176941ab7fc83d2633e7a6ea5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c0764e05-4e19-43c0-8769-170211e1b4fc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:29:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "84" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:27:11Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f292d774f919bd8bff369cf3d089f9ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e838d1c2-2a1a-4044-b9e3-2ef17980ce56", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:29:14 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "79" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:27:11Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "88e2e8842d7b6665812bb871de824db6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "84f17f7b-193e-4d62-8566-3602e07e7327", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:29:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-12T19:27:11Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "6e8b797f589f37619f93f55ddac34973", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "30ec7373-0a49-4cf2-95f4-015fe4e2208c", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:56 GMT", + "Date": "Thu, 12 Nov 2020 19:29:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "186" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "98" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "97df8cd8-b810-4345-b882-422f79b48685_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:30:46Z", - "createdDateTime": "2020-11-09T19:30:45Z", - "expirationDateTime": "2020-11-11T19:30:45Z", + "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:11Z", + "createdDateTime": "2020-11-12T19:27:11Z", + "expirationDateTime": "2020-11-13T19:27:11Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46Z" + "lastUpdateDateTime": "2020-11-12T19:27:11Z" }, "completed": 1, "failed": 0, @@ -3954,12 +4311,12 @@ "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-09T19:30:46.1988223Z", + "lastUpdateDateTime": "2020-11-12T19:27:11.6265621Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "", + "redactedText": "A patient with medical id ******** whose phone number is ************ is going under heart surgery", "id": "0", "entities": [ { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json index 51a6307d5a803..7872efef941e7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json @@ -4,19 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "265", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "00-eb2187d8d0a22a4baee707016cc450b7-f01a84148de8e749-00", - "traceparent": "00-eb2187d8d0a22a4baee707016cc450b7-f01a84148de8e749-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-8fed2b92b92a7f45ab3016f60a6fb939-4187e8478bf84141-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "bc10ae4f3809e9b40d4f6b783fc973c7", "x-ms-return-client-request-id": "true" }, @@ -47,54 +40,125 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "cc3132aa-c421-4c34-b9d5-9cbc2f6a0617", - "Date": "Wed, 11 Nov 2020 23:27:44 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/06d023d4-5eab-4c1c-8f32-25109cf6647b_637406496000000000", + "apim-request-id": "d2b22176-0cc2-4ea8-926c-a6b488a3f395", + "Date": "Thu, 12 Nov 2020 19:24:41 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/1971736b-44d3-4965-9b03-4966911ff5d9_637407360000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "312" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "121" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/06d023d4-5eab-4c1c-8f32-25109cf6647b_637406496000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/1971736b-44d3-4965-9b03-4966911ff5d9_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|798d337c-426444c94be64117.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e45290396662ad6e1e38f63536f933b4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "01071d14-ed3f-4460-a1f7-5fb1939d5e20", + "apim-request-id": "a8ccdf69-cc9b-4217-9179-04c30a5f4e1d", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 11 Nov 2020 23:27:51 GMT", + "Date": "Thu, 12 Nov 2020 19:24:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "366" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { - "jobId": "06d023d4-5eab-4c1c-8f32-25109cf6647b_637406496000000000", - "lastUpdateDateTime": "2020-11-11T23:27:45Z", - "createdDateTime": "2020-11-11T23:27:44Z", - "expirationDateTime": "2020-11-12T23:27:44Z", + "jobId": "1971736b-44d3-4965-9b03-4966911ff5d9_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:41Z", + "createdDateTime": "2020-11-12T19:24:41Z", + "expirationDateTime": "2020-11-13T19:24:41Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "lastUpdateDateTime": "2020-11-12T19:24:41Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 0, + "total": 0 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/1971736b-44d3-4965-9b03-4966911ff5d9_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "026f5447158ee5d664682b08d83e8d91", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "89c6a63b-0f4e-4750-bbb0-941b555b0707", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "38" + }, + "ResponseBody": { + "jobId": "1971736b-44d3-4965-9b03-4966911ff5d9_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:41Z", + "createdDateTime": "2020-11-12T19:24:41Z", + "expirationDateTime": "2020-11-13T19:24:41Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "lastUpdateDateTime": "2020-11-12T19:24:41Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/1971736b-44d3-4965-9b03-4966911ff5d9_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "3f2ab8555934e81b40639ed1417fb313", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "39e96c8f-0d81-4976-b0e4-9885b4e5dc11", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "73" + }, + "ResponseBody": { + "jobId": "1971736b-44d3-4965-9b03-4966911ff5d9_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:41Z", + "createdDateTime": "2020-11-12T19:24:41Z", + "expirationDateTime": "2020-11-13T19:24:41Z", "status": "succeeded", "errors": [], "tasks": { "details": { - "lastUpdateDateTime": "2020-11-11T23:27:45Z" + "lastUpdateDateTime": "2020-11-12T19:24:41Z" }, "completed": 1, "failed": 0, @@ -102,7 +166,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2020-11-11T23:27:45.4944375Z", + "lastUpdateDateTime": "2020-11-12T19:24:41.4780298Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTestAsync.json index db33407cbd656..7c3edc072badf 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Content-Length": "302", + "Accept": "application/json, text/json", + "Content-Length": "265", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9b8eed0b53d020428152ce0d1d45b4de-c31bd7e672009748-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-84188035c5b05e42b5ce1c1adc79f163-35742b4d74097e45-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f64d021068f23b47239dc64d32ac0d55", "x-ms-return-client-request-id": "true" }, @@ -42,60 +36,51 @@ } } ] - }, - "displayName": "AnalyzeOperationTest" + } }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "e48d46dd-b11e-4ff1-a000-468e784199a4", - "Date": "Mon, 09 Nov 2020 19:32:59 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4e00423d-0262-47b6-8cc3-9c6fd78db68e_637404768000000000", + "apim-request-id": "453820ac-4833-48c0-9bbc-cfbc2d8b11c6", + "Date": "Thu, 12 Nov 2020 19:29:18 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/356334f1-471e-4ae8-93e4-4099155a2426_637407360000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "243" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "33" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4e00423d-0262-47b6-8cc3-9c6fd78db68e_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/356334f1-471e-4ae8-93e4-4099155a2426_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "326f6a53ce870c398bb9ee51f13f5560", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d6856c36-85ce-429a-a17f-d2ef0309b01f", + "apim-request-id": "2ac4c14a-72de-49b4-826c-ae2078dfe6e4", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:32:59 GMT", + "Date": "Thu, 12 Nov 2020 19:29:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "4e00423d-0262-47b6-8cc3-9c6fd78db68e_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:32:59Z", - "createdDateTime": "2020-11-09T19:32:59Z", - "expirationDateTime": "2020-11-11T19:32:59Z", + "jobId": "356334f1-471e-4ae8-93e4-4099155a2426_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:18Z", + "createdDateTime": "2020-11-12T19:29:18Z", + "expirationDateTime": "2020-11-13T19:29:18Z", "status": "notStarted", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T19:32:59Z" + "lastUpdateDateTime": "2020-11-12T19:29:18Z" }, "completed": 0, "failed": 0, @@ -105,44 +90,36 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4e00423d-0262-47b6-8cc3-9c6fd78db68e_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/356334f1-471e-4ae8-93e4-4099155a2426_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4d2db5835d6ee56b0a068d1cd4f24286", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5961b880-36d7-41aa-8041-1ef8707a2765", + "apim-request-id": "2b09c022-742a-47a8-842b-7682f7e85200", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:33:00 GMT", + "Date": "Thu, 12 Nov 2020 19:29:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "4e00423d-0262-47b6-8cc3-9c6fd78db68e_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:33:00Z", - "createdDateTime": "2020-11-09T19:32:59Z", - "expirationDateTime": "2020-11-11T19:32:59Z", + "jobId": "356334f1-471e-4ae8-93e4-4099155a2426_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:18Z", + "createdDateTime": "2020-11-12T19:29:18Z", + "expirationDateTime": "2020-11-13T19:29:18Z", "status": "notStarted", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T19:33:00Z" + "lastUpdateDateTime": "2020-11-12T19:29:18Z" }, "completed": 0, "failed": 0, @@ -152,91 +129,36 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4e00423d-0262-47b6-8cc3-9c6fd78db68e_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/356334f1-471e-4ae8-93e4-4099155a2426_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "84470c68f8b742c6c8406a3979f549e3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "384211a7-25c1-4e7e-b965-40a33ddd69b9", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:33:02 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "4e00423d-0262-47b6-8cc3-9c6fd78db68e_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:33:00Z", - "createdDateTime": "2020-11-09T19:32:59Z", - "expirationDateTime": "2020-11-11T19:32:59Z", - "status": "notStarted", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T19:33:00Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4e00423d-0262-47b6-8cc3-9c6fd78db68e_637404768000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7dc96647c07ef5e7fe892880411d3899", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "23971936-4493-403f-90cc-e514817a4b95", + "apim-request-id": "a6ab372f-8fd4-4001-95e8-0ecbb3a218e8", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:33:03 GMT", + "Date": "Thu, 12 Nov 2020 19:29:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "87" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "72" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "4e00423d-0262-47b6-8cc3-9c6fd78db68e_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:33:00Z", - "createdDateTime": "2020-11-09T19:32:59Z", - "expirationDateTime": "2020-11-11T19:32:59Z", + "jobId": "356334f1-471e-4ae8-93e4-4099155a2426_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:18Z", + "createdDateTime": "2020-11-12T19:29:18Z", + "expirationDateTime": "2020-11-13T19:29:18Z", "status": "succeeded", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T19:33:00Z" + "lastUpdateDateTime": "2020-11-12T19:29:18Z" }, "completed": 1, "failed": 0, @@ -244,8 +166,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T19:33:00.1322097Z", + "lastUpdateDateTime": "2020-11-12T19:29:18.6446235Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json index 06beb0f96d129..6fc1dd7fc28e6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json @@ -4,19 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "336", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "00-529fe8196da0dd46a334d498bced16b1-3d84f1e94128ae4e-00", - "traceparent": "00-529fe8196da0dd46a334d498bced16b1-3d84f1e94128ae4e-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-ded078b042fc5e4e82bddae41e696ecc-c7dc6107e9be1143-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a87cf6cc9d26e81e4ad3c40561433cdc", "x-ms-return-client-request-id": "true" }, @@ -48,56 +41,213 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "9b1901fe-caf1-4836-8e0b-b0d06cb83fdf", - "Date": "Thu, 12 Nov 2020 00:11:21 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e8919afe-03a2-496d-8e53-6a04448ec21d_637407360000000000", + "apim-request-id": "df9d5210-7341-4a04-9d10-bed255d5a0fc", + "Date": "Thu, 12 Nov 2020 19:24:43 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b1f7b1a0-ee71-48fe-909e-0028444f192b_637407360000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "171" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "36" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e8919afe-03a2-496d-8e53-6a04448ec21d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b1f7b1a0-ee71-48fe-909e-0028444f192b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|fbdda08e-4dc726341c3db8aa.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "829f189700a91102b7313377687a2cfe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "15331f2c-d4e7-42ce-89f1-95b36a044825", + "apim-request-id": "9ddd4046-7261-4b38-9711-09d38c735212", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:11:27 GMT", + "Date": "Thu, 12 Nov 2020 19:24:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "259" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "displayName": "AnalyzeOperationWithLanguageTest", - "jobId": "e8919afe-03a2-496d-8e53-6a04448ec21d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:11:22Z", - "createdDateTime": "2020-11-12T00:11:22Z", - "expirationDateTime": "2020-11-13T00:11:22Z", + "jobId": "b1f7b1a0-ee71-48fe-909e-0028444f192b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:44Z", + "createdDateTime": "2020-11-12T19:24:44Z", + "expirationDateTime": "2020-11-13T19:24:44Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithLanguageTest", + "lastUpdateDateTime": "2020-11-12T19:24:44Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 0, + "total": 0 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b1f7b1a0-ee71-48fe-909e-0028444f192b_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "84565c5816eeba49622c1ac1b6d8c94c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "80ea87d5-34b3-41d6-ab91-e5a4e3a7b197", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "46" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithLanguageTest", + "jobId": "b1f7b1a0-ee71-48fe-909e-0028444f192b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:44Z", + "createdDateTime": "2020-11-12T19:24:44Z", + "expirationDateTime": "2020-11-13T19:24:44Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithLanguageTest", + "lastUpdateDateTime": "2020-11-12T19:24:44Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b1f7b1a0-ee71-48fe-909e-0028444f192b_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "e6dbb519b5b4cb28f46af0f469a680d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b2644bee-1549-4472-81ac-6e7a5c287039", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "42" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithLanguageTest", + "jobId": "b1f7b1a0-ee71-48fe-909e-0028444f192b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:44Z", + "createdDateTime": "2020-11-12T19:24:44Z", + "expirationDateTime": "2020-11-13T19:24:44Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithLanguageTest", + "lastUpdateDateTime": "2020-11-12T19:24:44Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b1f7b1a0-ee71-48fe-909e-0028444f192b_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "05acc6a6b8ec80eecfe5207de6405bde", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ff2d7b5a-ab20-4370-8fa1-483ab7fa1316", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "40" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithLanguageTest", + "jobId": "b1f7b1a0-ee71-48fe-909e-0028444f192b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:44Z", + "createdDateTime": "2020-11-12T19:24:44Z", + "expirationDateTime": "2020-11-13T19:24:44Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithLanguageTest", + "lastUpdateDateTime": "2020-11-12T19:24:44Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b1f7b1a0-ee71-48fe-909e-0028444f192b_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "b25ee768459fa349338b9083255450bb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "33d1dcf1-34ff-4ef8-9317-def67ea9cfa3", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:24:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "84" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithLanguageTest", + "jobId": "b1f7b1a0-ee71-48fe-909e-0028444f192b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:44Z", + "createdDateTime": "2020-11-12T19:24:44Z", + "expirationDateTime": "2020-11-13T19:24:44Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2020-11-12T00:11:22Z" + "lastUpdateDateTime": "2020-11-12T19:24:44Z" }, "completed": 1, "failed": 0, @@ -106,7 +256,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2020-11-12T00:11:22.9627091Z", + "lastUpdateDateTime": "2020-11-12T19:24:44.5786667Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTestAsync.json index 5c003ed6aadb3..f98e8867ee7a1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Content-Length": "324", + "Accept": "application/json, text/json", + "Content-Length": "336", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3f255dc782918f448679095ca381849b-2d9c7e47b62a2945-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-4530c849a783b54a8554a015ee1c2917-959439da27547d48-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ff1f44cf0b7d52519f4611a53ca09dbe", "x-ms-return-client-request-id": "true" }, @@ -43,106 +37,94 @@ } ] }, - "displayName": "AnalyzeOperationTest" + "displayName": "AnalyzeOperationWithLanguageTest" }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "742ad900-bf3b-4bf7-b231-2de2acdbeb94", - "Date": "Mon, 09 Nov 2020 19:33:03 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/7c6052a1-59ef-4695-a64c-0044db56210f_637404768000000000", + "apim-request-id": "0a9de4de-a963-4724-b27f-ea2ae0211552", + "Date": "Thu, 12 Nov 2020 19:29:20 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a493a7ba-0875-4f8a-b556-520c5a69f75d_637407360000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "88" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "220" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/7c6052a1-59ef-4695-a64c-0044db56210f_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a493a7ba-0875-4f8a-b556-520c5a69f75d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e5fe6af6690f6491194fc0223b355da1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fbfba135-849d-4436-9c34-6e11c7a25f50", + "apim-request-id": "2124d6e6-0eb0-4f01-bbae-5b14d3c5d4cd", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:33:03 GMT", + "Date": "Thu, 12 Nov 2020 19:29:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "56" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "7c6052a1-59ef-4695-a64c-0044db56210f_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:33:03Z", - "createdDateTime": "2020-11-09T19:33:03Z", - "expirationDateTime": "2020-11-11T19:33:03Z", + "displayName": "AnalyzeOperationWithLanguageTest", + "jobId": "a493a7ba-0875-4f8a-b556-520c5a69f75d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:21Z", + "createdDateTime": "2020-11-12T19:29:21Z", + "expirationDateTime": "2020-11-13T19:29:21Z", "status": "notStarted", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T19:33:03Z" + "name": "AnalyzeOperationWithLanguageTest", + "lastUpdateDateTime": "2020-11-12T19:29:21Z" }, "completed": 0, "failed": 0, - "inProgress": 0, - "total": 0 + "inProgress": 1, + "total": 1 } } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/7c6052a1-59ef-4695-a64c-0044db56210f_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a493a7ba-0875-4f8a-b556-520c5a69f75d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c22721a113540c5c7d4db56795b725e8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "66c61705-5128-4949-81ee-a220cf7a0255", + "apim-request-id": "a6a6a0c6-5f59-49dd-b49c-be8a80b725b4", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:33:05 GMT", + "Date": "Thu, 12 Nov 2020 19:29:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "32" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "7c6052a1-59ef-4695-a64c-0044db56210f_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:33:04Z", - "createdDateTime": "2020-11-09T19:33:03Z", - "expirationDateTime": "2020-11-11T19:33:03Z", - "status": "running", + "displayName": "AnalyzeOperationWithLanguageTest", + "jobId": "a493a7ba-0875-4f8a-b556-520c5a69f75d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:21Z", + "createdDateTime": "2020-11-12T19:29:21Z", + "expirationDateTime": "2020-11-13T19:29:21Z", + "status": "notStarted", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T19:33:04Z" + "name": "AnalyzeOperationWithLanguageTest", + "lastUpdateDateTime": "2020-11-12T19:29:21Z" }, "completed": 0, "failed": 0, @@ -152,44 +134,120 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/7c6052a1-59ef-4695-a64c-0044db56210f_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a493a7ba-0875-4f8a-b556-520c5a69f75d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c5f8bf9fc78e66c8b2bbe62e4a2e1669", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6622e334-3d2e-42d9-88f4-9df280192ed5", + "apim-request-id": "e3e779db-a4a1-4e8e-8fe6-fccb64c2d258", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:29:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithLanguageTest", + "jobId": "a493a7ba-0875-4f8a-b556-520c5a69f75d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:21Z", + "createdDateTime": "2020-11-12T19:29:21Z", + "expirationDateTime": "2020-11-13T19:29:21Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithLanguageTest", + "lastUpdateDateTime": "2020-11-12T19:29:21Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a493a7ba-0875-4f8a-b556-520c5a69f75d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "1b036fe8da78e36a0df268c1b329cf61", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b3d823d3-0325-4651-88b0-f4442b302c66", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:29:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "38" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithLanguageTest", + "jobId": "a493a7ba-0875-4f8a-b556-520c5a69f75d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:21Z", + "createdDateTime": "2020-11-12T19:29:21Z", + "expirationDateTime": "2020-11-13T19:29:21Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithLanguageTest", + "lastUpdateDateTime": "2020-11-12T19:29:21Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a493a7ba-0875-4f8a-b556-520c5a69f75d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7c83d729973dd91359c00f992c2ec14e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "abb5b8a3-694d-4a36-9500-e95d9d089e73", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:33:06 GMT", + "Date": "Thu, 12 Nov 2020 19:29:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "70" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "77" }, "ResponseBody": { - "displayName": "AnalyzeOperationTest", - "jobId": "7c6052a1-59ef-4695-a64c-0044db56210f_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:33:04Z", - "createdDateTime": "2020-11-09T19:33:03Z", - "expirationDateTime": "2020-11-11T19:33:03Z", + "displayName": "AnalyzeOperationWithLanguageTest", + "jobId": "a493a7ba-0875-4f8a-b556-520c5a69f75d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:21Z", + "createdDateTime": "2020-11-12T19:29:21Z", + "expirationDateTime": "2020-11-13T19:29:21Z", "status": "succeeded", "errors": [], "tasks": { "details": { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T19:33:04Z" + "name": "AnalyzeOperationWithLanguageTest", + "lastUpdateDateTime": "2020-11-12T19:29:21Z" }, "completed": 1, "failed": 0, @@ -197,8 +255,8 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "name": "AnalyzeOperationTest", - "lastUpdateDateTime": "2020-11-09T19:33:04.2244585Z", + "name": "AnalyzeOperationWithLanguageTest", + "lastUpdateDateTime": "2020-11-12T19:29:21.6691666Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasks.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasks.json index 58a440b84e43b..9fd75886012a6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasks.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasks.json @@ -4,19 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "478", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "00-b8d551e535fe164084957a99a7855b8f-e35078dc9dd66847-00", - "traceparent": "00-b8d551e535fe164084957a99a7855b8f-e35078dc9dd66847-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-f5898dbba6f17d408daf4039494668a8-c34acaf175d97c4f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "36d74cae0543ad22b4752e104a677574", "x-ms-return-client-request-id": "true" }, @@ -62,262 +55,172 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "94b37d99-93b9-4dab-9c7a-c59fa8d263b4", - "Date": "Thu, 12 Nov 2020 00:06:17 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", + "apim-request-id": "c46cc714-fceb-42b6-83c3-c526581b7e7c", + "Date": "Thu, 12 Nov 2020 19:24:49 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "169" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "143" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af84d-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "360f939000899016ea2d36ca05142466", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "befbf09b-f18b-48aa-a60e-3e137c682d5d", + "apim-request-id": "b3a8cc58-d1b3-4d47-833e-7ee4d2414887", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:18 GMT", + "Date": "Thu, 12 Nov 2020 19:24:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "149" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", - "status": "running", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:49Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", + "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:49Z" }, "completed": 0, "failed": 0, - "inProgress": 3, - "total": 3 + "inProgress": 0, + "total": 0 } } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af84e-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "32033b4d84a2f3a2ac913141d710299b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "37c2eefc-f848-4db0-9ade-77a7871b7230", + "apim-request-id": "be39dd18-da6a-43aa-8deb-d941a6168839", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:24 GMT", + "Date": "Thu, 12 Nov 2020 19:24:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "183" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "101" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 1, + "completed": 0, "failed": 0, - "inProgress": 2, - "total": 3, - "keyPhraseExtractionTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" - ], - "warnings": [] - }, - { - "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-07-01" - } - } - ] + "inProgress": 3, + "total": 3 } } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af84f-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f287b823979aae6e35464c16cf57a89f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b70aab55-88c6-4b0c-b6ce-fb41e5959656", + "apim-request-id": "997a979e-aa28-4be6-8efe-a94781b8ca92", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:26 GMT", + "Date": "Thu, 12 Nov 2020 19:24:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "151" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "102" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 1, + "completed": 0, "failed": 0, - "inProgress": 2, - "total": 3, - "keyPhraseExtractionTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" - ], - "warnings": [] - }, - { - "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-07-01" - } - } - ] + "inProgress": 3, + "total": 3 } } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af850-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "0fc2c75142640bd1f11c89f7cfd5b8da", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d4ccfd1f-a8fb-4a35-b4cd-b9c5a3b51f0d", + "apim-request-id": "5f7fe393-c69e-48bd-8ca7-8681f411d45e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:27 GMT", + "Date": "Thu, 12 Nov 2020 19:24:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "138" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "143" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -326,7 +229,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -358,45 +261,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af851-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4da79a03318db6cbcc54fd5b388b2454", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "60dddfc2-d6e8-4ad6-815b-44221b5451b4", + "apim-request-id": "1ae88010-db99-4e8d-ac15-08138cc135c9", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:29 GMT", + "Date": "Thu, 12 Nov 2020 19:24:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "212" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "108" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -405,7 +301,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -437,45 +333,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af852-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "10ef92e91a4de036e67c017e0d76df5f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ab97fbb2-6362-4c86-9f46-326a60762669", + "apim-request-id": "659fc8a4-bd50-4983-9506-30bfebe9e89a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:30 GMT", + "Date": "Thu, 12 Nov 2020 19:24:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "126" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "111" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -484,7 +373,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -516,45 +405,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af853-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3412728d5bb02012fb0c420f4575d365", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b47a569e-95dc-45e2-9af2-60a4895a0d1b", + "apim-request-id": "d8c38107-8c1c-423d-a853-591c80e1a531", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:31 GMT", + "Date": "Thu, 12 Nov 2020 19:24:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "130" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "140" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -563,7 +445,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -595,45 +477,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af854-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3d0e35f7a8e5e98c63c76610304da856", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a2ad7dc4-18a0-4242-83fd-cb79e02a132d", + "apim-request-id": "4fc83645-60f4-48d1-a79e-f7d6305532eb", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:33 GMT", + "Date": "Thu, 12 Nov 2020 19:24:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "148" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "147" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -642,7 +517,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -674,45 +549,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af855-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c5cd9d75ef798da47fcf1441d8269b70", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bb6b4ad6-477d-439a-b3be-720a2b33c8ce", + "apim-request-id": "588d5083-35f2-4d2c-a681-7f9b416e7b59", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:34 GMT", + "Date": "Thu, 12 Nov 2020 19:25:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "147" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "192" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -721,7 +589,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -753,45 +621,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af856-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d8869ca8a267e579e629d0e8f401f0ae", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "71c8403a-5531-442f-a253-72f0065c1458", + "apim-request-id": "168f9d4f-2f27-4a65-9ab4-86cc811b7a89", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:35 GMT", + "Date": "Thu, 12 Nov 2020 19:25:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "171" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "135" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -800,7 +661,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -832,45 +693,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af857-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a79aeb630da808eb9080bd16944a103c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4a0ff40e-284e-4303-8de6-0a586b87f927", + "apim-request-id": "3f9f2826-ba32-401f-b123-f91546e55667", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:37 GMT", + "Date": "Thu, 12 Nov 2020 19:25:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "128" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "121" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -879,7 +733,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -911,45 +765,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af858-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9368f62bd0c6d3ee23e8df501fbb997e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "03f95b62-1e19-4c20-82da-31e95476f01b", + "apim-request-id": "066f531c-7c14-4e25-bdca-a32e19df1031", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:38 GMT", + "Date": "Thu, 12 Nov 2020 19:25:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "128" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "145" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -958,7 +805,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -990,45 +837,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af859-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ecde66dff38c9bc8b17e47e7e563509b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1f48dd0c-d4e9-43d4-929c-616a9e67d965", + "apim-request-id": "85f266ab-e4f6-4938-8f3f-9e6943080a1e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:39 GMT", + "Date": "Thu, 12 Nov 2020 19:25:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "180" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "128" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -1037,7 +877,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -1069,45 +909,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af85a-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "febd93185c9993e7fdc784bf2d9ae8d4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f4e8104c-82b7-46b2-a5cd-1511236720ba", + "apim-request-id": "a54f057a-260c-4f35-8170-8ace5dfbf3c9", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:41 GMT", + "Date": "Thu, 12 Nov 2020 19:25:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "157" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "116" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -1116,7 +949,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -1148,45 +981,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af85b-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "2e363ee7236b38b02ecce2488807edc0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d0512ba7-3ae3-4641-ac09-3182abf8926c", + "apim-request-id": "c474e66f-909b-49a7-b4d8-939fc017029b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:42 GMT", + "Date": "Thu, 12 Nov 2020 19:25:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "130" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "138" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -1195,7 +1021,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -1227,45 +1053,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af85c-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8b3844989bfe83e57f4befc46f086d16", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aae12f05-71a4-40a1-a7e0-0c63cd9f14dc", + "apim-request-id": "6fea5a84-a1b8-4240-99e0-4cc52dc36aa0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:43 GMT", + "Date": "Thu, 12 Nov 2020 19:25:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "127" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "139" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -1274,7 +1093,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -1306,45 +1125,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af85d-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a6ff7395222cf430e384cfcc7a9e0af5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0e330d12-b432-4691-89a5-695498b95c16", + "apim-request-id": "6cdcb6e0-f49e-4b11-a222-5b9a8c706c1d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:44 GMT", + "Date": "Thu, 12 Nov 2020 19:25:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "126" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "131" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -1353,7 +1165,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -1385,45 +1197,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af85e-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e927c4d95d624cd658b3af2033ebc925", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "798905a7-6623-48d7-a577-8fc786894a61", + "apim-request-id": "9d6ebf0d-8c64-4a69-a85d-8bfc47c69c3b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:45 GMT", + "Date": "Thu, 12 Nov 2020 19:25:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "131" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "132" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -1432,7 +1237,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -1464,45 +1269,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af85f-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "15b2cc5e470775931443a779cb1908e0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6401f222-9a18-4c82-ba75-3f55bb08cec6", + "apim-request-id": "678430c0-cdad-4a4c-8e29-c7f5742961c4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:47 GMT", + "Date": "Thu, 12 Nov 2020 19:25:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "135" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "171" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -1511,7 +1309,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -1543,45 +1341,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af860-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "aaeaf94084e038b39db34d79720fc1f7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "78428689-d05b-4b3d-ba52-117856765adf", + "apim-request-id": "3816a5fb-c771-4e2f-a86f-df98b7bd9dd6", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:49 GMT", + "Date": "Thu, 12 Nov 2020 19:25:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "128" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -1590,7 +1381,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -1622,45 +1413,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af861-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ae6daabbf5eb92ee30b1d51fb55c813f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e8a8dbea-39b3-4d49-82d1-cd3dcd5d8e86", + "apim-request-id": "d5d7c2d1-e919-4c53-a59b-2b5fc402115b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:50 GMT", + "Date": "Thu, 12 Nov 2020 19:25:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "165" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "167" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -1669,7 +1453,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -1701,45 +1485,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af862-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3adfceaa1e00da44187a7854f91a0204", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b78cf6e3-bb37-431a-9ea4-e98b6a056a46", + "apim-request-id": "38471082-ef8c-43e2-bb9e-70d6016cbcf7", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:52 GMT", + "Date": "Thu, 12 Nov 2020 19:25:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "119" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "121" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -1748,7 +1525,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -1780,45 +1557,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af863-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "20beb0825aab4af40b58792fae948240", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1e44e5cb-6e71-4685-8d3d-739f44fb67f5", + "apim-request-id": "5e4ebbb2-813d-4b9c-99d3-d43523f8fc42", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:53 GMT", + "Date": "Thu, 12 Nov 2020 19:25:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "161" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "130" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -1827,7 +1597,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -1859,45 +1629,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af864-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a3ce0e3286309cf6659295717d9a9916", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0878cdf2-faaf-44a7-a704-0e872f54b55c", + "apim-request-id": "925a0a33-0542-4a75-ab88-3f0cf9eed1b5", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:54 GMT", + "Date": "Thu, 12 Nov 2020 19:25:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "133" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "172" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -1906,7 +1669,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -1938,45 +1701,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af865-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "059dd1ae609d4f93da942ea8a4152b84", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "430cf8e7-cdd9-47ac-b859-d2e09421cb70", + "apim-request-id": "5d44e9ef-9145-433c-8bf3-c50a84a10a05", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:55 GMT", + "Date": "Thu, 12 Nov 2020 19:25:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "166" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "200" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -1985,7 +1741,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -2017,45 +1773,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af866-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ea2137f85e4bfbd4b922bb18c583cc71", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "79b8fdb6-7e21-4823-a4a3-f65c07d83f84", + "apim-request-id": "a8c8ae66-37c7-4363-b76b-febddc21e2ed", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:57 GMT", + "Date": "Thu, 12 Nov 2020 19:25:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "150" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "138" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -2064,7 +1813,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -2096,45 +1845,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af867-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "dd8063bf7df6d2a37a7ec99b584ef74f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8c919af5-8ba9-4243-b304-4c9add0c9c84", + "apim-request-id": "3ff72a0e-5b5a-412f-8e63-272f54de9681", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:06:58 GMT", + "Date": "Thu, 12 Nov 2020 19:25:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "154" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "128" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -2143,7 +1885,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -2175,45 +1917,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af868-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "46791167ae784fcafca14b7ba47b8a57", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "978d2375-5483-4d98-89ad-38c93cf91888", + "apim-request-id": "ab3bb705-7916-4212-b018-7ff5c2d10493", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:00 GMT", + "Date": "Thu, 12 Nov 2020 19:25:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "144" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "125" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -2222,7 +1957,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -2254,45 +1989,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af869-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "41e9bdc74d957a8d934f70cd9539a36b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a2ded01c-8343-473a-bedf-a6670242797f", + "apim-request-id": "90a0b0c8-8542-4551-a0bd-4eff10f57907", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:01 GMT", + "Date": "Thu, 12 Nov 2020 19:25:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "164" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "128" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -2301,7 +2029,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -2333,45 +2061,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af86a-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b3b16b2a860a10f99830e15432272dff", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7a28dd7e-cda1-4b0b-b955-8f77b8908d8a", + "apim-request-id": "8e3a1a81-30fd-4e9e-9121-5500e103bbad", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:02 GMT", + "Date": "Thu, 12 Nov 2020 19:25:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "160" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "139" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -2380,7 +2101,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -2412,45 +2133,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af86b-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9ad372f3b66519ba84feb2283dfdbac3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d625159e-8e3d-4de0-8bcb-41a383017947", + "apim-request-id": "42d74995-9b99-4b0a-8a04-2639caf949f3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:04 GMT", + "Date": "Thu, 12 Nov 2020 19:25:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "129" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "135" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -2459,7 +2173,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -2491,45 +2205,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af86c-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3851dffed7c9414cc4d8a9646c38486b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dac6a888-4281-4f70-845f-e6029ae275ec", + "apim-request-id": "086ae6f2-478f-4525-868b-eb99f2729a63", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:05 GMT", + "Date": "Thu, 12 Nov 2020 19:25:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "137" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "115" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -2538,7 +2245,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -2570,45 +2277,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af86d-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "22d9702208667306b1982f0bd3d1d29a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f7ae6f63-3f8d-4978-b673-60483b3cfff8", + "apim-request-id": "e495e1b0-802d-4c57-8ecd-515c5e67010c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:06 GMT", + "Date": "Thu, 12 Nov 2020 19:25:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "134" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "133" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -2617,7 +2317,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -2649,45 +2349,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af86e-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "52561d75f4d61c352591d68d0d55ac4c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "31b3ad2f-59ef-4453-9110-1aea41ddb460", + "apim-request-id": "0c226230-7a16-4679-9b98-8ad3e76b3315", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:08 GMT", + "Date": "Thu, 12 Nov 2020 19:25:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "197" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "135" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -2696,7 +2389,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -2728,45 +2421,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af86f-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "cd0546b59724f55dd9dd8731a7416df3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d33b7518-a2b2-4a8b-8907-9ceafac4c982", + "apim-request-id": "180026d5-c0cc-49da-ac1c-5f669d791426", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:09 GMT", + "Date": "Thu, 12 Nov 2020 19:25:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "116" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "160" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -2775,7 +2461,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -2807,45 +2493,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af870-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4fee0e05f6e12d953abcfdd43278665b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a6aece72-bb7d-427f-b36a-c2c8939d9032", + "apim-request-id": "f267f956-e501-4872-99c0-6b278bc8351b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:10 GMT", + "Date": "Thu, 12 Nov 2020 19:25:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "119" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "136" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -2854,7 +2533,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -2886,45 +2565,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af871-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8c55e2eb05cbde76c06078f86c0475e4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e20ef13b-741f-41a1-97e5-5c9ff4a2fb92", + "apim-request-id": "ac1047ac-9359-4a04-94c8-beed85e2488c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:12 GMT", + "Date": "Thu, 12 Nov 2020 19:25:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "139" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "150" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -2933,7 +2605,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -2965,45 +2637,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af872-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ff87e3235d67bf6ab1d892679a88c360", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c1f8d7bf-8fbc-42fe-9cc2-cb33fc0d86c5", + "apim-request-id": "3509ebc2-0e64-4e90-a192-a19253c02933", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:13 GMT", + "Date": "Thu, 12 Nov 2020 19:25:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "161" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -3012,7 +2677,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -3044,45 +2709,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af873-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c4462c77e1ebff2897108e817d9cc036", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3a49a0c1-18e7-4484-ac62-e2d7dfd2319d", + "apim-request-id": "e95109ca-1ad8-411c-b67e-ccb162b6051c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:14 GMT", + "Date": "Thu, 12 Nov 2020 19:25:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "196" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "146" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -3091,7 +2749,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -3123,45 +2781,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af874-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4eb1184767f18df47896dbf2730f4437", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5fa44448-ba64-4e7a-aeeb-ead5350608f5", + "apim-request-id": "adeb442a-aaad-4877-97aa-037850c31639", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:15 GMT", + "Date": "Thu, 12 Nov 2020 19:25:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "137" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "133" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -3170,7 +2821,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -3202,45 +2853,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af875-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4081179cb0be42f9bb886756cfe84114", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e79c453f-284c-46e9-b324-e190853a166b", + "apim-request-id": "9410c243-4505-4a97-b402-ad3a933047e8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:17 GMT", + "Date": "Thu, 12 Nov 2020 19:25:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "113" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "134" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -3249,7 +2893,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -3281,45 +2925,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af876-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "81205b1774d7106f38b84c5505358b88", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9add6da0-3e6c-4fcc-a5e4-c22e29a0500a", + "apim-request-id": "6ad905ce-85d0-4b77-817a-ee538fdbdfa4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:19 GMT", + "Date": "Thu, 12 Nov 2020 19:25:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "165" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "167" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -3328,7 +2965,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -3360,45 +2997,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af877-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "66e556cc801b97781f6e9368ff9dbe90", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f2f3cf48-f01b-4131-9f41-ab689712f8ac", + "apim-request-id": "5f06da69-0384-4a3c-aba3-0876d4d5fe96", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:20 GMT", + "Date": "Thu, 12 Nov 2020 19:25:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "139" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "156" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -3407,7 +3037,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -3439,45 +3069,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af878-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "17dbc754c2ee2760a770070563a43d85", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c65a4a53-2e80-4705-86cd-08634b7eed08", + "apim-request-id": "141e1b36-cadc-44fa-a473-a62b901b8cf9", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:21 GMT", + "Date": "Thu, 12 Nov 2020 19:25:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "134" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "151" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -3486,7 +3109,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -3518,45 +3141,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af879-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "788adefcdb0397f8e3886169e107109b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "13dafe5b-7c50-4d7f-b71c-0d60c5880c3f", + "apim-request-id": "0808a145-6255-48a3-a8f2-2ebd6e1b6473", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:23 GMT", + "Date": "Thu, 12 Nov 2020 19:25:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "162" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "195" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -3565,7 +3181,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -3597,45 +3213,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af87a-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3e00bcfa73590999f6bdbeab7872337b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "81ab8ad3-1c9e-415f-89c7-0f7d06a80360", + "apim-request-id": "ed45312b-4019-44f2-bd21-a6a5f754c523", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:24 GMT", + "Date": "Thu, 12 Nov 2020 19:25:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "120" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "158" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -3644,7 +3253,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -3676,45 +3285,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af87b-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "206b0d314612788cce44346561f646a0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1c90024c-3af2-4cfc-aa99-175378579f21", + "apim-request-id": "96963404-f55a-4a0b-b8b5-95861f3f1263", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:25 GMT", + "Date": "Thu, 12 Nov 2020 19:25:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "134" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "168" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 1, "failed": 0, @@ -3723,7 +3325,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -3755,103 +3357,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af87c-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a70a6c5ffea3892b458081461d4d1e71", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "84692f24-7c0e-40ae-a352-eb7c73b88d91", + "apim-request-id": "d80d3a74-cfc4-41f7-bebe-f83110b41e70", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:26 GMT", + "Date": "Thu, 12 Nov 2020 19:25:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "270" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "150" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -3883,103 +3429,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af87d-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d337e555ef9bb4882f8770153f33a8ff", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5b11a7f8-9f01-4e12-9d6e-79efa15406e3", + "apim-request-id": "3089fb46-5afb-4ad0-ad5b-503a443bb71a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:28 GMT", + "Date": "Thu, 12 Nov 2020 19:25:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "153" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "104" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -4011,103 +3501,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af87e-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "0b4b1d768b6732d8e1e2db92c4465b80", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5642b06f-d85f-44fb-97ed-88f5c261f098", + "apim-request-id": "79d6d229-9014-4d06-86c1-25e83f06bf72", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:29 GMT", + "Date": "Thu, 12 Nov 2020 19:25:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "411" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "180" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], - "keyPhraseExtractionTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -4139,103 +3573,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af87f-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7b10c32573be7005e456781b8e164911", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fc881c3c-3348-46ba-b77a-f0ca623c9853", + "apim-request-id": "e24b310c-6c1d-4194-beb9-2ec4e35657a9", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:30 GMT", + "Date": "Thu, 12 Nov 2020 19:25:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "170" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "151" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -4267,103 +3645,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af880-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ffcf81d81202c9090d05f1b814f6efe8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1ec32afb-790d-456a-8afd-6ed40647c4e5", + "apim-request-id": "d5a3533d-7368-4083-85dc-6daa051fbef4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:32 GMT", + "Date": "Thu, 12 Nov 2020 19:25:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "174" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "151" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -4395,103 +3717,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af881-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7cf0ef2c2c23034018db271113bca3cb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d6ce5253-2ec1-4fb7-a9b2-a11a1496303d", + "apim-request-id": "30c30e7c-c177-4f2b-a97f-a6d05747ff98", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:34 GMT", + "Date": "Thu, 12 Nov 2020 19:25:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "192" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "155" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -4523,103 +3789,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af882-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "43b9ca985b77127db9476db9814c5bee", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f6fe916f-8d18-47af-a6a7-06332fbd7282", + "apim-request-id": "badafcb3-11e6-4eb6-87ca-eb1b79ea6cd5", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:35 GMT", + "Date": "Thu, 12 Nov 2020 19:26:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "199" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "203" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -4651,103 +3861,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af883-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9eef8f66cd25aced40cbe727ebf8b551", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2961bd67-7e21-4a69-8d93-a02537f6193b", + "apim-request-id": "74acb889-4c8d-4cdf-bf8b-c96be7e84831", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:37 GMT", + "Date": "Thu, 12 Nov 2020 19:26:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "193" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "127" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], - "keyPhraseExtractionTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -4779,103 +3933,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af884-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4a202662ac3cd07172ddc2dcbe8782cc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eca85469-052e-485c-b04a-92d8a5ae5ca6", + "apim-request-id": "11733ad8-7edd-4032-bbc2-769fa70a625e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:38 GMT", + "Date": "Thu, 12 Nov 2020 19:26:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "166" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "155" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -4907,103 +4005,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af885-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "84aa387f04cccba5dc0d02ab745526c1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d2c1f78c-cf21-4c3f-8790-a5635ea3a6c5", + "apim-request-id": "6c8990c9-6c46-40de-827d-7a69225a9ef5", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:40 GMT", + "Date": "Thu, 12 Nov 2020 19:26:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "211" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "154" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -5035,103 +4077,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af886-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "5b571c91112cbab11d1f2c480b11edb8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "70da97aa-b7c0-46fa-b7e2-c92262764c32", + "apim-request-id": "f185eb66-4e27-4417-8e77-e54420de27df", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:41 GMT", + "Date": "Thu, 12 Nov 2020 19:26:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "166" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "131" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -5163,103 +4149,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af887-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b3a81b49314e5d8580546d2fa9c65b1c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d445d6ca-19c1-4bf1-b01f-5edac7064c75", + "apim-request-id": "ebb3c6ac-1aa0-41cd-bb12-2bfb4b56dea7", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:42 GMT", + "Date": "Thu, 12 Nov 2020 19:26:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "176" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "127" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -5291,103 +4221,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af888-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a24a00b726306da086ef66add75dc0ca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e75a22e1-c573-4817-a67a-c7bf6dc2f46c", + "apim-request-id": "3f5d9061-7ba1-44f5-94b7-a7d3a97d457c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:44 GMT", + "Date": "Thu, 12 Nov 2020 19:26:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "161" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "134" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], - "keyPhraseExtractionTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -5419,103 +4293,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af889-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "59614a1f73ad5f7397f9dad7a4811156", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f0255544-76be-4fa9-9f63-1c126f5fe93b", + "apim-request-id": "59ff303c-1ce3-4ff8-bbf3-c840715161bf", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:45 GMT", + "Date": "Thu, 12 Nov 2020 19:26:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "175" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "164" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -5547,103 +4365,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af88a-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "0a9110c34ac623887a3a2c5ecad88522", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dc4f9570-d773-4290-8e70-c9730c24c440", + "apim-request-id": "dd272027-20f6-48c9-bbf3-d6086713f4d5", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:47 GMT", + "Date": "Thu, 12 Nov 2020 19:26:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "196" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "157" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -5675,103 +4437,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af88b-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "5f10a2940265436f8deb0b364bc8c905", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5eea206e-57f9-4b81-8a60-42dc0c5d4e91", + "apim-request-id": "23ef09e4-92ee-4991-b453-20b647469766", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:48 GMT", + "Date": "Thu, 12 Nov 2020 19:26:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "222" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "165" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -5803,103 +4509,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af88c-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c7e910deb5ccd404c13ede72461494bf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b4540a69-2f8b-491b-ab43-68a60ef7ee18", + "apim-request-id": "889fab59-25cd-477f-9d11-d14e62b45b01", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:49 GMT", + "Date": "Thu, 12 Nov 2020 19:26:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "160" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "133" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -5931,103 +4581,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af88d-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "0142b773b171c1f1a14d7ddb3f51d7b2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f98047d7-02dc-4c9f-8e54-4d0fbf1e58b2", + "apim-request-id": "ab921ecd-7772-42a6-aa57-e1db384e3090", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:51 GMT", + "Date": "Thu, 12 Nov 2020 19:26:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "154" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "129" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -6059,103 +4653,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af88e-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ba802770beeedf569e3b9d2723fcfd78", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "32baa863-b10f-45a2-9a59-d8a12ef96736", + "apim-request-id": "3fc5fbc5-64e7-4add-ae47-b4c2d79cbb80", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:52 GMT", + "Date": "Thu, 12 Nov 2020 19:26:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "166" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "121" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -6187,103 +4725,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af88f-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "93c24c56c8852c931f27267f37289570", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bfa8ac67-097b-4c4c-a075-39fc9349575b", + "apim-request-id": "20073f94-4be1-4f71-8479-9c1a27daa95a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:54 GMT", + "Date": "Thu, 12 Nov 2020 19:26:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "173" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "177" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -6315,103 +4797,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af890-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1f012c66da94b5d06163633614c99da4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "41b51394-4dbe-408d-9330-6bf8c508a545", + "apim-request-id": "bbc04ea8-2865-41ef-ba87-b65033207bf1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:55 GMT", + "Date": "Thu, 12 Nov 2020 19:26:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "204" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "173" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -6443,103 +4869,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af891-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f3850550438ea82c94539bc698d7a775", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c4f8b14d-ca2e-455b-9972-16b150d3d7bc", + "apim-request-id": "9bfab835-4483-4c19-9c1a-64c34dedc84b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:56 GMT", + "Date": "Thu, 12 Nov 2020 19:26:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "166" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "160" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -6571,103 +4941,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af892-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f7c02da6defa7be37b0d3222655d1855", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1a87dfa8-32db-4e77-94c2-f2541007827c", + "apim-request-id": "a5a72dc7-3046-4c79-a9ec-8b200e33f347", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:57 GMT", + "Date": "Thu, 12 Nov 2020 19:26:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "188" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "118" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -6699,103 +5013,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af893-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "322e818aa1a323e1ff598b413e091d8a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2b1b9605-5a8e-461f-9d73-615f000e644e", + "apim-request-id": "7e47d5b5-990f-4d56-b7ab-5d81aabceeaa", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:07:59 GMT", + "Date": "Thu, 12 Nov 2020 19:26:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "171" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "131" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -6827,103 +5085,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af894-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e68fedbba60972a921097881110a4336", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "861f0ae7-e32c-4d97-8436-8627a80361bf", + "apim-request-id": "f56a1e01-80d9-4662-a7a6-550ba69183bb", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:08:00 GMT", + "Date": "Thu, 12 Nov 2020 19:26:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "164" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "157" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -6955,103 +5157,119 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af895-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "163c463b75a804d14b9cf7a152a23c71", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a4553dd7-749b-4a00-a185-aa29ead43e25", + "apim-request-id": "c6e54e2e-1239-429d-ab65-2686d89d7402", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:08:02 GMT", + "Date": "Thu, 12 Nov 2020 19:26:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "388" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "158" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "", "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] } ], + "errors": [], "modelVersion": "2020-07-01" } } - ], + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7766a8ef31cde44bd7bc109a296012f5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5a47e77a-db19-4830-ad3e-270c1bc6be8d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:26:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "159" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:24:50Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -7083,103 +5301,119 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af896-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7766a8ef31cde44bd7bc109a296012f5", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f806541507cc46e11c8a9b6cae071f7f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6b55bcb4-292a-4976-9173-94fed9a3f4b0", + "apim-request-id": "7f060353-43cc-47c0-a44e-66de372a1738", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:08:04 GMT", + "Date": "Thu, 12 Nov 2020 19:26:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "173" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "148" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "", "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] } ], + "errors": [], "modelVersion": "2020-07-01" } } - ], + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "689106cccca30969fa583eeb6536dbeb", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dec6ae1d-b3ef-4703-a638-ce2f01bd170c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:26:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "143" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:24:50Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -7211,103 +5445,119 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af897-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f806541507cc46e11c8a9b6cae071f7f", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "fe8c028a449be8a4c6205a4295df35cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8a5bf377-2f47-450d-9491-0ea8d6e117ce", + "apim-request-id": "98bfd664-d8d1-46c9-8412-a214d162e397", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:08:05 GMT", + "Date": "Thu, 12 Nov 2020 19:26:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "249" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "128" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "", "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] } ], + "errors": [], "modelVersion": "2020-07-01" } } - ], + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "23ce909da9cf4952ebfcfe74c8f5e1e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d8bd5eda-2385-4a25-8388-1a92ca45a0cd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:26:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "172" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:24:50Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -7339,103 +5589,119 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af898-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "689106cccca30969fa583eeb6536dbeb", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "ace2b0af207b87e361a8a2837126731b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cf76ac79-f18f-4042-9f00-3dda82d5b755", + "apim-request-id": "840295cb-d475-4395-a6e8-ead0d3b567bb", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:08:06 GMT", + "Date": "Thu, 12 Nov 2020 19:26:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "184" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "142" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "", "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] } ], + "errors": [], "modelVersion": "2020-07-01" } } - ], + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d44e6e22b868e11baf42139f463020d0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9bd310c0-e100-4c43-bb19-4f4c187a9ea1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:26:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "118" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:24:50Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -7467,103 +5733,119 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af899-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "fe8c028a449be8a4c6205a4295df35cf", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "e593743e89fc7d54ac46c12607ced8c5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6eec08dc-ba8c-4dd8-8233-d56b5ce03bd6", + "apim-request-id": "fc4a255d-6172-46e8-95ac-823b6d87684b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:08:08 GMT", + "Date": "Thu, 12 Nov 2020 19:26:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "162" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "142" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "", "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] } ], + "errors": [], "modelVersion": "2020-07-01" } } - ], + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5951e2890ca7f67d9401fc390d444130", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5f044304-da98-4c85-a0e1-5de52765acd5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:26:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "137" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:24:50Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -7595,103 +5877,191 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af89a-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "23ce909da9cf4952ebfcfe74c8f5e1e5", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "fc44d1888e92981e1ad12821f6f5d9e1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d4583bd8-2eb0-4d5a-ac1e-46fb01204cc2", + "apim-request-id": "6b95e3e4-733b-4cff-ac06-9ce80bcd3df8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:08:09 GMT", + "Date": "Thu, 12 Nov 2020 19:26:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "187" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "158" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "", "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" ], "warnings": [] } ], - "errors": [ + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "63164e6ac6de3128f79d51fb8d1b7067", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "aab3ca90-7697-41db-af6a-b5e982096bbe", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:26:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "136" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:24:50Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] } ], + "errors": [], "modelVersion": "2020-07-01" } } - ], + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "359d9105db89fa32c3b93fd6e45cff9e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b008e865-41fa-464b-a833-34fc3380a5e5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:26:41 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "138" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:24:50Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -7723,103 +6093,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af89b-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ace2b0af207b87e361a8a2837126731b", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "bece1a27dd2ec151a81305f43d220aff", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e252a29a-60af-4551-a324-442cbccfa69f", + "apim-request-id": "854c116e-2f46-4c96-95a8-f7ed4c243679", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:08:10 GMT", + "Date": "Thu, 12 Nov 2020 19:26:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "193" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "177" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -7851,103 +6165,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af89c-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d44e6e22b868e11baf42139f463020d0", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "651bc061a4578e571b1b9f2587514d9a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a7875a2c-6636-4d35-8227-29af6e0307c1", + "apim-request-id": "2324406b-4609-44d7-9d0c-87cd20b48162", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:08:12 GMT", + "Date": "Thu, 12 Nov 2020 19:26:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "171" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "136" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -7979,103 +6237,119 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af89d-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e593743e89fc7d54ac46c12607ced8c5", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "73d4b29db14c27393fdc8c76d63ebda1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cc189029-a4ad-47f3-ba30-af705d6599e8", + "apim-request-id": "ba7a55fa-357c-41d4-983d-35eb5f87c1a3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:08:13 GMT", + "Date": "Thu, 12 Nov 2020 19:26:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "169" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "165" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "", "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] } ], + "errors": [], "modelVersion": "2020-07-01" } } - ], + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "24753fae9a408347c33fa2133d2c3956", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f510e01d-cd5e-4b19-b349-84888a25d21e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:26:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "142" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:24:50Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -8107,103 +6381,119 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af89e-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5951e2890ca7f67d9401fc390d444130", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "8a566ac5974eafb387f4267b17e1b8dd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b03c26b9-b206-4ab2-86b4-eb09848e882b", + "apim-request-id": "61ae0a68-962f-429f-bbf4-63a61ed3595a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:08:15 GMT", + "Date": "Thu, 12 Nov 2020 19:26:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "193" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "136" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "", "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] } ], + "errors": [], "modelVersion": "2020-07-01" } } - ], + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4877fe5d28dc03596b51b00c0e26e912", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8aec04da-79bb-4ee6-9696-a795574598e7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:26:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "142" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:24:50Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -8235,103 +6525,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af89f-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "fc44d1888e92981e1ad12821f6f5d9e1", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "6bb035a232e716528cc69d4c73cb6ce1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d83194d6-5c73-4975-bfdd-d98d8df205a2", + "apim-request-id": "e0f93013-c200-429f-a69f-efe31944f922", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:08:16 GMT", + "Date": "Thu, 12 Nov 2020 19:26:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "231" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "170" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -8363,103 +6597,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af8a0-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "63164e6ac6de3128f79d51fb8d1b7067", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "3eb5c587f1b49c7a11531ffde7a6a061", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "19e5f6d8-7625-4405-8924-0a0d1d58a2e0", + "apim-request-id": "9d94c73d-0621-4d4a-ae81-f0c8f92ae9a1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:08:18 GMT", + "Date": "Thu, 12 Nov 2020 19:26:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "172" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "124" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -8491,103 +6669,47 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af8a1-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "359d9105db89fa32c3b93fd6e45cff9e", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "e1d8130a4c302af6ac61bb158b0d8f9f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3bf58f6b-c463-4b95-bdf4-60fd113d9acc", + "apim-request-id": "4acd5421-008c-48c2-a404-499e02faf519", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:08:19 GMT", + "Date": "Thu, 12 Nov 2020 19:26:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "164" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "189" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "redactedText": "", - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - } - ], - "errors": [ - { - "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } - } - ], - "modelVersion": "2020-07-01" - } - } - ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -8619,103 +6741,119 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af8a2-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "bece1a27dd2ec151a81305f43d220aff", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4985cee5ab70b05ebb135a9313552ee5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "08d79de0-45f5-453c-a8af-92d1de614d20", + "apim-request-id": "1a03ba31-6525-4af4-8648-f009959c26f5", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:08:20 GMT", + "Date": "Thu, 12 Nov 2020 19:26:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "194" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "152" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, - "completed": 2, + "completed": 1, "failed": 0, - "inProgress": 1, + "inProgress": 2, "total": 3, - "entityRecognitionPiiTasks": [ + "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "", "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] } ], + "errors": [], "modelVersion": "2020-07-01" } } - ], + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "60413b258af23ab1cf8b925335651103", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3c5574e3-f681-4a72-92db-a835e27d3bec", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:26:55 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "123" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:24:50Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -8747,45 +6885,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af8a3-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "651bc061a4578e571b1b9f2587514d9a", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "191880c357215ff0b528261cf2621756", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1cee09cc-4f60-4bde-8d84-bcffbc79eaed", + "apim-request-id": "241fa6f2-0965-47dd-93b8-8c78de501d8a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:08:21 GMT", + "Date": "Thu, 12 Nov 2020 19:26:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "179" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "207" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 2, "failed": 0, @@ -8794,12 +6925,12 @@ "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "", + "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -8843,7 +6974,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -8875,45 +7006,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af8a4-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "73d4b29db14c27393fdc8c76d63ebda1", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4ff0d6332fcb5aac1c4a7ae5180b7a56", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9b462d81-7c5d-49cb-89ee-981a9f3dda22", + "apim-request-id": "d044a780-3997-45f0-aa9e-a963a62948ca", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:08:23 GMT", + "Date": "Thu, 12 Nov 2020 19:26:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "193" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "161" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 2, "failed": 0, @@ -8922,12 +7046,12 @@ "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "", + "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -8971,7 +7095,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -9003,45 +7127,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af8a5-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "24753fae9a408347c33fa2133d2c3956", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "92cf5602143dcdc44be2abca6494486c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3ccfe5f0-1742-4ad3-8ade-672a63be61f4", + "apim-request-id": "bec83e66-952a-46d4-a3c8-b02325beffa3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:08:25 GMT", + "Date": "Thu, 12 Nov 2020 19:26:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "227" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "354" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 2, "failed": 0, @@ -9050,12 +7167,12 @@ "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "", + "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -9099,7 +7216,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -9131,45 +7248,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|975af8a6-49e21189d89a0179.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8a566ac5974eafb387f4267b17e1b8dd", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5f203c73c1749438d4bdfcd7dd0b47aa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0dac10dd-ca94-49c0-a901-4e33cc061b53", + "apim-request-id": "4d036db2-51a9-48a7-bbb9-95dc4e7478b9", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:08:26 GMT", + "Date": "Thu, 12 Nov 2020 19:27:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "216" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "251" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "c31198fa-b6b2-45c7-b33b-6623c8b2e1b4_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:06:17Z", - "createdDateTime": "2020-11-12T00:06:17Z", - "expirationDateTime": "2020-11-13T00:06:17Z", + "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:24:50Z", + "createdDateTime": "2020-11-12T19:24:49Z", + "expirationDateTime": "2020-11-13T19:24:49Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17Z" + "lastUpdateDateTime": "2020-11-12T19:24:50Z" }, "completed": 3, "failed": 0, @@ -9178,7 +7288,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ @@ -9247,12 +7357,12 @@ "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "", + "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -9296,7 +7406,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T00:06:17.8850817Z", + "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasksAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasksAsync.json index 8508d2596d984..b22af42056892 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasksAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasksAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "478", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e3b565d1b3a1fa41b925abaf872efabe-b214c86070a02948-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-df92f90391e95b4788aed3b005a83a1f-9dbde162cae83c49-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "84b09b92aaeab256574bef378bac8fd4", "x-ms-return-client-request-id": "true" }, @@ -61,55 +55,49 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "ec447ec0-1bf3-440a-b3b8-d553ef2f071e", - "Date": "Mon, 09 Nov 2020 19:37:44 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", + "apim-request-id": "329d1bff-7f32-4d27-8884-5ce135886cd9", + "Date": "Thu, 12 Nov 2020 19:29:26 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "226" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "156" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "28fe54c562f9429f154e7e8cbd24fdd6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5b37e746-a8c8-43dc-a9a4-bb5753109b40", + "apim-request-id": "122041da-319a-4d4d-8bd6-e0e6a2316c3d", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:37:44 GMT", + "Date": "Thu, 12 Nov 2020 19:29:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "120" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:44Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:44Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 0, "failed": 0, @@ -119,44 +107,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d5a26188dff6bc6bb1f8fa159c08c192", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1bf78c82-c3e5-4311-a0b1-a3fc96adb638", + "apim-request-id": "46bc1419-6cc8-4994-a5cf-c74bc2b80323", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:37:46 GMT", + "Date": "Thu, 12 Nov 2020 19:29:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "265" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "126" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 0, "failed": 0, @@ -166,44 +148,79 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d5de44db1316307dfb6e6e9b2cc9f433", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4f650c27-7646-4dfb-874e-4047c50f441f", + "apim-request-id": "3096d957-1de0-42d8-b566-0b365543e6d9", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:37:47 GMT", + "Date": "Thu, 12 Nov 2020 19:29:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "200" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "108" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 3, + "total": 3 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "2aae184eb909e6dee94276006789a50d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9f12591a-6969-4ff5-b7f8-537c4a13f2a6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:29:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "133" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -212,7 +229,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -244,44 +261,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2aae184eb909e6dee94276006789a50d", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "79b1eb8c274575c0e472da8870cf8fe8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "865119e9-c750-4151-b207-c5491163c4f5", + "apim-request-id": "5ce7d7ae-bf5b-4321-9439-cd667e759a02", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:37:49 GMT", + "Date": "Thu, 12 Nov 2020 19:29:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "143" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "138" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -290,7 +301,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -322,44 +333,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "79b1eb8c274575c0e472da8870cf8fe8", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "83c6c7049759218966f8ecd39c7cc871", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "25a63abd-12ac-410d-b495-d4cac6c0901f", + "apim-request-id": "c91145f9-c32f-4c85-8f34-61eeb965bab9", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:37:50 GMT", + "Date": "Thu, 12 Nov 2020 19:29:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "135" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "161" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -368,7 +373,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -400,44 +405,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "83c6c7049759218966f8ecd39c7cc871", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "400e61c97b1727ed58394696df567619", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3d88fb15-891f-47c2-b01a-41d356e9013d", + "apim-request-id": "47361c88-63dc-45bb-b7ec-b6f154a647a2", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:37:52 GMT", + "Date": "Thu, 12 Nov 2020 19:29:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "109" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "304" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -446,7 +445,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -478,44 +477,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "400e61c97b1727ed58394696df567619", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9ffc8eb221c3f5b3628f124d3aecd867", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eff7ef15-85f3-4646-a37c-a07707c53313", + "apim-request-id": "81914218-f5fe-424d-8fa2-b748ebf2be92", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:37:57 GMT", + "Date": "Thu, 12 Nov 2020 19:29:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5163" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "223" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -524,7 +517,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -556,44 +549,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9ffc8eb221c3f5b3628f124d3aecd867", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "0fbf68a94fc088d0da9f2b2051f24210", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "698fc556-1db5-42a0-ae38-23907fc30eb6", + "apim-request-id": "37fdb0a8-1bf0-4a6c-8aeb-9a0a56b6af70", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:37:59 GMT", + "Date": "Thu, 12 Nov 2020 19:29:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "128" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "126" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -602,7 +589,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -634,44 +621,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0fbf68a94fc088d0da9f2b2051f24210", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "0e20d3822980a7aeae19de88689fec6c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5393bac4-a92f-4a48-9c93-0866c2a10f92", + "apim-request-id": "7548122b-5bf5-4b8b-a02c-666dd5fe6dd1", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:01 GMT", + "Date": "Thu, 12 Nov 2020 19:29:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "131" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "141" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -680,7 +661,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -712,44 +693,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0e20d3822980a7aeae19de88689fec6c", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "77edde6166976358be73c523f693a470", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c31ade2f-2300-4315-9c76-f3da8c1c95bf", + "apim-request-id": "5b6ca7d2-0ecc-41ab-b1f9-9a1dec213437", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:02 GMT", + "Date": "Thu, 12 Nov 2020 19:29:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "113" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "171" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -758,7 +733,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -790,44 +765,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "77edde6166976358be73c523f693a470", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "67cb024dcacb80e6b91761a771471f3a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "73f1253a-2ea7-4510-a0e0-0ef83c8a504d", + "apim-request-id": "be8071e3-a9f4-49e6-a216-3284599a597c", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:03 GMT", + "Date": "Thu, 12 Nov 2020 19:29:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "121" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "133" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -836,7 +805,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -868,44 +837,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "67cb024dcacb80e6b91761a771471f3a", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "72bebeb3ca051b787abd4f0c638bb11a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4ea196c4-b742-485d-a71e-aaf432446c22", + "apim-request-id": "4a31e1e8-9931-45f5-b5db-0797e2b939af", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:04 GMT", + "Date": "Thu, 12 Nov 2020 19:29:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "134" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "135" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -914,7 +877,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -946,44 +909,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "72bebeb3ca051b787abd4f0c638bb11a", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "663a6d7584d496a0f86cbd7f05b0f176", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "81b2f95e-bd6f-4c91-b87a-0264b1962bd3", + "apim-request-id": "434f9f97-9215-4c07-be0c-91b049811343", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:05 GMT", + "Date": "Thu, 12 Nov 2020 19:29:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "109" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "152" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -992,7 +949,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -1024,44 +981,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "663a6d7584d496a0f86cbd7f05b0f176", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "37708b5432d4826a8ab0ed0e7ad91c2e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "59ae3ec1-cecb-4547-bdae-e4b254a19f4c", + "apim-request-id": "411149be-0669-4578-97bd-95be4ea07203", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:07 GMT", + "Date": "Thu, 12 Nov 2020 19:29:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "105" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "173" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -1070,7 +1021,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -1102,44 +1053,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "37708b5432d4826a8ab0ed0e7ad91c2e", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "03324666b90d2e661e2879980cf815c9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8aa06ad0-20c0-4e21-baee-d59c12cb043d", + "apim-request-id": "0e77e9b4-d0aa-4138-8187-a43bdf12d744", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:08 GMT", + "Date": "Thu, 12 Nov 2020 19:29:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "107" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "163" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -1148,7 +1093,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -1180,44 +1125,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "03324666b90d2e661e2879980cf815c9", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d8b8d8cb791a424603b7db2397911b1e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7d1d7873-14ba-4dc7-aa37-898b48cee90d", + "apim-request-id": "ce91b924-66c7-48bf-8128-3846412ee301", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:10 GMT", + "Date": "Thu, 12 Nov 2020 19:29:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "121" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "123" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -1226,7 +1165,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -1258,44 +1197,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d8b8d8cb791a424603b7db2397911b1e", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "bf198f4fee7e9a69244218abb8d27691", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9224ffa5-f5ca-47e4-a72c-964955c5cccb", + "apim-request-id": "0f43f4ad-4cbc-462d-9ca3-387dc1aca6e9", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:11 GMT", + "Date": "Thu, 12 Nov 2020 19:29:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "142" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "131" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -1304,7 +1237,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -1336,44 +1269,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "bf198f4fee7e9a69244218abb8d27691", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "a142239a4421ec13ffef0055dd42968c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "700e55b5-915b-40af-bfb8-24de2f01d1b7", + "apim-request-id": "58263b93-b75d-473b-80e3-b9e1a188cd19", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:12 GMT", + "Date": "Thu, 12 Nov 2020 19:29:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "122" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "130" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -1382,7 +1309,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -1414,44 +1341,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a142239a4421ec13ffef0055dd42968c", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7d485b0c56dfdd4b6f1db3d8609a8a30", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bcc05391-24b1-4c2e-b53c-33ca2c704eaa", + "apim-request-id": "b8ce0265-36de-4f18-8466-ace2ebb85f1e", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:13 GMT", + "Date": "Thu, 12 Nov 2020 19:29:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "139" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "129" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -1460,7 +1381,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -1492,44 +1413,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7d485b0c56dfdd4b6f1db3d8609a8a30", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "74894a41794e0bfd7b2cbf8eee13bde2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "12b952dc-d304-402a-99e8-eb52d202cbdd", + "apim-request-id": "1b0ef34f-8fbd-4e82-bc43-63ed6718ceaf", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:15 GMT", + "Date": "Thu, 12 Nov 2020 19:29:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "115" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "173" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -1538,7 +1453,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -1570,44 +1485,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "74894a41794e0bfd7b2cbf8eee13bde2", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5d9f8babf88943b1d7653203903a8c64", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fe3de50c-d459-415b-b742-2c185fad73d1", + "apim-request-id": "b5af3b11-f62b-4d56-b84c-e96bcd5a7386", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:16 GMT", + "Date": "Thu, 12 Nov 2020 19:29:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "136" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "171" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -1616,7 +1525,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -1648,44 +1557,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5d9f8babf88943b1d7653203903a8c64", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9214cf6522b9923d5e3d01b297bdee5b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a5e0c077-eb07-475e-87fd-829d9cc9d96d", + "apim-request-id": "fb75467d-132a-4bf3-98ad-85db9b069185", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:21 GMT", + "Date": "Thu, 12 Nov 2020 19:29:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5142" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "117" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -1694,7 +1597,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -1726,44 +1629,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9214cf6522b9923d5e3d01b297bdee5b", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d42dd15f2cfb48a798459ce947f97a40", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ff16f5f5-1af6-4551-8081-ae8b13a347a5", + "apim-request-id": "56561702-6271-4c9f-8146-36f0ae84f611", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:24 GMT", + "Date": "Thu, 12 Nov 2020 19:29:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "102" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "130" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -1772,7 +1669,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -1804,44 +1701,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d42dd15f2cfb48a798459ce947f97a40", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "1e285aa02aff88284d0cff4cf7feac1a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "23cba5ed-65ff-48e3-99d8-60719d7c93de", + "apim-request-id": "d4012cd3-e0c6-4160-b96a-ed28b79f4daf", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:25 GMT", + "Date": "Thu, 12 Nov 2020 19:29:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "105" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "143" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -1850,7 +1741,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -1882,44 +1773,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1e285aa02aff88284d0cff4cf7feac1a", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "bfa4d676b70d386928cbf97385544b64", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "975b9309-e8af-4ab2-91c7-fab04f2edd4b", + "apim-request-id": "7b42d587-1478-4a87-9e3b-9c4f761b7905", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:26 GMT", + "Date": "Thu, 12 Nov 2020 19:29:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "101" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "140" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -1928,7 +1813,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -1960,44 +1845,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "bfa4d676b70d386928cbf97385544b64", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "3c12c0c2d094355ba8a586ee2d5b5199", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e247f798-dcfa-4919-baa1-b8a59a2a7e30", + "apim-request-id": "f4a5c9fb-a722-47e9-9231-9f15187cb030", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:27 GMT", + "Date": "Thu, 12 Nov 2020 19:30:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "118" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "160" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -2006,7 +1885,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -2038,44 +1917,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "3c12c0c2d094355ba8a586ee2d5b5199", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "70728299bb55e933f1f0f63430b502f9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "26545c6f-32c1-43b4-bc37-37980b47fde1", + "apim-request-id": "be68b461-5325-4929-97e1-e6b2a1eca0fd", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:28 GMT", + "Date": "Thu, 12 Nov 2020 19:30:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "105" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "130" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -2084,7 +1957,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -2116,44 +1989,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "70728299bb55e933f1f0f63430b502f9", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "36899ac16feca6857a6e1668307a0acd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "452a5e78-2fec-413d-851b-aa6f32f6f8e6", + "apim-request-id": "561eb8b8-ff15-4274-a412-fccf1d05cc10", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:30 GMT", + "Date": "Thu, 12 Nov 2020 19:30:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "101" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "141" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -2162,7 +2029,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -2194,44 +2061,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "36899ac16feca6857a6e1668307a0acd", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "03da6079dae2070f8d294ba4d92704f3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3bbb3dde-4b2a-4773-b3c9-4fcd2af86d3e", + "apim-request-id": "776ce7c7-2688-4f98-b426-77db15d25176", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:31 GMT", + "Date": "Thu, 12 Nov 2020 19:30:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "121" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "128" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -2240,7 +2101,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -2272,44 +2133,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "03da6079dae2070f8d294ba4d92704f3", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "932d8da21ad129adfccbf6e6a4cbb876", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "937d0bfc-42f0-444d-9c8d-a48c6a500775", + "apim-request-id": "16d7cefd-f7d1-4ba9-8831-40e4ab85630f", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:38 GMT", + "Date": "Thu, 12 Nov 2020 19:30:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5169" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "187" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -2318,7 +2173,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -2350,44 +2205,182 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "932d8da21ad129adfccbf6e6a4cbb876", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d0ba29e5ffdbe7168a81a9c323e1cd53", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "908cf546-24cf-4fc2-8852-3bb0d5aa696b", + "apim-request-id": "54228e3b-c35d-438a-a562-a986a72746ea", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:39 GMT", + "Date": "Thu, 12 Nov 2020 19:30:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "129" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "150" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "a2c6236a774d5efbb2b00617e32962c2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "6da777fc-13c8-4887-bce3-1f7da9eb2a11", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "325" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "b0bed470336ca2177745095071e9061a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "caa798ef-8e01-4944-ba84-bb8b0ecc2392", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:11 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "122" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 1, "failed": 0, @@ -2396,7 +2389,2854 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "817ba2fe16046e292d5c1d2bf8fe0360", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f2b47437-a4b2-4e62-96bd-84514ee07f04", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "136" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4f53e71e1c2336e70b232b076dabedc9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "03b8183c-f8bc-4eb0-a966-e2a1c34b6182", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:13 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "334" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4119ebaae1ad59bdaa50821016eca978", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2a77ae3c-661d-4770-99fb-6a59fe1fe63b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "175" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "8a31a842b696e1f7bb4575e1eb220082", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4c344131-0dba-4953-9c6b-7fb4913552ba", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "169" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "0c81546ec2e53db229f9a4d29ad61f1f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8ca893df-cf7a-40b6-ae17-ab29fe6ab772", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "151" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "c4c4b2796279f332f43885686cdb6e88", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "93a47f92-3259-4a4e-b531-b1b014c6c421", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "135" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "c2a1004f9c6a8093f6f4609d122446e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e925df2b-2f7b-4606-840f-beb235d7944e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "137" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "386755253c5e0c08218d18ad3c4ad04d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1d7dcc29-f14f-4b1c-a59a-0dbf73e30a84", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "152" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9a831c8a5d35dcb41f44ce850195e1cf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "69ee725c-b093-46f8-905c-65904e682c13", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "184" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "1642a0f13674122af795a0dc84e643ab", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9680a1ba-d205-4884-9d5a-f884e6267d13", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:24 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "117" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f5121223aca1c7b0a08b19196e820a8b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "05edba92-f84a-4178-a7e1-c204cceba9b0", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:25 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "159" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9cbb49acba0854d9f270a29fbdd75839", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1210ae97-fccd-4b8a-b5df-f7d8da39ecad", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "191" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "ef622300eb83442df07a75e81c10a474", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "08276532-9b1d-49a6-b836-1c1c2abc6328", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:28 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "163" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "3a30148ba62a69a239bd03310a100ac9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1c118eda-0abd-45a2-bdb6-fed4e799f029", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:30 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "167" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4b19e0321b20c0081b77ac8d44f038e2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a271dd9d-817b-452e-a246-3811b805449e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:31 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "136" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "a8142ecc1da7590f80f8b5c5e8fc3adf", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ac40810e-c34c-40de-a13f-f7f6c14fa4dc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "158" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "3cb6ac7059f770540b6f1eb2fa152548", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "66d6a629-9ffb-4449-9bb7-3f9ae2cd1b03", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "146" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "db64218561fc1421d1bfca276543d81f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9c7b3256-2330-47aa-a871-aa97b192ea8b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:35 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "148" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 2, + "total": 3, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "971dcc3dfb3a72ebd9a39c37ff5c5f6b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b7002f56-77f2-43c8-959b-7ddd768c7209", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "212" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "c73f6dd35e970fe38ba16a378e2c0bc8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "952a995b-22c3-4cd6-84d7-e20ddb18b26e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:37 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "192" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "2d75ff978df78a0e36f20158c4e91574", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f26912be-123f-4a9f-83e8-aed08b4a6a49", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:39 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "152" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f8535f601104de87e90e0c9890b3e4ad", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7c481c2e-df2b-4ffc-ae92-afd4896c5ff7", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:40 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "200" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "ffa0d49831e646735fb591a55c8a4aa1", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3880ef99-3590-4b3a-a16c-5b24fb6f12be", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "189" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "2fd7f68c13d986c4779743e98175f982", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "af29e6bb-b8dd-44b6-9744-23df5c247551", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "308" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "efc0540e15492e8eec0d984f7fe2815f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bf3291fc-4cff-456d-a762-dbd5117d724e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "172" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9a0c6ac3b4dc85d4101a884fed89c4e9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0e2ad7fc-c84b-47f5-bcdb-69b8adb7ff57", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "176" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "08960ebb5bc9765867a843cb7a750695", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d652e5d9-2a5e-4517-9d40-d609aea045c6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "237" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "1626e4155e6959a6803bdf2e8d3e4162", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d63814f9-3687-4262-8cd3-fe4664af3bff", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "221" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7193af48794b67961295323371080b9b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "50dc84d8-a421-4ccb-b6c7-0cd3f806bc71", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:30:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "182" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -2428,131 +5268,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "d0ba29e5ffdbe7168a81a9c323e1cd53", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "0939f213ad635c80683d878e7b29e928", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ef245df9-ae0d-41ab-be42-33c2d3341bb3", + "apim-request-id": "a77094e3-85ac-4cba-a61d-ffe3e279a650", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:40 GMT", + "Date": "Thu, 12 Nov 2020 19:30:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "123" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "157" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } ], "warnings": [] }, { "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-04-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a2c6236a774d5efbb2b00617e32962c2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3871ed2c-5108-42a1-bee0-18504decaf34", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:46 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5150" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -2584,131 +5409,116 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b0bed470336ca2177745095071e9061a", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "ca82e06795e19b4a4ebe04d32b72e777", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "36718a99-884d-49bc-b666-143f014f1f74", + "apim-request-id": "a3e7125f-ab70-465c-a523-54ef5c96609f", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:48 GMT", + "Date": "Thu, 12 Nov 2020 19:30:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "149" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "179" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } ], "warnings": [] }, { "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-04-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "817ba2fe16046e292d5c1d2bf8fe0360", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "df4cd825-aa31-4280-90fa-be468ed975d7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:49 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "163" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -2740,44 +5550,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4f53e71e1c2336e70b232b076dabedc9", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9a1a443037049bff2e36080df107ece8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dd804861-0b59-4d8f-8fef-fcbc2a21c41c", + "apim-request-id": "d833bf50-5f78-4ac7-b4ce-565df7449944", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:56 GMT", + "Date": "Thu, 12 Nov 2020 19:30:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5210" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "183" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -2786,7 +5590,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -2855,7 +5659,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -2887,44 +5691,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4119ebaae1ad59bdaa50821016eca978", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "91cc09ab40867eb9a89ebba4a8ac30f5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fb065aff-be40-43cc-b5c2-b42407414cfb", + "apim-request-id": "444b2a8e-daf6-4b11-b618-b17cc6e23c37", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:38:57 GMT", + "Date": "Thu, 12 Nov 2020 19:30:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "158" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "227" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -2933,7 +5731,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -3002,7 +5800,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -3034,44 +5832,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8a31a842b696e1f7bb4575e1eb220082", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "375e10564e0f2f24e1e79caa8c3ca946", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b710cc96-3452-4a15-9d41-e3cde4add0ac", + "apim-request-id": "46897929-d37e-418d-8e1f-8c68606cd4de", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:03 GMT", + "Date": "Thu, 12 Nov 2020 19:30:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5270" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "152" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -3080,7 +5872,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -3149,7 +5941,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -3181,44 +5973,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0c81546ec2e53db229f9a4d29ad61f1f", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "21281cd256a6eff18a9cf2667c5af282", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2a180e54-a7ab-4de1-bc77-d2c8db3d9e61", + "apim-request-id": "475a0d87-83a2-4c74-80c0-254236cc64cc", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:05 GMT", + "Date": "Thu, 12 Nov 2020 19:30:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "194" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "187" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -3227,7 +6013,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -3296,7 +6082,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -3328,44 +6114,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c4c4b2796279f332f43885686cdb6e88", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "e1b71306b4a95cd9e59caf9ea30ff26c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5513ed11-8a6e-43b5-89dd-c5863c8cc96c", + "apim-request-id": "7df29ed2-c14b-4b7b-9fbf-c497e00a29eb", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:06 GMT", + "Date": "Thu, 12 Nov 2020 19:31:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "190" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "178" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -3374,7 +6154,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -3443,7 +6223,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -3475,44 +6255,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c2a1004f9c6a8093f6f4609d122446e5", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "8bd274f40e84ff4f1e6ead735cbdb387", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8411ed7d-aba0-4c3d-9ace-ef059bc8339b", + "apim-request-id": "d894f088-43c7-43ff-9330-822b6f10d3c2", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:07 GMT", + "Date": "Thu, 12 Nov 2020 19:31:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "175" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "194" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -3521,7 +6295,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -3590,7 +6364,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -3622,44 +6396,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "386755253c5e0c08218d18ad3c4ad04d", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "79a419f4c8841d9c43cb3c0aa7524c7a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2ad2e469-31b5-477a-90b0-cf790a593563", + "apim-request-id": "2a498815-d776-4bb8-a348-b15d6f61ddda", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:09 GMT", + "Date": "Thu, 12 Nov 2020 19:31:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "200" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "238" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -3668,7 +6436,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -3737,7 +6505,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -3769,44 +6537,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9a831c8a5d35dcb41f44ce850195e1cf", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "077285a96688f7fec4b7c23b07660028", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e8d297ac-87d6-4e2d-b0b9-7c908c7f1e5c", + "apim-request-id": "39d482e9-eb7f-42bc-a7d7-e99d54274549", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:10 GMT", + "Date": "Thu, 12 Nov 2020 19:31:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "154" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "216" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -3815,7 +6577,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -3884,7 +6646,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -3916,44 +6678,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1642a0f13674122af795a0dc84e643ab", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "8aaa27e8796b2ce7d8b448b8d24458cc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "265491d1-1960-4499-8a1b-3e18672152b4", + "apim-request-id": "b1d1c0bf-906f-44c3-8387-95fafda6db6b", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:12 GMT", + "Date": "Thu, 12 Nov 2020 19:31:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "185" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "162" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -3962,7 +6718,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -4031,7 +6787,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -4063,44 +6819,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f5121223aca1c7b0a08b19196e820a8b", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d6c93222ab4b8dfe1badb4cc056116dd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "699e9954-d8da-411a-a247-88ab1933e293", + "apim-request-id": "313bf58c-5cb1-4ba8-aad7-bc6d391dd2f4", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:13 GMT", + "Date": "Thu, 12 Nov 2020 19:31:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "127" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "175" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -4109,7 +6859,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -4178,7 +6928,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -4210,44 +6960,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9cbb49acba0854d9f270a29fbdd75839", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7f2113cbc1a7300f9e462fd41e45247f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b9aac02a-bde0-40d6-b0b2-9d0702c4224f", + "apim-request-id": "b3140bb8-3475-4ee1-ad3a-8f667694d2d2", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:14 GMT", + "Date": "Thu, 12 Nov 2020 19:31:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "163" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "210" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -4256,7 +7000,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -4325,7 +7069,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -4357,44 +7101,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ef622300eb83442df07a75e81c10a474", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d419f65f299c3ddd281c6ebec41a2777", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eb128fc9-c4b8-454a-9d7d-ac8d7522806d", + "apim-request-id": "c32f5904-97dd-4e2c-a60d-33e0d701cc3c", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:15 GMT", + "Date": "Thu, 12 Nov 2020 19:31:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "154" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "192" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -4403,7 +7141,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -4472,7 +7210,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -4504,44 +7242,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "3a30148ba62a69a239bd03310a100ac9", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "bfed6a9dd8236024239838057c2a6fd6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ebfb50d4-4ed5-4eff-850b-2d79943e40b3", + "apim-request-id": "0338c38c-1db6-47a5-a403-a590ee83206f", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:17 GMT", + "Date": "Thu, 12 Nov 2020 19:31:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "198" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "154" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -4550,7 +7282,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -4619,7 +7351,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -4651,44 +7383,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4b19e0321b20c0081b77ac8d44f038e2", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "0e6d35884247a14036e4568b53516c83", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9fb0c119-2558-4eec-a4e1-2a01504bb55c", + "apim-request-id": "62d0617a-1499-4330-81a8-4e570b2f41f1", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:18 GMT", + "Date": "Thu, 12 Nov 2020 19:31:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "180" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "177" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -4697,7 +7423,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -4766,7 +7492,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -4798,44 +7524,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "a8142ecc1da7590f80f8b5c5e8fc3adf", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "b337b81f6557865cd2b9b104f0d8c1fe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5e9c340b-65a6-4654-982a-bdc407eb029c", + "apim-request-id": "4749615f-a2dd-47af-8278-8131b3ceab35", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:20 GMT", + "Date": "Thu, 12 Nov 2020 19:31:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "221" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "237" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -4844,7 +7564,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -4913,7 +7633,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -4945,44 +7665,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "3cb6ac7059f770540b6f1eb2fa152548", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "8e3597ad18ad5a2f294c893e82980cd1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1b035017-379c-4f41-b0cd-e7fc85e59381", + "apim-request-id": "2823562d-b78d-4953-8e7e-9074332a2f51", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:21 GMT", + "Date": "Thu, 12 Nov 2020 19:31:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "147" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "241" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -4991,7 +7705,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -5060,7 +7774,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -5092,44 +7806,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "db64218561fc1421d1bfca276543d81f", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "c4e6b42cbbf3237fd9e63c8e903cb05d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0d74f640-3388-402d-8327-e7cf24139f36", + "apim-request-id": "4a912487-419c-4758-b92d-6ff738a29f2d", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:22 GMT", + "Date": "Thu, 12 Nov 2020 19:31:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "157" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "217" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -5138,7 +7846,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -5207,7 +7915,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -5239,44 +7947,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "971dcc3dfb3a72ebd9a39c37ff5c5f6b", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "bbde5823dd1b06d688dc8a0adc1d0439", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a6395398-cf03-41cc-8270-a90bbd134fba", + "apim-request-id": "4c697518-1cd5-4341-a4a0-f62c40b84f3b", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:24 GMT", + "Date": "Thu, 12 Nov 2020 19:31:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "172" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "202" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -5285,7 +7987,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -5354,7 +8056,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -5386,44 +8088,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c73f6dd35e970fe38ba16a378e2c0bc8", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "3bd8dfacfcf2f10b1812b5c6dba1caed", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1b64b6ff-7738-40dc-b0af-986e88435d71", + "apim-request-id": "1914ebf1-fa7f-48c2-b8ea-2b118bdaaedb", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:25 GMT", + "Date": "Thu, 12 Nov 2020 19:31:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "164" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "189" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -5432,7 +8128,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -5501,7 +8197,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -5533,44 +8229,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2d75ff978df78a0e36f20158c4e91574", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "291b2b9b50ba4eb5dedf3b17317446bb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "589e287e-fb94-418a-bc6e-6ab722a2f685", + "apim-request-id": "67b81632-02b9-43d1-826e-6102f9b97a44", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:26 GMT", + "Date": "Thu, 12 Nov 2020 19:31:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "202" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "219" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -5579,7 +8269,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -5648,7 +8338,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -5680,44 +8370,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f8535f601104de87e90e0c9890b3e4ad", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "b1e103e17564266b4deca309270f2ae7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "68d07744-45d1-4347-a5eb-f9becbb60e4c", + "apim-request-id": "c994ff49-aa02-42c7-88ab-740c96cd8e7b", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:27 GMT", + "Date": "Thu, 12 Nov 2020 19:31:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "170" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "195" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -5726,7 +8410,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -5795,7 +8479,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -5827,44 +8511,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ffa0d49831e646735fb591a55c8a4aa1", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "b16f9d12da015b7e29895d12c1f3c0a4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e4400108-1ad8-4483-a61d-284d07be5641", + "apim-request-id": "a5e37e05-d76b-436e-8eb5-6457613b65a3", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:29 GMT", + "Date": "Thu, 12 Nov 2020 19:31:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "170" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "347" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -5873,7 +8551,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -5942,7 +8620,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -5974,44 +8652,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2fd7f68c13d986c4779743e98175f982", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d8e5facb19bf2688bff5dccdadac26cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "27b3d72c-848d-4fe9-b6a2-5fc9030e9907", + "apim-request-id": "c1f0bbea-a6b6-45e4-aa1c-adacbcf4bb33", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:30 GMT", + "Date": "Thu, 12 Nov 2020 19:31:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "167" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "208" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -6020,7 +8692,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -6089,7 +8761,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -6121,44 +8793,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "efc0540e15492e8eec0d984f7fe2815f", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "940554b4950407ba848587da18586459", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "548af8ee-9fbe-4d55-a3b3-1f53ded658e8", + "apim-request-id": "cf93026a-a702-487c-b20c-a52a642c0946", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:31 GMT", + "Date": "Thu, 12 Nov 2020 19:31:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "137" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "183" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -6167,7 +8833,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -6236,7 +8902,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -6268,44 +8934,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9a0c6ac3b4dc85d4101a884fed89c4e9", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "2d3dff2c522af8271449f10bfeb0ad7d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8b0a4ba9-34a9-405d-b841-d134decbd630", + "apim-request-id": "05ee484a-b21b-4ea3-a8be-684e55a16094", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:32 GMT", + "Date": "Thu, 12 Nov 2020 19:31:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "157" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "203" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -6314,7 +8974,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -6383,7 +9043,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -6415,44 +9075,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "08960ebb5bc9765867a843cb7a750695", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "6c5e8d622cee359f40dd533991ad0e66", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dff90312-2189-4f99-a7eb-4823b87e45a6", + "apim-request-id": "888b020b-8fec-46b8-8603-c0ccfc02415f", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:34 GMT", + "Date": "Thu, 12 Nov 2020 19:31:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "217" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "215" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -6461,7 +9115,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -6530,7 +9184,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -6562,44 +9216,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "1626e4155e6959a6803bdf2e8d3e4162", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "aea18390f96e61a52c0c7fbba3ae08d4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fbcaec9b-f812-4c16-9751-2ece084a79b5", + "apim-request-id": "1afb4b51-c563-45e3-b94d-f66deb899b75", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:35 GMT", + "Date": "Thu, 12 Nov 2020 19:31:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "156" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "317" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -6608,7 +9256,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -6677,7 +9325,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -6709,44 +9357,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7193af48794b67961295323371080b9b", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "8a7809d7f8fa006a5f07ed4cffed6766", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "946b4da2-200f-473c-a365-14021932bf6c", + "apim-request-id": "cfded988-d8ff-4558-b2f9-2b60b3dd825c", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:41 GMT", + "Date": "Thu, 12 Nov 2020 19:31:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5248" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "259" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -6755,7 +9397,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -6824,7 +9466,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -6856,44 +9498,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "0939f213ad635c80683d878e7b29e928", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7b7b8b3bff0f690ee8fc3fe2ace49192", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8d4b0164-fd68-4a61-bc12-d95804d77c92", + "apim-request-id": "c7961a3e-7227-47ad-8c20-3dce097c74a4", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:43 GMT", + "Date": "Thu, 12 Nov 2020 19:31:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "160" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "214" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -6902,7 +9538,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -6971,7 +9607,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -7003,44 +9639,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ca82e06795e19b4a4ebe04d32b72e777", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "88617fd58335986b18a14f670c58623f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "978b0b07-ab47-4f9d-8605-21e01b757b89", + "apim-request-id": "3494b5d7-fc18-456f-a1f2-4b31031d5210", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:45 GMT", + "Date": "Thu, 12 Nov 2020 19:31:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "142" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "193" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -7049,7 +9679,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -7118,7 +9748,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -7150,44 +9780,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9a1a443037049bff2e36080df107ece8", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "188018a58d32d8c5fb0ea1fdb887537b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "177ba07c-7362-42ee-8780-0a4503d4c60c", + "apim-request-id": "f033ff95-9a9d-4ae0-84a9-6678952411b7", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:46 GMT", + "Date": "Thu, 12 Nov 2020 19:31:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "180" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "221" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -7196,7 +9820,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -7265,7 +9889,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -7297,44 +9921,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "91cc09ab40867eb9a89ebba4a8ac30f5", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "80775b75de8cb7301fe2626db0a75d8f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "865622f0-7f3d-4961-8076-46ce6d51e74e", + "apim-request-id": "656b544b-fe79-4ef7-8a04-a20b50cdbd12", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:47 GMT", + "Date": "Thu, 12 Nov 2020 19:31:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "199" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "192" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 2, "failed": 0, @@ -7343,7 +9961,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -7412,7 +10030,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -7444,44 +10062,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "375e10564e0f2f24e1e79caa8c3ca946", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "933d009a7963475fb9888c26e26ee091", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ea8a6878-3eaa-4a49-a4c7-f154bea712e7", + "apim-request-id": "b87267a1-3fb0-4877-9965-3954b5a7a703", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:39:54 GMT", + "Date": "Thu, 12 Nov 2020 19:31:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5216" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "287" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "26732e85-5b99-46e5-a3eb-dbb07739f1a5_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:37:45Z", - "createdDateTime": "2020-11-09T19:37:44Z", - "expirationDateTime": "2020-11-11T19:37:44Z", + "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:29:27Z", + "createdDateTime": "2020-11-12T19:29:27Z", + "expirationDateTime": "2020-11-13T19:29:27Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45Z" + "lastUpdateDateTime": "2020-11-12T19:29:27Z" }, "completed": 3, "failed": 0, @@ -7490,7 +10102,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ @@ -7559,12 +10171,12 @@ "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "", + "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -7608,7 +10220,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-09T19:37:45.7858036Z", + "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithSkipParameter.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithSkipParameter.json index d8c2937517e00..ff6e721769c37 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithSkipParameter.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithSkipParameter.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "315", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-47eba6e7392bf442a7edd426313eeb08-a1c656757df1684d-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-5985db7e3db9af4c93acf6f354db1920-fb2be06893ab184f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "66213f11f688828028a07f5921c888bb", "x-ms-return-client-request-id": "true" }, @@ -47,55 +41,90 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "44d54edd-b97f-42df-be74-6e105ce23a12", - "Date": "Tue, 10 Nov 2020 21:26:38 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6e52f12c-0883-4bc5-9498-52f6251363a7_637405632000000000", + "apim-request-id": "20c4da02-dfe3-438a-8f16-9d828272beb8", + "Date": "Thu, 12 Nov 2020 19:27:01 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/9de28acd-54d3-47c9-a2c3-a0c67d45e4ca_637407360000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "210" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "321" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6e52f12c-0883-4bc5-9498-52f6251363a7_637405632000000000?showStats=false\u0026$skip=1", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/9de28acd-54d3-47c9-a2c3-a0c67d45e4ca_637407360000000000?showStats=false\u0026$skip=1", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7550f4ca3d1aa83453b335a4cb28f918", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b2151f17-6ab1-48fe-b7c9-0a603fb03e4a", + "apim-request-id": "5635158a-0052-4b32-8763-58e913637778", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 21:26:38 GMT", + "Date": "Thu, 12 Nov 2020 19:27:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "80" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "displayName": "AnalyzeOperationWithSkipParameter", - "jobId": "6e52f12c-0883-4bc5-9498-52f6251363a7_637405632000000000", - "lastUpdateDateTime": "2020-11-10T21:26:38Z", - "createdDateTime": "2020-11-10T21:26:38Z", - "expirationDateTime": "2020-11-11T21:26:38Z", + "jobId": "9de28acd-54d3-47c9-a2c3-a0c67d45e4ca_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:01Z", + "createdDateTime": "2020-11-12T19:27:01Z", + "expirationDateTime": "2020-11-13T19:27:01Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithSkipParameter", - "lastUpdateDateTime": "2020-11-10T21:26:38Z" + "lastUpdateDateTime": "2020-11-12T19:27:01Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 0, + "total": 0 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/9de28acd-54d3-47c9-a2c3-a0c67d45e4ca_637407360000000000?showStats=false\u0026$skip=1", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "6e334389d8cbd526e03ccbc674f1465c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c74ecb78-7ff4-48de-961d-f6fdd38b44c6", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:27:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "39" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithSkipParameter", + "jobId": "9de28acd-54d3-47c9-a2c3-a0c67d45e4ca_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:02Z", + "createdDateTime": "2020-11-12T19:27:01Z", + "expirationDateTime": "2020-11-13T19:27:01Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithSkipParameter", + "lastUpdateDateTime": "2020-11-12T19:27:02Z" }, "completed": 0, "failed": 0, @@ -105,44 +134,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6e52f12c-0883-4bc5-9498-52f6251363a7_637405632000000000?showStats=false\u0026$skip=1", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/9de28acd-54d3-47c9-a2c3-a0c67d45e4ca_637407360000000000?showStats=false\u0026$skip=1", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "6e334389d8cbd526e03ccbc674f1465c", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "de1aa601b91bd3c80b7813d4c0dbb700", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7de74a44-b751-4e02-bd37-4438d9417c34", + "apim-request-id": "61576e37-0f26-4062-bfcc-6eae305e99da", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 21:26:39 GMT", + "Date": "Thu, 12 Nov 2020 19:27:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "59" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithSkipParameter", - "jobId": "6e52f12c-0883-4bc5-9498-52f6251363a7_637405632000000000", - "lastUpdateDateTime": "2020-11-10T21:26:38Z", - "createdDateTime": "2020-11-10T21:26:38Z", - "expirationDateTime": "2020-11-11T21:26:38Z", + "jobId": "9de28acd-54d3-47c9-a2c3-a0c67d45e4ca_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:02Z", + "createdDateTime": "2020-11-12T19:27:01Z", + "expirationDateTime": "2020-11-13T19:27:01Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithSkipParameter", - "lastUpdateDateTime": "2020-11-10T21:26:38Z" + "lastUpdateDateTime": "2020-11-12T19:27:02Z" }, "completed": 0, "failed": 0, @@ -152,44 +175,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6e52f12c-0883-4bc5-9498-52f6251363a7_637405632000000000?showStats=false\u0026$skip=1", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/9de28acd-54d3-47c9-a2c3-a0c67d45e4ca_637407360000000000?showStats=false\u0026$skip=1", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201110.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "de1aa601b91bd3c80b7813d4c0dbb700", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "decf67a71a95f2f0ce7b95dd726d3461", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "910370f3-7ab6-40ec-88ce-cc4d4e030682", + "apim-request-id": "7cb83c03-7b55-4fff-ba77-7c567b27bade", "Content-Type": "application/json; charset=utf-8", - "Date": "Tue, 10 Nov 2020 21:26:41 GMT", + "Date": "Thu, 12 Nov 2020 19:27:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "135" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "65" }, "ResponseBody": { "displayName": "AnalyzeOperationWithSkipParameter", - "jobId": "6e52f12c-0883-4bc5-9498-52f6251363a7_637405632000000000", - "lastUpdateDateTime": "2020-11-10T21:26:38Z", - "createdDateTime": "2020-11-10T21:26:38Z", - "expirationDateTime": "2020-11-11T21:26:38Z", + "jobId": "9de28acd-54d3-47c9-a2c3-a0c67d45e4ca_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:02Z", + "createdDateTime": "2020-11-12T19:27:01Z", + "expirationDateTime": "2020-11-13T19:27:01Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithSkipParameter", - "lastUpdateDateTime": "2020-11-10T21:26:38Z" + "lastUpdateDateTime": "2020-11-12T19:27:02Z" }, "completed": 1, "failed": 0, @@ -198,7 +215,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithSkipParameter", - "lastUpdateDateTime": "2020-11-10T21:26:38.8761419Z", + "lastUpdateDateTime": "2020-11-12T19:27:02.6694869Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithSkipParameterAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithSkipParameterAsync.json index 6fe86067a05c6..4059c2e764e8b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithSkipParameterAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithSkipParameterAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "315", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c4b0a5f8d92a9f4891579e2633dd8ed4-cdf4d8df3533fe48-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-ccbf7af53458d345b4866b4fd1137970-3933ec40f9a3ac41-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "bfdf919d73f091624852e0c062e03ad0", "x-ms-return-client-request-id": "true" }, @@ -47,55 +41,49 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "6e824e36-fd12-4b60-b8a2-c29d87ee2a7c", - "Date": "Mon, 09 Nov 2020 19:35:16 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8c754c72-a487-464a-b359-59c826c34166_637404768000000000", + "apim-request-id": "38e781b1-5430-4c03-95e6-e1656de57ccd", + "Date": "Thu, 12 Nov 2020 19:31:39 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/0d9a2eae-f8b8-4584-aaed-e7917e311708_637407360000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "226" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "198" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8c754c72-a487-464a-b359-59c826c34166_637404768000000000?showStats=false\u0026$skip=1", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/0d9a2eae-f8b8-4584-aaed-e7917e311708_637407360000000000?showStats=false\u0026$skip=1", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "da0b53f68f4297de6ae8139f5a76d096", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cc10e858-edc0-424e-90a3-e44725b90fed", + "apim-request-id": "6491be91-21af-4fbe-bde6-adf6ab54bba5", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:35:16 GMT", + "Date": "Thu, 12 Nov 2020 19:31:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "displayName": "AnalyzeOperationWithSkipParameter", - "jobId": "8c754c72-a487-464a-b359-59c826c34166_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:35:17Z", - "createdDateTime": "2020-11-09T19:35:17Z", - "expirationDateTime": "2020-11-11T19:35:17Z", + "jobId": "0d9a2eae-f8b8-4584-aaed-e7917e311708_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:31:39Z", + "createdDateTime": "2020-11-12T19:31:39Z", + "expirationDateTime": "2020-11-13T19:31:39Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithSkipParameter", - "lastUpdateDateTime": "2020-11-09T19:35:17Z" + "lastUpdateDateTime": "2020-11-12T19:31:39Z" }, "completed": 0, "failed": 0, @@ -105,44 +93,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8c754c72-a487-464a-b359-59c826c34166_637404768000000000?showStats=false\u0026$skip=1", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/0d9a2eae-f8b8-4584-aaed-e7917e311708_637407360000000000?showStats=false\u0026$skip=1", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "6abf538023fc637f864050eb4fa5f7d2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dfd2f6e7-01fc-4f4e-95f1-3af1a53261e9", + "apim-request-id": "4e569235-8d0c-4f3f-a60f-770b0e0e4688", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:35:18 GMT", + "Date": "Thu, 12 Nov 2020 19:31:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "35" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithSkipParameter", - "jobId": "8c754c72-a487-464a-b359-59c826c34166_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:35:17Z", - "createdDateTime": "2020-11-09T19:35:17Z", - "expirationDateTime": "2020-11-11T19:35:17Z", - "status": "running", + "jobId": "0d9a2eae-f8b8-4584-aaed-e7917e311708_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:31:40Z", + "createdDateTime": "2020-11-12T19:31:39Z", + "expirationDateTime": "2020-11-13T19:31:39Z", + "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithSkipParameter", - "lastUpdateDateTime": "2020-11-09T19:35:17Z" + "lastUpdateDateTime": "2020-11-12T19:31:40Z" }, "completed": 0, "failed": 0, @@ -152,44 +134,38 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8c754c72-a487-464a-b359-59c826c34166_637404768000000000?showStats=false\u0026$skip=1", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/0d9a2eae-f8b8-4584-aaed-e7917e311708_637407360000000000?showStats=false\u0026$skip=1", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "dde65bb3fac20d04b347550760c237d1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1e38ec0f-8dc2-4300-8802-9a30364f9cde", + "apim-request-id": "bbbd417e-d4fc-413b-939f-726f8f4a920f", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 19:35:19 GMT", + "Date": "Thu, 12 Nov 2020 19:31:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "74" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "118" }, "ResponseBody": { "displayName": "AnalyzeOperationWithSkipParameter", - "jobId": "8c754c72-a487-464a-b359-59c826c34166_637404768000000000", - "lastUpdateDateTime": "2020-11-09T19:35:17Z", - "createdDateTime": "2020-11-09T19:35:17Z", - "expirationDateTime": "2020-11-11T19:35:17Z", + "jobId": "0d9a2eae-f8b8-4584-aaed-e7917e311708_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:31:40Z", + "createdDateTime": "2020-11-12T19:31:39Z", + "expirationDateTime": "2020-11-13T19:31:39Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithSkipParameter", - "lastUpdateDateTime": "2020-11-09T19:35:17Z" + "lastUpdateDateTime": "2020-11-12T19:31:40Z" }, "completed": 1, "failed": 0, @@ -198,19 +174,10 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithSkipParameter", - "lastUpdateDateTime": "2020-11-09T19:35:17.9132832Z", + "lastUpdateDateTime": "2020-11-12T19:31:40.4562139Z", "results": { "inTerminalState": true, "documents": [ - { - "id": "0", - "keyPhrases": [ - "CEO of SpaceX", - "Elon Musk", - "Tesla" - ], - "warnings": [] - }, { "id": "1", "keyPhrases": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithTopParameter.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithTopParameter.json index 2967e85ad3158..cbed2e7b6c692 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithTopParameter.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithTopParameter.json @@ -4,19 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "315", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "00-59dc84ef23ecbf4f85e9e759a04c7f54-3daf6c99d323d746-00", - "traceparent": "00-59dc84ef23ecbf4f85e9e759a04c7f54-3daf6c99d323d746-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-54a2ba121639a245a8602ab387070df4-c5645bc5a8f88d4d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f5a0428665082c595c1d3b6d579c7b27", "x-ms-return-client-request-id": "true" }, @@ -48,56 +41,49 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "c72fc51f-a9d5-49b7-aa1c-ceb1bac6da51", - "Date": "Thu, 12 Nov 2020 00:10:57 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a87f3cb4-197a-4862-bbfc-79654d5039ae_637407360000000000", + "apim-request-id": "2c265da7-e94f-475f-acb9-b014c56cd891", + "Date": "Thu, 12 Nov 2020 19:27:06 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/105e9e6d-d7a9-4a8c-9bea-2bf73ba3e13a_637407360000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "288" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "99" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a87f3cb4-197a-4862-bbfc-79654d5039ae_637407360000000000?showStats=false\u0026$top=1", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/105e9e6d-d7a9-4a8c-9bea-2bf73ba3e13a_637407360000000000?showStats=false\u0026$top=1", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|73151a50-44c5cabff455e21b.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "553c2e9c301fafa2ce30174e56a7aeb6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "34e3d08c-d218-4577-a87e-e4b7db3dc772", + "apim-request-id": "362dedad-f377-498e-8a59-2156a8bcd391", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:11:00 GMT", + "Date": "Thu, 12 Nov 2020 19:27:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "149" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithSkipParameter", - "jobId": "a87f3cb4-197a-4862-bbfc-79654d5039ae_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:10:58Z", - "createdDateTime": "2020-11-12T00:10:57Z", - "expirationDateTime": "2020-11-13T00:10:57Z", + "jobId": "105e9e6d-d7a9-4a8c-9bea-2bf73ba3e13a_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:06Z", + "createdDateTime": "2020-11-12T19:27:06Z", + "expirationDateTime": "2020-11-13T19:27:06Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithSkipParameter", - "lastUpdateDateTime": "2020-11-12T00:10:58Z" + "lastUpdateDateTime": "2020-11-12T19:27:06Z" }, "completed": 0, "failed": 0, @@ -107,45 +93,120 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a87f3cb4-197a-4862-bbfc-79654d5039ae_637407360000000000?showStats=false\u0026$top=1", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/105e9e6d-d7a9-4a8c-9bea-2bf73ba3e13a_637407360000000000?showStats=false\u0026$top=1", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "Request-Id": "|73151a51-44c5cabff455e21b.", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201111.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ef89b7f4fba1a676b9ada33b769d705d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9c88cb28-1b84-49df-9999-b2ffbc3cc6bd", + "apim-request-id": "3c1cb1ed-74d0-449e-ae07-5d35951723a5", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 00:11:02 GMT", + "Date": "Thu, 12 Nov 2020 19:27:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "223" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { "displayName": "AnalyzeOperationWithSkipParameter", - "jobId": "a87f3cb4-197a-4862-bbfc-79654d5039ae_637407360000000000", - "lastUpdateDateTime": "2020-11-12T00:10:58Z", - "createdDateTime": "2020-11-12T00:10:57Z", - "expirationDateTime": "2020-11-13T00:10:57Z", + "jobId": "105e9e6d-d7a9-4a8c-9bea-2bf73ba3e13a_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:06Z", + "createdDateTime": "2020-11-12T19:27:06Z", + "expirationDateTime": "2020-11-13T19:27:06Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithSkipParameter", + "lastUpdateDateTime": "2020-11-12T19:27:06Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/105e9e6d-d7a9-4a8c-9bea-2bf73ba3e13a_637407360000000000?showStats=false\u0026$top=1", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5101bd37175355c39ff126d84e0bd6b5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b57acf6e-2aa4-4474-a3b2-483678669b86", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:27:09 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithSkipParameter", + "jobId": "105e9e6d-d7a9-4a8c-9bea-2bf73ba3e13a_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:06Z", + "createdDateTime": "2020-11-12T19:27:06Z", + "expirationDateTime": "2020-11-13T19:27:06Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithSkipParameter", + "lastUpdateDateTime": "2020-11-12T19:27:06Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/105e9e6d-d7a9-4a8c-9bea-2bf73ba3e13a_637407360000000000?showStats=false\u0026$top=1", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "a079846f8c12a185b7959b718d673830", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "741b4753-5837-476b-8528-bb29b2067e7c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:27:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "73" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithSkipParameter", + "jobId": "105e9e6d-d7a9-4a8c-9bea-2bf73ba3e13a_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:27:06Z", + "createdDateTime": "2020-11-12T19:27:06Z", + "expirationDateTime": "2020-11-13T19:27:06Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithSkipParameter", - "lastUpdateDateTime": "2020-11-12T00:10:58Z" + "lastUpdateDateTime": "2020-11-12T19:27:06Z" }, "completed": 1, "failed": 0, @@ -154,7 +215,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithSkipParameter", - "lastUpdateDateTime": "2020-11-12T00:10:58.1748106Z", + "lastUpdateDateTime": "2020-11-12T19:27:06.7592687Z", "results": { "inTerminalState": true, "documents": [ @@ -170,12 +231,12 @@ ], "errors": [], "modelVersion": "2020-07-01", - "@nextLink": "http://svc--textanalyticsdispatcher.text-analytics.svc.cluster.local/text/analytics/v3.1-preview.3/jobs/d61728df-c8e4-4b46-8a70-c953338f3942?$skip=1\u0026$top=1" + "@nextLink": "http://svc--textanalyticsdispatcher.text-analytics.svc.cluster.local/text/analytics/v3.1-preview.3/jobs/e607da11-c6c5-44d5-87f6-5c77282fa4c5?$skip=1\u0026$top=1" } } ] }, - "nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a87f3cb4-197a-4862-bbfc-79654d5039ae_637407360000000000?$skip=1\u0026$top=1" + "nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/105e9e6d-d7a9-4a8c-9bea-2bf73ba3e13a_637407360000000000?$skip=1\u0026$top=1" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithTopParameterAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithTopParameterAsync.json new file mode 100644 index 0000000000000..bcb09a10c56a6 --- /dev/null +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithTopParameterAsync.json @@ -0,0 +1,289 @@ +{ + "Entries": [ + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Content-Length": "315", + "Content-Type": "application/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "traceparent": "00-b9d14e4c2630404d87ea27dd6e21966b-8079970f4e108e48-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4363d852e8c119d2a2fa97a42e5f4e70", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": { + "analysisInput": { + "documents": [ + { + "id": "0", + "text": "Elon Musk is the CEO of SpaceX and Tesla.", + "language": "en" + }, + { + "id": "1", + "text": "Tesla stock is up by 400% this year.", + "language": "en" + } + ] + }, + "tasks": { + "keyPhraseExtractionTasks": [ + { + "parameters": { + "model-version": "latest" + } + } + ] + }, + "displayName": "AnalyzeOperationWithSkipParameter" + }, + "StatusCode": 202, + "ResponseHeaders": { + "apim-request-id": "c4dc4437-de8f-4196-bfd2-44b7c1937691", + "Date": "Thu, 12 Nov 2020 19:31:42 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/75647564-5414-4932-8e92-7ec622c0a1a4_637407360000000000", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "170" + }, + "ResponseBody": [] + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/75647564-5414-4932-8e92-7ec622c0a1a4_637407360000000000?showStats=false\u0026$top=1", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "468deb1ccb621dd96694037a6ba13fa6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "24637190-e440-4225-be31-d1a700e3a2ec", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:31:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "11" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithSkipParameter", + "jobId": "75647564-5414-4932-8e92-7ec622c0a1a4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:31:43Z", + "createdDateTime": "2020-11-12T19:31:43Z", + "expirationDateTime": "2020-11-13T19:31:43Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithSkipParameter", + "lastUpdateDateTime": "2020-11-12T19:31:43Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 0, + "total": 0 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/75647564-5414-4932-8e92-7ec622c0a1a4_637407360000000000?showStats=false\u0026$top=1", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "2a358e408ae783469392811f1ba768c9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "063a1155-146b-4285-b665-19239c3ae3fc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:31:43 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithSkipParameter", + "jobId": "75647564-5414-4932-8e92-7ec622c0a1a4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:31:43Z", + "createdDateTime": "2020-11-12T19:31:43Z", + "expirationDateTime": "2020-11-13T19:31:43Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithSkipParameter", + "lastUpdateDateTime": "2020-11-12T19:31:43Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/75647564-5414-4932-8e92-7ec622c0a1a4_637407360000000000?showStats=false\u0026$top=1", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "1a307cd6f55486edff46dd2ce457ae00", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f6cf7eef-baca-4652-b65a-ad88f2cb3f73", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:31:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "43" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithSkipParameter", + "jobId": "75647564-5414-4932-8e92-7ec622c0a1a4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:31:43Z", + "createdDateTime": "2020-11-12T19:31:43Z", + "expirationDateTime": "2020-11-13T19:31:43Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithSkipParameter", + "lastUpdateDateTime": "2020-11-12T19:31:43Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/75647564-5414-4932-8e92-7ec622c0a1a4_637407360000000000?showStats=false\u0026$top=1", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "a064f1ba23299189a40ab3d04ab902be", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f63f13df-6af0-4c56-9c96-e23949b8c301", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:31:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "49" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithSkipParameter", + "jobId": "75647564-5414-4932-8e92-7ec622c0a1a4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:31:43Z", + "createdDateTime": "2020-11-12T19:31:43Z", + "expirationDateTime": "2020-11-13T19:31:43Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithSkipParameter", + "lastUpdateDateTime": "2020-11-12T19:31:43Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/75647564-5414-4932-8e92-7ec622c0a1a4_637407360000000000?showStats=false\u0026$top=1", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "efa4392b25714b51a0af2ba1ad199f3b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d0764c15-957a-4ead-9b27-30434052e5c4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:31:48 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "105" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithSkipParameter", + "jobId": "75647564-5414-4932-8e92-7ec622c0a1a4_637407360000000000", + "lastUpdateDateTime": "2020-11-12T19:31:43Z", + "createdDateTime": "2020-11-12T19:31:43Z", + "expirationDateTime": "2020-11-13T19:31:43Z", + "status": "succeeded", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithSkipParameter", + "lastUpdateDateTime": "2020-11-12T19:31:43Z" + }, + "completed": 1, + "failed": 0, + "inProgress": 0, + "total": 1, + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithSkipParameter", + "lastUpdateDateTime": "2020-11-12T19:31:43.5974421Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "0", + "keyPhrases": [ + "CEO of SpaceX", + "Elon Musk", + "Tesla" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01", + "@nextLink": "http://svc--textanalyticsdispatcher.text-analytics.svc.cluster.local/text/analytics/v3.1-preview.3/jobs/06e9cc28-b861-47d9-95a7-f79077a6c960?$skip=1\u0026$top=1" + } + } + ] + }, + "nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/75647564-5414-4932-8e92-7ec622c0a1a4_637407360000000000?$skip=1\u0026$top=1" + } + } + ], + "Variables": { + "RandomSeed": "865527543", + "TEXT_ANALYTICS_API_KEY": "Sanitized", + "TEXT_ANALYTICS_ENDPOINT": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com" + } +} \ No newline at end of file diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json index 986c3386fb5db..1fc4f6617a121 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-63786838ca499b4eb50627dd4483ad8f-02b7756309dfc54c-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-e58037c6def3e04a967b929501ca6b52-44e40370a7b7c245-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7fbb9dea32b8080ffdad856789b2330d", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ec3eb933-1269-405d-9502-ea677d0563e3", + "apim-request-id": "1663c494-5716-4771-927d-89a90eec8b0f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:14 GMT", + "Date": "Thu, 12 Nov 2020 19:31:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "103" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "136" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json index 22d660fdb7acb..37ab4582e86bb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7b54af3d25713d4f81427ef5439aa8af-237e604fe12c0e4e-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-942cc424734c7f4094ab0126088c8b13-9823cf22a7076244-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9ce6282fe98018f1ea732ad3ecd9e59c", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2869bd6c-6139-43a7-b9f3-7d0a8371efb7", + "apim-request-id": "7fb65b8e-4f47-475d-bfc5-b7f795f9a69c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:20 GMT", + "Date": "Thu, 12 Nov 2020 19:31:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "111" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "97" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json index 6256a48be2ed5..df24bdf3c15ca 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-23ad581dd7995245b6aac51b355b4c24-5dca04ce50bb8b42-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-037c75320547cc4991f450e7c6b1d6eb-ca2af91143be3e43-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "119c99db1e02c34777426e77d5c75cb6", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "acedfb78-bdac-44e0-8af7-362f105a7b6e", + "apim-request-id": "b1681a52-c5f5-4886-8478-ff96e157527f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:14 GMT", + "Date": "Thu, 12 Nov 2020 19:31:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "106" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "121" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json index 8822d476b453f..253b1601ac632 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bcd043f332f9fe45a11a1d60f963689f-d3725306bc06134f-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-ec00780ae21f19459a2e5d36c4beb54c-5c529e050c4cfd45-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9d1067da67ede0f99771b2c8070f5079", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "296ecd10-4b1f-4c78-9b77-7fab2326e954", + "apim-request-id": "23ba6ef8-6700-4d59-a336-bbdcedc7592a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:21 GMT", + "Date": "Thu, 12 Nov 2020 19:31:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "102" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "112" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json index 7d616dc2ea2e6..7772d9f2b8d4b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a8ee6e9780a0b340a6de42219a5b60d1-cb5a8d08bb489144-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-e54b3a4c7ad3f443aa6584a9d962bdc3-bedcfc2bbb4ed84f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "86b79e2f0559eb97f25b1c5b233a68dd", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8946863d-bdf6-4649-ad85-3749f35ff2c7", + "apim-request-id": "78474e0e-570e-4280-bbe4-c3c038ebaa34", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:14 GMT", + "Date": "Thu, 12 Nov 2020 19:31:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "103" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "121" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json index c88497006c5ef..4ce6cd3d210f8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5b560f21d934ce4e8c95169ff2b4fc53-edeaa8e4b124e34d-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-df4e8791c9d9d641810019ac0062ed63-d56ee238426f684c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "300adb4a8ab9aa03c50b104c35b7e035", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "096e77f9-ba84-4a39-9660-6db800a56f9e", + "apim-request-id": "dc2dff0b-0996-456b-88d3-9b0fa1e56734", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:21 GMT", + "Date": "Thu, 12 Nov 2020 19:31:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "123" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "105" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json index 461e9b9f22128..bf9051ea0eb1a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ebe82730afb17848846ee19bd61bd68f-6368d0c4f67a3d44-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-40f96a3fa92d2c4483f479aca3d29333-eb643853dd5faf4b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "abe848a0b41107615847f9d88e292402", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "485afdd2-8769-4200-b6a2-b67597c9d685", + "apim-request-id": "7999e68c-d329-4d13-9481-286b0ff5b489", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:16 GMT", + "Date": "Thu, 12 Nov 2020 19:31:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "106" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "103" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json index 69534d096b727..7995c0dcef85c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3fecd8adea9f8e4b9b3d123b07c78578-793980787f77534b-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-238a0cae274753498197bf579b832625-0e7227fc36b11944-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e76a4622dec6c96d7ae12bfd307d2c70", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1dbee381-45c8-4afd-9f76-df5b95d0c1ab", + "apim-request-id": "8428edb1-e864-4cc9-bf37-d3b1682961ad", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:21 GMT", + "Date": "Thu, 12 Nov 2020 19:32:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "104" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "103" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json index 9e4355ba30b5c..de8fd1be57662 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fb199005e0e59a4b82cfadd9f16d4a4e-46c197166d3f944b-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-02fc6a71f32908469422e3d04668c5f1-384a3f5150e9744f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ddaaf35e96b9dae8e520d1e25db41ef1", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "00c26263-9a7a-4a26-8b2e-a21a8ae682a0", + "apim-request-id": "f8c357a0-be1a-45fc-a115-02622ae4c745", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:16 GMT", + "Date": "Thu, 12 Nov 2020 19:31:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "102" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "111" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json index c9b219a823f6a..0a0a8a2ea6e0e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1c1440216fd1194fbb0572b416de18f1-6436a937fd7f7a45-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-5756188b35a1ee4db6a6285f160a7c18-3456bea80c052b4d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a461009a7ec465a3d8be1a54c58e3575", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "95478309-75af-4777-8b05-cd14d41af5ec", + "apim-request-id": "1e35fec1-426b-4cf6-b285-121e1e4b7a51", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:21 GMT", + "Date": "Thu, 12 Nov 2020 19:32:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "109" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "115" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json index 6868c49f96b67..7fe0ab70f1c35 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6145cf4ebaeb6c4abdd1e3319a5b97f6-abf07e4de4b3e040-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-220df8554ef25c4c8906bc2037725c60-e3918b61d1e5db4d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f4f79420d55186c560e783cd65904498", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8a6a5f12-2f5a-45d0-8f94-7c45e5ce654f", + "apim-request-id": "242a7bbe-3455-4f43-90c0-66da4a77d772", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:16 GMT", + "Date": "Thu, 12 Nov 2020 19:31:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "98" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "105" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json index 4b562c08cdc05..9fc3350301670 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-38e204419cea6b419c053f61f46b68b8-4bf5ae0736185b4d-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-2a1fc5ecae19a349bcce7e88f0d3e8ba-9cbd9d1cec39464e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a82300e8850457b9e1ddd84e5e66ebf5", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8ec999d1-e42b-461c-887a-5bbc662176a4", + "apim-request-id": "c2f441c8-4508-41c7-ac3c-2c5dfd082bda", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:22 GMT", + "Date": "Thu, 12 Nov 2020 19:32:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "105" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "96" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json index 4d073d8187cc4..96c05b8c59a12 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2a8514c88c5ca840adfa296845587160-f95e94e095aa1e45-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-1fa627046cc38441b518dc26c8a0c635-bbf85bdbefcab041-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d0c9faccbe22f6229408f2811c507283", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "26733d6a-c4d4-4b25-882e-bc52d8f5d081", + "apim-request-id": "e6c7a962-5782-49d3-b471-d71281cb727d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:16 GMT", + "Date": "Thu, 12 Nov 2020 19:31:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "103" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "102" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json index bf49b52e9e680..21bf1c545925e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-70fd27ef8ec82b428a660f17bd40a82c-62b57eb89a338e4d-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-4d8e77dc95237b4cb28184fe438bf875-e3c952577d9fa64e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "99f36dc03d5b69cad15ff682fb68e8a9", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1d132eab-32f1-4872-813f-43f8370e74f7", + "apim-request-id": "1163a8a8-50a0-448c-87f6-cb0ed71927af", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:22 GMT", + "Date": "Thu, 12 Nov 2020 19:32:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "106" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "101" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json index ed3e08e0145b2..5151ff976ca59 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d0b592284c63044787629d7eb7155893-5712efd55bde0445-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-2b41b9d685d6e64597c226d089ce87ea-f688fef271acd443-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ea37c4c5b43ade506c055e9d1167082c", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "54b9d055-0b04-4cfe-bd33-2be8971b194c", + "apim-request-id": "0dd0a210-8954-43d7-8cad-acd15a81e75d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:17 GMT", + "Date": "Thu, 12 Nov 2020 19:31:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "106" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "95" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json index fa692bd858cc7..31165b742129d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-47791658edaf334f8d9505e7dad881e0-82b7fc44e249814b-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-2302a667c7b1114da297a0fad4f583fe-17e01feb19ba654a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d297a709781eea07c58dac26eba5fefd", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3932d9ea-9d6d-48f2-b017-341b13248983", + "apim-request-id": "6ea7273e-8966-4fdc-96e4-cf7ec68932a3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:22 GMT", + "Date": "Thu, 12 Nov 2020 19:32:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "108" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "97" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json index 2aaa26e7371dd..d29dba28036ad 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4563ad4775c0b54eb8b975087f203b10-a8385dc01853f64e-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-20760378198e624496fe9d2a8bf7af7a-fbd2ae93f3e7914e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b93a282865c5e574aa1703755dff0595", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8cb3ee89-4721-4bdc-a79b-15a6e0aec7d4", + "apim-request-id": "1df40fc8-27e1-4adc-8be5-21a69814608b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:17 GMT", + "Date": "Thu, 12 Nov 2020 19:31:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "105" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "101" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json index 608e3bb7bbe11..c427d728707a3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7fd815f271d93b40ab777d5defc65c81-2a354505abb9f74d-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-57b4259703dfcf4ab332fabfaa68fc47-aa80b4743c36564e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "896aa869bee9e15710e9b281353ff7e1", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "55ec3982-ed46-4961-a388-959d4c6b9b7f", + "apim-request-id": "3081ee8c-2cf0-48a0-baff-84fae4f543c9", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:22 GMT", + "Date": "Thu, 12 Nov 2020 19:32:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "109" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "104" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json index 47c14492531bf..0557e0c5cce73 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0c7a1935d7de4b408998fa00e055b00b-3725a2183c00554b-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-c5bb4279cd1e6141982cef162d9e3b49-981564bfc6f1854b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f4c1d2e666ddf215fcefdfedc5dd71c8", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a3187b35-47e5-4c0a-9af3-136a28a0a7ea", + "apim-request-id": "5d5cfdcb-4adb-4971-8ecc-40bbc6f3b3b1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:17 GMT", + "Date": "Thu, 12 Nov 2020 19:31:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "122" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "101" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json index 9336dd8ac0bf2..dc48c80ca1b50 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-80c8e904e762f64bad1227f69eaa38b7-5c9fa8cdb9ae6540-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-c101431a1c759b46922fea2f3c7f5800-b031fb373ba0a341-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "26baa46075d446ba158f6fd6eeae447a", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "56421070-89b6-478a-81d0-9f92291f9754", + "apim-request-id": "fa230d8a-5089-4517-9c4a-8a789d381975", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:24 GMT", + "Date": "Thu, 12 Nov 2020 19:32:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "116" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "109" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json index 6ecc8e2665fa4..c8ecc4d33945a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "207", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0c1b03e73a26264c94c8e46602bd24f9-9dec0fa6d968fc42-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-00ab297676f31247b9f33d20bd4762b8-08743965e7506340-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "381e2b63f2088d45202cae7fd25e5042", "x-ms-return-client-request-id": "true" }, @@ -40,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "71e9dabb-cd1d-4436-b212-22416b688620", + "apim-request-id": "c1704103-db2a-4851-a4cc-8cb59c7e020d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:17 GMT", + "Date": "Thu, 12 Nov 2020 19:31:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "117" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "101" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json index a6b46320d34d7..09c10c8a75e9d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "207", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a4c3dc90a6cec74197f8f3f0d99a084d-2aae3b2827c0e34e-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-013b0a83d3caed429a2a3d369fee335a-eeb89b145eee3d47-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "29ac615e7a25f0506bd8c86ac7133e14", "x-ms-return-client-request-id": "true" }, @@ -40,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "87b1e812-1ccc-402d-9290-64622da649b0", + "apim-request-id": "ef22db0f-d1b0-4d40-9c1e-20a47bbe084e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:24 GMT", + "Date": "Thu, 12 Nov 2020 19:32:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "105" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "95" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json index d59331c8e0e9a..57e65116b8c68 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b8eb6e000b45ad4d88b3877cc2b493d2-21123cf28e3eac4a-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-4aa518e7c714b14682f8cbb6ad42e50b-bdb33b07acba364f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e97c715478efd2b509099d562415356f", "x-ms-return-client-request-id": "true" }, @@ -30,12 +24,12 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "0ac5cda0-44f9-4563-8bc0-9461420908c6", + "apim-request-id": "e60eec06-475f-41d0-aa3d-1d2b73b08ef1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 05 Nov 2020 20:52:18 GMT", + "Date": "Thu, 12 Nov 2020 19:31:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "5" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json index ad8ff7f42a40e..2252ac4e57ba3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c73cf1597a7046409be42a05f7d0bccd-3beee5977d2be14c-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-3e7815aeadddbd4d8fe8502550cf4cc8-2d5e35f8dd75cf4c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7d28785fafea6a705989dd511c352058", "x-ms-return-client-request-id": "true" }, @@ -30,13 +24,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "d342ea74-4b7f-44a7-b08d-9b0ca2129dfc", + "apim-request-id": "82235218-96f9-4ec2-a658-9398957adffd", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 05 Nov 2020 20:52:24 GMT", + "Date": "Thu, 12 Nov 2020 19:32:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json index b6acaca59e827..59bc1014fe287 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d8d36d1881c5a949bcef5fcf5da6aec3-795140ce27d6f54f-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-f0a8c461c151964199750bab54388421-d45cc5ee6a947348-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a82047bc1e56521f19fee095619725e3", "x-ms-return-client-request-id": "true" }, @@ -30,13 +24,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1761e869-1998-4173-8653-df9f76bc1682", + "apim-request-id": "db7690d0-a8b0-46f2-a20f-6448a9e831c2", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 05 Nov 2020 20:52:18 GMT", + "Date": "Thu, 12 Nov 2020 19:31:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "2" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json index 3df040c5fac24..b9b10c6c04e82 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4c1c34a8bf6b8e478730b9e48f654789-1fedac3b2083f247-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-79de3fdc50b9e44eb865882612a1141e-41314a150de4c740-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e4b5e1c573e3bc3fc5137a6a90633740", "x-ms-return-client-request-id": "true" }, @@ -30,12 +24,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d29171bf-03f3-413a-935e-bdc23d4e903c", + "apim-request-id": "7d55f50a-8517-4f37-9a60-7915d7dec594", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 05 Nov 2020 20:52:24 GMT", + "Date": "Thu, 12 Nov 2020 19:32:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "2" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json index cf079d786f03b..cf43f7bdd629b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e3023c73a88c4946a2eec48e6b10cfd0-b1e1a23358cbc94a-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-a2ced50229bb6c469c9ef5f6c3b6d327-39ae356ca537484a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4bb052b32c66958101e8bfb2d70a96bf", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d12177eb-8647-4c7e-bfab-28acad0a0a8d", + "apim-request-id": "f8ca611f-59e0-44d6-aff7-41afb3c096fb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:18 GMT", + "Date": "Thu, 12 Nov 2020 19:31:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "118" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "109" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json index 4df6577c42207..55b1b7b4b2aec 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6f11270c6096394d8be72cb71339f4c7-57e5c1e209f45e49-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-6b817e5dc8f93543908ccc79b5a4cc9b-8e44a2810cdf6a45-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "10469efe411909195ef72681bf249b22", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "23bc695e-cb5f-4d37-8f3b-bd9661bea6d8", + "apim-request-id": "603d82ac-e6cd-4b97-8d93-106688db3311", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:24 GMT", + "Date": "Thu, 12 Nov 2020 19:32:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "109" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "105" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json index 6534abcf90acd..faead53d65c12 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8e0977e13674c846a256cbbf8d0baebb-5c5fb6e9f0894246-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-130a01bb2a5c4b409f4a89eafefb40d7-feb4c7ef829b6141-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "380d3332cec3ce7a5b0d21c20c2f8b8d", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7c9ebf50-2b3c-47a0-a0f2-105e16c69586", + "apim-request-id": "1f6f9940-21d7-4b71-b4a4-dd4408ed5395", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:18 GMT", + "Date": "Thu, 12 Nov 2020 19:31:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "126" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "105" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json index 6f23234152f55..829aebb1027d4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-72e5a17c21daa047883c0728bc36fd8c-44013c6127852245-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-54d3665e70e8984ea8bfd967c147a5da-a8f30f44b01f1243-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f794f0733bb3c43d680189f109278930", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4afcfae0-0087-4265-9825-3163cb80704e", + "apim-request-id": "c1c97e1b-d90c-47eb-8ed3-ba5ab8d1966b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:25 GMT", + "Date": "Thu, 12 Nov 2020 19:32:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "103" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "112" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json index 76ec6ad2cd4db..b77df7faa2992 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ff12c7f22941624d93f2b1fba0acd158-1940997b2b25364d-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-9b901bd6cd12e143bbbee55d78531ed9-4124d74adf60ae4f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4e5bdbe5820d38723d195b24082e286d", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1c533bdc-0fe4-48f7-b80b-013ac0483473", + "apim-request-id": "3366e928-a124-4a16-a151-73fdc5207d50", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:19 GMT", + "Date": "Thu, 12 Nov 2020 19:31:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "105" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "128" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json index aa87ffb007bcf..6413f0d11a860 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bbfc1087f0a3534584c3095e74d47102-2ea97ba0ae2e0b44-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-740fe5dbc75a6043899772ad056b4176-890d44516018ba49-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "03ba29d245db7d4660e70538d783a159", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5ce5a1a9-f30c-4aae-b205-6c4ccc391768", + "apim-request-id": "96b65c61-c5eb-462d-b6b4-ac7cfe76a882", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:25 GMT", + "Date": "Thu, 12 Nov 2020 19:32:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "105" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "98" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json index 9ace5f98b7e71..fbe3f7d2f4246 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e2df4e09b9134a4b8fa7d185b3fe6cbd-f19e763e2e1fe147-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-c6296c79df42da41be36c3b654bcb6bf-fbee0685f7495d4f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1cd519dfbccdba31b1f719f550932df6", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7a661328-22a5-42a5-b64f-5950a13fdd99", + "apim-request-id": "cd96428d-5a24-4a41-aff8-731dd987e170", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:19 GMT", + "Date": "Thu, 12 Nov 2020 19:31:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "107" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "105" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json index a0e6be20b5000..d6f085902ec30 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-713dc9504639274caf7625d609427d9c-66c0200192feab41-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-3f0fd925f79bbc488cd7198173a054f9-7b30f4b601c06747-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e4628ff9d75e35fa30a2a74d75b5d054", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dea736c6-54d0-443e-bf38-bd6b364afc19", + "apim-request-id": "c40f8da5-8ec4-4f1d-a2b6-92c4ab8a7908", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:25 GMT", + "Date": "Thu, 12 Nov 2020 19:32:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "101" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "94" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json index c6fe51af20f0f..93ea0b08c97b6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9c75d21382dc4c4391eb021e893bf547-21a9e0b27b966e40-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-c3ae0996ecca2b46a33d209ad6960b66-5a20d8394176c949-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "0226741a4a3852fb661facf15a20cdfc", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "acac3729-ae9b-494d-9321-9db858bb7c18", + "apim-request-id": "0ba03551-d1ee-4db0-b4bd-1554cbaddffb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:19 GMT", + "Date": "Thu, 12 Nov 2020 19:31:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "103" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "107" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json index f543c54c615a2..b7c3ee107648a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ae372ecb2297a841aee39886405f6e81-2c46709ac1889344-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-c79a61bca3729d41ba1c5cb6e1aba208-158651bb5ff76843-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1d19c9bc741aeaae2a3044500760d7de", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "adbb4594-c02b-440d-947c-c65cf23d3fc0", + "apim-request-id": "bf2b6ab6-cd4e-405e-a98c-1aa50b042124", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:25 GMT", + "Date": "Thu, 12 Nov 2020 19:32:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "117" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "96" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json index d70ddb68fe5c9..357e78e289ee7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4cc70647ea19fa469941946596e1bf7c-8a98875dc744dd4d-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-3abb79bb4f2ced4fb7d55bdf2f955993-40ad55d8163ceb48-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b1c263e328066fc8dce532b649cbfd03", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "afb3b813-9d7b-4f99-8102-3e5f1aa61b93", + "apim-request-id": "48a44061-cc4d-47a4-a1e1-9f71c1e6bff2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:19 GMT", + "Date": "Thu, 12 Nov 2020 19:31:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "100" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "94" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json index 8137864601159..fe51ebbb02fed 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-13de5b3ef96e6c48ba1eebbba5a8234b-ce3db9641c2f9749-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-af6df28fda298f40bccaefc34948aa62-cacb13c8ff486d4a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "61e4104888cde5cbe34786063a0401dd", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fed5ec52-aa22-4328-8a2b-5d38cef01f9b", + "apim-request-id": "2bddcc66-cb9f-4f8e-83b8-c7bd6710ac60", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:26 GMT", + "Date": "Thu, 12 Nov 2020 19:32:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "98" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "95" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json index d82dbb8672df1..301f2fc3ffe8a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "127", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-86fd16d2e9304f439182d70341e2530a-61e363a7f0cebc49-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-39c75d95e41ae749b93b237d46189a6b-1f1853e12b305746-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1e33ed24967d42087f8188a6111ef9b0", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "51cb12b0-18ea-40ef-bf59-fd6eff1c7ff3", + "apim-request-id": "b15bb93d-20c7-4366-9ae9-11bb18734827", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:20 GMT", + "Date": "Thu, 12 Nov 2020 19:31:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "112" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "96" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json index 5cedc1c96f088..50d1121f878d7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "127", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-04dd3001a4254b4cb7a55079bb745598-dc1e4ba39828f240-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-e1aa14ab3a51554ea698edf87b0d41c5-c40d20d81737d340-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "504a9c53bf1eca7814bfce867e01718a", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "19ed79ec-26fa-4179-987e-3c08d6f7ecf5", + "apim-request-id": "79eafe59-fb79-48a4-a9a2-7a253ca8a805", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:26 GMT", + "Date": "Thu, 12 Nov 2020 19:32:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "99" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "98" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json index 42af203282ccb..4fc4347ddd01d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9172b9beab08714fb45ce77d7bb86e0e-2fc45035c7b64b41-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-8f1092bf51ad56419ebe7d0e63595198-8b7f834a813e124c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "558a7442c3b1c5137141db1dd8ca6858", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4ec89203-2e34-44b1-bde1-db3408821aa9", + "apim-request-id": "f0edc003-6451-4599-8c19-7d781f1bcdf1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:20 GMT", + "Date": "Thu, 12 Nov 2020 19:31:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "101" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "109" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json index da876f6730b9c..6878b7cafbb7b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e908513919779842862fdc23a61be2e4-2e4d99673f37ad4e-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-9a23ab5503d97948846fa46ce320eb14-577248b598746c4a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f6867f38d810d57a89dad763eab07a05", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "338655a4-70d6-47c8-bbca-d84d3b8dd15c", + "apim-request-id": "dff453cc-82a4-4218-931e-e38fcb69aea3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:26 GMT", + "Date": "Thu, 12 Nov 2020 19:32:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "102" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "99" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json index f756d2cf1204c..b6097bd836a16 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "80", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3c08aa66d4e82047b5ebb1de4246e68c-9101449b08e1e548-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-bf894546e733cf41979209e0b3047cee-08a62f0394b04d43-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8d0590d28394353aadd5df7e697ac312", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a8e1bae4-2110-4f4d-9a20-5e22a8575ae4", + "apim-request-id": "b023476e-0a55-4519-a102-2fc513eb3ae2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:20 GMT", + "Date": "Thu, 12 Nov 2020 19:31:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "102" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "99" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json index 1ee44a7af4067..8040eb5f8ffc7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "80", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b8c66b03599c0f4e9da4ff7003dff0d2-e735283d9ce4974f-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-1f9e1f895061dc4094eb1d090c8a8f19-c5e80f83e17a7b48-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "94ab183ce7dcf7c7f3beeb119ae08867", "x-ms-return-client-request-id": "true" }, @@ -30,13 +24,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c1b7b559-3e20-4403-860a-aaf761a7d6fc", + "apim-request-id": "1014848a-565d-43c2-919e-bb0b2bc480eb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:26 GMT", + "Date": "Thu, 12 Nov 2020 19:32:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "96" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json index 9533625a13ab6..106579c4ac265 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-797f6a50ea34d64188cfa066a122b55a-c5fad9c4847b7748-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-6fe66c65c4fbbc4fb97c2469258aa183-785c918491f80044-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "5005f5e8a08b47218215f19574b370f6", "x-ms-return-client-request-id": "true" }, @@ -40,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "95320e53-cfae-47cc-8f0d-f21f0edcaeab", + "apim-request-id": "f32b2daa-21e9-4d02-af7b-426c0c6708f9", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Thu, 05 Nov 2020 20:52:26 GMT", + "Date": "Thu, 12 Nov 2020 19:32:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json index 937463e2a8396..7f60839a79e78 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f29e4592e1390e418f704526b7ed9fa3-8c6e9d677d598540-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-575c9abc9af8304d97d92bb19fb1e419-6bf63307f0329f45-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3574863b78b3d4b99962ee1a8b7bbd89", "x-ms-return-client-request-id": "true" }, @@ -40,13 +34,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "43bf9565-d18a-4417-8f9d-e771e505ae2a", + "apim-request-id": "198a080d-ec5c-4a78-b871-b8c6c66ef85d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Thu, 05 Nov 2020 20:52:28 GMT", + "Date": "Thu, 12 Nov 2020 19:32:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "7" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json index 3c2cbf0333527..99a6974acba3a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-db77a7d140164644ba32bac3740de44a-44b0e20cb5d1564a-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-306ab820ab6bad4cb077f0541f4af808-f5c9931c8df20a49-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "738db85ac016be284349434968e4adff", "x-ms-return-client-request-id": "true" }, @@ -40,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "313813cc-cad8-47a1-a2f9-6b0f56fa500d", + "apim-request-id": "c3fb61f7-a8e7-4858-9809-d65dd030b5cc", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Thu, 05 Nov 2020 20:52:27 GMT", + "Date": "Thu, 12 Nov 2020 19:32:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json index c1b2ce0e22644..0308871a6b11e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9b859f5fe6375b4f80e21cad06a55816-c2fcc16725b87f4d-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-ece4f5dcf9336d4a922227d704b6921d-fe5c40165939404b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "6246079b8393935bca52b813124b2ad7", "x-ms-return-client-request-id": "true" }, @@ -40,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ea6c26e6-233b-44f5-ad2e-eefe4a2037b7", + "apim-request-id": "6606506d-2938-4a25-8627-adf0d20d1e5c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Thu, 05 Nov 2020 20:52:29 GMT", + "Date": "Thu, 12 Nov 2020 19:32:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json index 1003273947cc4..52f55a1949959 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-aacc265c5315824889c3c85e93d77dfc-937859af89c96f4c-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-f4ba01e35cfba145b2e4e779a5ace4f3-759c01a5c34a7343-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9ed49d935379ea824d7c2153a1e6e6e4", "x-ms-return-client-request-id": "true" }, @@ -45,14 +39,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "00ee01e6-ae2d-44da-82bc-92ab811283ff", + "apim-request-id": "4c0ecb51-6b08-471f-aa61-7ac816cab2de", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Thu, 05 Nov 2020 20:52:27 GMT", + "Date": "Thu, 12 Nov 2020 19:32:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json index 7b9ed3d402476..09751e59b45f1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9d0cb7b12590a94589cee05d0f7ac466-04cec48df9541e4a-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-bb86b97aedb2b748b22e54304648f36e-61a12c863ed3c349-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "da5f41d41140dce5b95983493bb999e3", "x-ms-return-client-request-id": "true" }, @@ -45,14 +39,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d3c89170-1ae6-4337-a6cd-cfa63b5fb1e0", + "apim-request-id": "d9705929-64ab-4ede-bb76-13bf4dfcb10f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Thu, 05 Nov 2020 20:52:29 GMT", + "Date": "Thu, 12 Nov 2020 19:32:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json index 9b21326d47ad7..f2f92a83e4d98 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "156", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-91f6c04591571b41a7c8802f12041e9d-506df9ffb4244948-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-b7c11789bcc6074089e5b422cef0e75a-4f26293b467bd043-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3ce40d8d4db949068b12a56808d1cfa5", "x-ms-return-client-request-id": "true" }, @@ -40,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8ab98dbf-2076-4d32-b910-012317ede59f", + "apim-request-id": "cc92e374-f3bd-4e9f-a9f1-cd8590584e40", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:27 GMT", + "Date": "Thu, 12 Nov 2020 19:32:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json index 0db915001f1b8..168b1a5b0ca67 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "156", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-918794844f60144ca31b98502cb34754-073de0cf2367f347-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-55721884ea86e440a5e6d6b5f78314e2-3b6372702a347a40-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "51807d44b190171f3639086e14582723", "x-ms-return-client-request-id": "true" }, @@ -40,13 +34,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c1b9e680-1e13-4d5b-a45b-cf3ae4895ae0", + "apim-request-id": "20cb6e47-e049-49cf-9ff8-3743570096cc", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:29 GMT", + "Date": "Thu, 12 Nov 2020 19:32:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "7" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json index 0405515153149..fdd0fa9d2c75f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "67", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-209584acbbcc464cbd179e23b283cdf2-28081364df726343-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-40be6c6aa7075b498c80cac48fcce826-85049865b39bfd49-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1a3b3f53b2eb19e83bb91b78bee10b95", "x-ms-return-client-request-id": "true" }, @@ -30,13 +24,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "a2823bcd-48fe-4537-b70a-2a366f1eceb3", + "apim-request-id": "8f2335f9-1e7d-4ec8-98fa-75f9b3233486", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 05 Nov 2020 20:52:27 GMT", + "Date": "Thu, 12 Nov 2020 19:32:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json index 5648816686d65..468ada4bbbd1e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "67", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-53c84eb89bdd7240af7cc47c3e66b0c3-c4f5ad9c992b7640-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-9924eedce9179047a0529818e050a247-de9634f2dd93b44d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b23c80179f571f450cf30413f8966972", "x-ms-return-client-request-id": "true" }, @@ -30,13 +24,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "0c660e39-5a99-496d-86b5-b2c4c9c91b5a", + "apim-request-id": "01cc12ae-214d-43e1-a27b-b21d5236990d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 05 Nov 2020 20:52:29 GMT", + "Date": "Thu, 12 Nov 2020 19:32:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json index bd9713eecf3a6..8c93be9fa0767 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "57", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-de123f3d59e0d241a658552673ebfdba-7f5dbcfd7d9f5a44-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-bd76268348a499489990d5fd87d19881-196d648890b04840-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ed66d74da14036cde144d6235dacd6d3", "x-ms-return-client-request-id": "true" }, @@ -30,12 +24,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "83eaf45e-7f5a-499c-8d15-48d9a20d5372", + "apim-request-id": "c725b947-c9b9-4326-8a43-2e2c51f63284", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 05 Nov 2020 20:52:27 GMT", + "Date": "Thu, 12 Nov 2020 19:32:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "2" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json index 826a5ee04a148..794a5419177eb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "57", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6ec886e52cf20e47888c56f23671bb12-ead25ae82d34bf44-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-ae3634298df8c342932fbbcbb083bb68-50ad3175db89d44b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "46af5eece4595e8658920ddb272bdb42", "x-ms-return-client-request-id": "true" }, @@ -30,12 +24,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1641ba27-b7ca-4732-835a-011dc2c4159a", + "apim-request-id": "df970ac3-aab1-49eb-bdc5-dd84219b3be2", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 05 Nov 2020 20:52:29 GMT", + "Date": "Thu, 12 Nov 2020 19:32:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "2" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json index f7569d643a125..448b58b3c174d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a0324fec39477947b8ad49150a1af7b8-e4513f2b4003e347-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-761516101d340b4386cc31d421ad3fbe-865729b14caf0349-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "acad3cc12aa10a7667d1533045b0a321", "x-ms-return-client-request-id": "true" }, @@ -45,13 +39,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1d7c8f1f-f2a3-409f-ae07-a3a6bc48491c", + "apim-request-id": "2a45e6fd-90b1-4a40-b8ef-1a5a714c57ce", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Thu, 05 Nov 2020 20:52:27 GMT", + "Date": "Thu, 12 Nov 2020 19:32:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "7" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json index 164671078d76b..fd15076394f09 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-52cc847348faa7458e311683b624346b-f5870dc1d3218b4d-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-b1c779ad5918804da3e4ad66a082e01a-ceeb4dc9ca0c5e47-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "50a7683e77aad92fe53b41b770dfa6fb", "x-ms-return-client-request-id": "true" }, @@ -45,13 +39,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "938ef710-913b-45f4-a682-56fdf98cede8", + "apim-request-id": "6b11aadf-64c7-4015-934b-34e364cbc2c5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Thu, 05 Nov 2020 20:52:29 GMT", + "Date": "Thu, 12 Nov 2020 19:32:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "7" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json index 711023e5a358c..e6421a391cf66 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "82", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-33b875938f51a64583f2791f15dc7e33-4e71ad0d097dc74e-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-d9a57da1acfdaa4c807c2224af253d17-d43f80c2b6e3b34b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7aaab163ed1d982c319bbad40483549a", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e042aea3-bd79-4b5b-9630-0195083a9673", + "apim-request-id": "57cff552-e564-4043-9b61-eb66012414d8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:28 GMT", + "Date": "Thu, 12 Nov 2020 19:32:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json index 555e214603207..9863775d59d80 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "82", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8e14483d677e874bbb57d84f90334d76-9ddca748444b524c-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-91f09cf12b203b4a83f0c2500fc9d2cb-c254ffd3f3e76045-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d4cc6357ff58c85240bd64c6445c1d0f", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "01acc79b-be73-48ec-abcb-a4a513ccd668", + "apim-request-id": "71c06027-20b6-4ede-98cf-40367fd33458", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:31 GMT", + "Date": "Thu, 12 Nov 2020 19:32:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json index 4b54ae62d61cf..d1bc79ef9b334 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "95", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a420baf4d4153c4f884b55464d07a9cc-dea89817c625154b-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-56a60afa34d7444d9b0dbf48d9a15695-645d2bdad2b64e42-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "98a2a27e9082d475805aa932800b5cf6", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d3763c31-1492-4cfa-b57d-744afe8d0857", + "apim-request-id": "ec70d6ec-b25d-4fc4-abb8-85a1c597298b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:28 GMT", + "Date": "Thu, 12 Nov 2020 19:32:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json index 5e6c81b8aa02b..c490aa092f2b7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "95", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-26da8c71d27970449bfab9e8c27fa6cf-b1ebb22ea44b374b-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-e5d8079a6778ca48a65cb4c585d5a3c6-e3678fc58dd7ce4d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f0760fc68cadb07ff1c89a4d1612c056", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c12facf0-f187-48df-9b7e-4c1ec748cf81", + "apim-request-id": "1cbe5041-9e23-4723-ab86-2862cd25d775", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:31 GMT", + "Date": "Thu, 12 Nov 2020 19:32:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json index 204bc541c5a97..7a161936bd8b4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "101", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-09cbf756af46cc49bfbd854598ba58ad-5d48e5cf5ba17d49-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-246f6a050b44ad4b8e89194d6a9aa532-e3d6bfcb4cdb2048-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d6d037d3997433f0d1d408295081d2b0", "x-ms-return-client-request-id": "true" }, @@ -30,12 +24,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a03f0631-39c1-4187-bbe2-d24534fcdd97", + "apim-request-id": "1af21a56-5bf6-4a38-b57f-cd1b125a2df2", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 05 Nov 2020 20:52:28 GMT", + "Date": "Thu, 12 Nov 2020 19:32:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "2" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json index e01ab1c6e45ec..aba6bfd1281d6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "101", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c07217c4ca389f40bae97604ec39d49b-50984478aa8b5a4e-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-6c99d2937173cf40b19f2583cc2741fb-bf8be73347c26545-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9d92baec240d7c0e78b80d24d8752359", "x-ms-return-client-request-id": "true" }, @@ -30,12 +24,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ad681957-32c5-437f-b4c1-9858401dcf29", + "apim-request-id": "0d1900dc-0b60-4331-a3ab-f7067f78c11e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 05 Nov 2020 20:52:31 GMT", + "Date": "Thu, 12 Nov 2020 19:32:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "2" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json index 9b443eb226997..7635c9bcb0d04 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-aa52726efc7e6a49bf39748a35f05f36-883267764a794844-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-9914962ac4d4df4c9d2f8dc9944824ee-7ddbbc9502b1a14e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9cded6f43daa9a1f5be8cb3934e1c44c", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8b1d1766-f1d8-481a-9b45-390c4ba28b4f", + "apim-request-id": "106794bf-da20-4052-9d64-b092cc2a2b64", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:28 GMT", + "Date": "Thu, 12 Nov 2020 19:32:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json index bbbf857637ecb..484b5adad3f30 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2ac670f010632147925aa64de8ecbd1d-66737df742491e44-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-bea4d23d1c330d46ba9b664f796fc837-00e49c1cf3851241-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "6124b40a04621bbacc815e287718638c", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3b7523a8-da87-43c5-95ab-ee9623437c1c", + "apim-request-id": "3de28136-c003-4899-aedc-ec28248c3005", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:31 GMT", + "Date": "Thu, 12 Nov 2020 19:32:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json index 54fa4ebc60c98..dba33da02c581 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-825a3500e7639d44913d1bba1b51830b-4d0fe92fe83b9d40-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-3c6455ee8cecdb4ba137bda5730d25c0-d34477a24e5bd04e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "dda057b9e217d2ba6e5090c17d8fd607", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "030699cd-4f05-4146-9bb2-ee81af89e486", + "apim-request-id": "c87ccaad-2312-44cb-9a77-0a092f953891", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:28 GMT", + "Date": "Thu, 12 Nov 2020 19:32:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json index 0fcba5f760268..b8467a70bdf5c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-abc79db689700a4099e0ce025beca49a-0384610c53d42c4f-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-c89f88fd2f5f88419870092f56622e09-1bbd7e4e87a6f34f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "bfed051a0d9b7fe81f8b58b8ccb397c0", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "99b5ee1c-b70f-4374-b628-40fd8e19f11c", + "apim-request-id": "5a0a6467-b2dc-46b2-b9bb-aef91c634dd8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:31 GMT", + "Date": "Thu, 12 Nov 2020 19:32:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json index 5ff17cb28b8ba..823b3d4936e14 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e146abdc969e2b4ba8069b7f4b5f2fc4-805fb6c4fd7e334f-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-8ac91ab8c5ff7d4da4156b4befe0048e-c5ff5c065723ef4a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "632e1038e2d2bd9cdcf3dd442e79c63c", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "18d4480e-a20e-430c-977a-d64128817664", + "apim-request-id": "7a5c3501-d3c1-42be-966b-a436e0b1b639", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:31 GMT", + "Date": "Thu, 12 Nov 2020 19:32:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json index 11e6bbcc19ea1..0d50aa100571d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-10c23a5da8358f4d9582daf4d9634bfc-69328f86be712f44-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-eeb9cac166d8ea48aed0f7f3dd152567-e5d6622b76778b45-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "bb6bf08839909e0e578d5bc1b428bcd2", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2a4a8f12-2ca6-460f-b6e6-9ae8f8f8ac39", + "apim-request-id": "8d043735-f6bb-4f77-94b4-741ea5b0fa0c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:33 GMT", + "Date": "Thu, 12 Nov 2020 19:32:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json index f73ec3d0a8e21..4e7e12e1ed0f9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c98f881a33ab644984c61ca3ea3986c9-e108948694d9c742-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-b7ecd160c9164a4fbe3540218718d26a-f8dc100d62aa3440-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4dfa2958a1568d79bc14e1b570d63d15", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f39dd8db-ae2a-4e09-8da2-0c00771fa742", + "apim-request-id": "5f26da5a-8386-4516-a478-3bb9a399df17", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:32 GMT", + "Date": "Thu, 12 Nov 2020 19:32:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json index 3ee9595f05fdb..5e2bdbf1cc329 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-11022f1553238643bcf49cb7155e3059-b2e0cefa5b7e5243-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-e1fc3777cb8af0489c87cddd6808007e-61bd13f28d7d1540-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f8f1e114d697e804255315d1c7e9b6ab", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c53043b9-01e6-4fd8-b2ad-5c64c4b0dde5", + "apim-request-id": "be00319a-2b4e-4e45-a7e0-f8e3302d36e8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:33 GMT", + "Date": "Thu, 12 Nov 2020 19:32:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json index 877e15ffb6fca..4f9b2cdf378c5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-60d147e79bebb24294cc0992c32286de-e652ffda8bd16242-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-d43fdaf77fe83e4cafcca13599bbf5f9-ae83940012efb841-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f8376358e18a19e0b7e6f893926ac745", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "541dcafc-07cf-47ec-ab8f-ae345110c140", + "apim-request-id": "17be091c-869e-44c0-bb79-656adbece1e6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:32 GMT", + "Date": "Thu, 12 Nov 2020 19:32:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "19" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json index 6ac2d15f33575..66af5533ee5f2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bde9e390b4711e48bfe8e7e29afd33c8-bc3e91fe8b444941-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-e263c41c28df4d4294457cd37392fa54-a170f3a740a18d47-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "272edb015782fb6dbcae1cc2967deed3", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1394947e-e684-47e7-b29e-43b23693e50d", + "apim-request-id": "651d2357-496a-4e1a-97cf-30213e450ceb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:33 GMT", + "Date": "Thu, 12 Nov 2020 19:32:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json index 2a446f4575d90..a1d412bb68e28 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-253e9df5d6963e45bb8cc5e07e374847-cf633b1972097a46-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-f27faffee326cd46a39ec6b75eea1670-fdba46fa446db742-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "dd92af13693d6c6d10f5b45092a05fbe", "x-ms-return-client-request-id": "true" }, @@ -40,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "755a1b8d-9a01-43b0-999a-47e264199d37", + "apim-request-id": "dc1be1b9-239e-4eb7-86f1-efe1e0386b47", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:32 GMT", + "Date": "Thu, 12 Nov 2020 19:32:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json index e10720c806561..dcce9c855eae0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-af51b7c98c02a94999a04f173d929a8e-4e47028dccf90a4c-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-f3d659aaa8351e4ab8ffbe27d7847e1d-9a56f89746c1644f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "161fb623980eba163f1211744629e747", "x-ms-return-client-request-id": "true" }, @@ -40,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "71a0ca2d-3494-40ef-87b9-8edd92931596", + "apim-request-id": "0cd62e29-6efc-4b09-8de1-0653678eb8f4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:34 GMT", + "Date": "Thu, 12 Nov 2020 19:32:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json index 7618a64f99cc7..a54a4cc670a21 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-37f022d40401c44fab9364d363f19462-ebcb9709748dbc4a-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-4b75a1c07a0b9b4d9e1169d9444a84eb-d3ce442c30ea944b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "02233abc1a851f8d7b73c3a9864f0660", "x-ms-return-client-request-id": "true" }, @@ -30,13 +24,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "43249c49-255e-4bec-9070-fbd633ee59fe", + "apim-request-id": "59a41740-5bd9-499b-bfe4-ae57af9dbed8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 05 Nov 2020 20:52:32 GMT", + "Date": "Thu, 12 Nov 2020 19:32:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json index f2fb564116a29..34c8f75b4d4cf 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e4b780c116f0bf4eb2694d080ecf3583-10613b68dd86b641-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-70a14da5f198814893575e910a7189d9-83c5448b2204a848-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d3ffef96a22198e4e5a15a93f55c6a25", "x-ms-return-client-request-id": "true" }, @@ -30,12 +24,12 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "27cde3b5-2017-46eb-a3cf-040f20a2060c", + "apim-request-id": "23a99663-bb8b-4944-8e31-0d0b510bb1b6", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 05 Nov 2020 20:52:34 GMT", + "Date": "Thu, 12 Nov 2020 19:32:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "4" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json index d76f3a9f527e0..6729681ed6708 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e8a0dcfc31e60844bbcc4cbf3771d2aa-dea8989867738b49-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-b7d95a79abcddf41a1315014f73d932e-942e4533cbfee948-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "5bf1e93674612a2cd70f69188e2d39f7", "x-ms-return-client-request-id": "true" }, @@ -30,13 +24,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "941edf35-c3f4-4133-af5b-c1d280d54283", + "apim-request-id": "7b44a50c-116c-4dde-a04e-b72c7b0163c4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 05 Nov 2020 20:52:32 GMT", + "Date": "Thu, 12 Nov 2020 19:32:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "2" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json index 8303a7350b100..47d3e2da662b0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d8c6bf3974e8aa4e97ed1818a199c62d-5e8999a851ac6b41-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-3aa547684991244e90d1670f24adf853-9090ac3ecd38304c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "5dbd36794559c388c50dd26e725f8f67", "x-ms-return-client-request-id": "true" }, @@ -30,12 +24,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2bbb6af0-3ae6-4d47-bf8a-9cc336b32f7b", + "apim-request-id": "b697eba1-5e1a-4e73-bc17-5b5613cea7db", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 05 Nov 2020 20:52:34 GMT", + "Date": "Thu, 12 Nov 2020 19:32:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "2" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json index f04840f93a85a..8d60e03209c67 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-95abb3c0412a314296b22cbc202ca5d3-4c69aff5afbeff43-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-78e1718966daf64aa0141d4be17a5a1a-d7f1f1cd45cf6147-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "481340828d769a0d6f19ecfe6b0d9666", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d8e4e4b0-db93-4cad-9b51-d397a613f347", + "apim-request-id": "6c687f91-cc64-426a-b0a8-955e162a1a4d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:32 GMT", + "Date": "Thu, 12 Nov 2020 19:32:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json index 27cf77f54381d..fd14448962cc9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6f4f8b33f918a34590bd0d6b4f042bf3-a2c453ea33bc2e42-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-c64f1f605e178c449f9794cb2d46fb47-0a2c1061a83c3b48-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "fcabdefd3d51a89852601fc0d61f3468", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3efac656-1125-4d37-a491-88d87959f826", + "apim-request-id": "ffaab649-406f-4477-9926-481599852515", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:34 GMT", + "Date": "Thu, 12 Nov 2020 19:32:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "25" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json index 1477c0a81fbb5..7eca8e6c3fb3a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "92", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a41015ebd158b4458517434ceb999003-1a0b930ce168bc4a-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-ee80366970d03c4d8805ca53e811c4c0-e429929ac4339d46-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b86575e1b38857965c8495535ac2b899", "x-ms-return-client-request-id": "true" }, @@ -30,13 +24,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2e2e4e3f-5db5-4dd4-8dcf-a5ad7b435cf4", + "apim-request-id": "acf8e3d5-3548-4f82-a223-596bd30c119b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:33 GMT", + "Date": "Thu, 12 Nov 2020 19:32:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "11" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json index f55554fb7222b..363c83c4172d2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "92", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4e517e15ec9a49408c8454f1c1465fc5-4a936a42cd330c4e-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-9dc35f655296bb48b79431997bccec27-7e15a93703af4a44-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f80f56a1c735d323972d5c2c674aed06", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "73ffd334-87ca-49e4-8562-61035b614e97", + "apim-request-id": "a2b99aed-9ce8-4da9-a288-706c7f87a0b5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:34 GMT", + "Date": "Thu, 12 Nov 2020 19:32:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json index b31bcd30d5a46..7fac1a741f895 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "88", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a67aaa1482836b4a9ad3a60ad37ca901-cde43ccd50b0b94c-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-8b4f7bd1f355d947bfcb423e45ad4f9d-bcbbe89ce7db1a4c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "fee09dae9a1670151c1a3a802afd3e61", "x-ms-return-client-request-id": "true" }, @@ -30,13 +24,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "55ed9eda-6345-49c5-bbf5-98a4f2f77e32", + "apim-request-id": "e3453f40-4ad3-49a2-ba5b-662131a7704e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:33 GMT", + "Date": "Thu, 12 Nov 2020 19:32:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "10" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json index a4c570207d981..9126aed0733f3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "88", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a08f9c31394a8a4086b4cd6328868974-2e87db93e308e74b-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-5548252a1c5b534ea4a6fcc8a9a2787e-d540898f16a3fd45-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3bfc775f82d23a381e7a3b00a0305c6c", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e45db815-17dc-4acc-ba4e-dcdb63e69816", + "apim-request-id": "b22ed2c5-6056-4ceb-9020-051b59aa421e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:34 GMT", + "Date": "Thu, 12 Nov 2020 19:32:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json index 77603fddf6bc7..2c6766b552c1d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "180", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9c7cecbbd2379d408882f5cdb10c0539-64cc681bce743844-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-ba44441f616cd94189465fa95e8a4021-6328c463b08d3a43-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7a99e78b28bbdc34334c788be87edcb8", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b96f6b70-3f74-435a-b1fb-3c9c98f85573", + "apim-request-id": "56cd7d43-990e-4290-b98d-f6453e17c72b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:33 GMT", + "Date": "Thu, 12 Nov 2020 19:32:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json index dff7036481530..db63ce2f0e516 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "180", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c700da8b3cfd174aa196daef33958724-947bd7db3e55f44e-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-f5b2fc7cf852a84791209a24f51d784c-2aeb6d4652254e45-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d687a16b6a26ea445556f8b3c125785e", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0c6a66e1-7fea-4008-a6bd-416990f12cff", + "apim-request-id": "1a99252d-631a-490d-9505-ec905da6950b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:35 GMT", + "Date": "Thu, 12 Nov 2020 19:32:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "12" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json index e6366b10ce456..550f1084133dd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-940544e564b7bf4190a8b2e87afa34c1-77e265e74ee83547-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-9d5449eb38d7ee498bd928bdbc0d540f-382468d1c6d39f49-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "73b99494ac5a2b6a48730fa6d4bda24b", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "63fda960-99f0-47f8-a935-d37a1b4fa5b3", + "apim-request-id": "0b7912e7-5bf6-41a1-85e4-31dfab101696", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:35 GMT", + "Date": "Thu, 12 Nov 2020 19:32:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "93" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "109" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json index 7f24666e45023..95cb94c35ec09 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-314e39fb038d5d45a1a09a4e0312a365-988a3139b9f0e94d-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-419abef2f3ef2e4cba6e8ad8c0406bef-6f5635c6390bfa46-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d2ffe8a9cd41c6a7f7eddf3ba0def75e", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1ab7c0cd-eac7-4e5f-9af5-8c1b7509d13c", + "apim-request-id": "91376ad2-10cb-4f49-82e4-3fdca421616f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:37 GMT", + "Date": "Thu, 12 Nov 2020 19:32:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "94" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "108" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json index ba66193a4fea7..423e96868bc37 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3f22ac54b619db449de86aefacd09157-600d62ad2b35ac42-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-4e201555d2c1d649a70472df919eb14c-cc27ff0c8ca94f45-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "67616e684f8b043d1e0c71e939770f42", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "05be6208-88e1-47ef-a98c-bd7859d9f61a", + "apim-request-id": "60d45528-b3bf-4ab5-93a5-e5bff2565b6e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:35 GMT", + "Date": "Thu, 12 Nov 2020 19:32:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "107" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "77" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json index c41ff7bba3082..6c4be1b982cb8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f3bb0da34ab74b4a9686f3748570af7b-2748278f74e3144c-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-716f228dee696149b71cbdf40fb4965b-f98241a5e4174547-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3d6191fdfe339ad3e9a9a23dfab389e2", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "40e23821-811f-4989-8bbe-1091042955a3", + "apim-request-id": "7a009d60-e687-4706-a306-3426e022b8ae", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:38 GMT", + "Date": "Thu, 12 Nov 2020 19:32:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "88" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "81" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json index 38eff3b9e8171..788f757da9d38 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e6ac6e83f728f84ea503d583e0395e71-0b48169f38f36041-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-052eb2d8f52d404aa8fb089d99c992ce-0142d034cc12714c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c2e6195c0f4c89c31e4ed8101a9fceeb", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "70c96808-11b7-4960-81de-53da99359ac0", + "apim-request-id": "0ad1ebf6-8e3f-481f-a890-69a91174f69c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:35 GMT", + "Date": "Thu, 12 Nov 2020 19:32:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "90" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "89" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json index dc284d6bfd549..4d1118b035b8e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-32d64a233e330f4ba3a2728644d1baef-4746410d6cafa24d-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-65306d47bd294648aeb96332ccffa763-b1dbc5248a15bb48-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "74826ca03adf5e0230955bc11a73f253", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2e956773-2960-473d-9606-c0c57ea49185", + "apim-request-id": "7b2409cc-76f3-4757-9e54-3389a4d02943", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:38 GMT", + "Date": "Thu, 12 Nov 2020 19:32:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "74" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "131" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json index dc57debe6b6d6..36dc212d44998 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-629efe1753096a46a83eef558830232b-34bde903ab1da644-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-f2b27c480d837e4d87bd5564119e2069-a0e3ba179e39dc4f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e1ab51bf64c496574b45aba2614e8e70", "x-ms-return-client-request-id": "true" }, @@ -40,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9d96ce5c-baba-40f2-b419-6e8afbfc604f", + "apim-request-id": "52b60896-1bc2-4203-a481-fa36047cf7bc", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:36 GMT", + "Date": "Thu, 12 Nov 2020 19:32:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "84" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "72" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json index 77e7139ae609c..7dc36a0c6ba72 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-da3d063f2777314788a63139d29be34c-503633136385974b-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-6570986ba72c914d94e3d999bc95c7c8-5c9798e44937b44d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d8b08f95484a0406f97f2f7420372c35", "x-ms-return-client-request-id": "true" }, @@ -40,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "24414548-dfb2-4303-9c2d-f69a1ca7311d", + "apim-request-id": "bf529d5c-474c-4ba0-801f-5f3c16545cbb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:38 GMT", + "Date": "Thu, 12 Nov 2020 19:32:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "103" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "72" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json index e92ed7f31a325..6238553f75ab3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "297", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-65b6ed525580174b929bce1799458062-75a83a2a8ebbc744-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-8cf95b4e75b34640ba8222dbd10c007f-7e17847550545d42-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a8ae17c802a6c3ea068b7f13c73b934a", "x-ms-return-client-request-id": "true" }, @@ -55,12 +49,12 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "dc581ca5-0c56-4d00-ad86-7db8096b59c0", + "apim-request-id": "4b556740-854a-4cf9-839b-47323b20651e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 05 Nov 2020 20:52:36 GMT", + "Date": "Thu, 12 Nov 2020 19:32:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "4" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json index 415f28a440770..0af04b6e1fe42 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "297", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-13e4218b5afb4c42b9cac8da389d5892-bb842ac5b89bc841-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-c8dff0aa2cb72749a35141f854694d0b-ce372ff3ab74b04d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "28b544e5b9a5cf3535ddef0fb0fd1d43", "x-ms-return-client-request-id": "true" }, @@ -55,13 +49,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "915cb5f9-bd14-458a-90d9-25d533f6964c", + "apim-request-id": "3637f752-d1ba-4630-8251-8690b53cbe20", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 05 Nov 2020 20:52:38 GMT", + "Date": "Thu, 12 Nov 2020 19:32:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json index 32de1f4c466b6..7c0dde4d04407 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-52c9123c4fb8784eb4dad58d5a82a55a-9add413ca1bdcf48-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-764c5d2e933a4c45af5aee0b9ed8d48a-2b545cc15030cf48-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "0394cc79836b8e2a0617730333d293ff", "x-ms-return-client-request-id": "true" }, @@ -30,13 +24,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "58b1876d-e7c2-46e7-b9b4-767251e121a9", + "apim-request-id": "aec6c22d-9249-4569-bc2c-1fe205f1bf0a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 05 Nov 2020 20:52:36 GMT", + "Date": "Thu, 12 Nov 2020 19:32:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json index 928c71179acba..fc82af013b36d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1e276d5edff42a47b2ad8fc0f3832497-82de019153256b4c-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-8b6b0aa6a60a9e44992f9aff0fa0e962-ed3af124c83c9745-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d2a606a042fa292271e9e0fd82e50d07", "x-ms-return-client-request-id": "true" }, @@ -30,12 +24,12 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "5c7a4345-b5c1-4e35-b1aa-619cfc4fc034", + "apim-request-id": "3deecf79-64e1-490f-abdf-a319373b244a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 05 Nov 2020 20:52:38 GMT", + "Date": "Thu, 12 Nov 2020 19:32:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "5" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json index 943f32f923275..51f39e268b9a9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4e0bd4e363ff4a4c96bf0a91508c800a-348e0845f9b0a447-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-38f76d55882f91439f6646a273531ac5-c6f3b3cdfeaada40-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "143a14bc880cd41cfe9c98287e990fb6", "x-ms-return-client-request-id": "true" }, @@ -30,12 +24,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7776d6b6-5972-4ded-8e87-dbd7c21620ef", + "apim-request-id": "5c1895de-5c2d-469c-b43c-a5f4963d129c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 05 Nov 2020 20:52:36 GMT", + "Date": "Thu, 12 Nov 2020 19:32:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "2" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json index f03701b11dc72..0150648cd8c2e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-422e14675c5292439c7cdc20eb20b887-0ad1a6c23b80c846-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-1bba4404445dc440bd37998735ff594a-cc8ff192d54daa48-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7afea088ca0a22de1ccfe4f56367e3ca", "x-ms-return-client-request-id": "true" }, @@ -30,12 +24,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f4b40806-9491-43f3-9e89-316113ab19a3", + "apim-request-id": "ca769516-5aa6-4edb-8fab-a1627214098e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 05 Nov 2020 20:52:39 GMT", + "Date": "Thu, 12 Nov 2020 19:32:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "3" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json index 24d331daae2d2..524c9d1e3ae49 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e152571ab6e8d24caf7d4fea6ccae0f3-a0c3f9884e68364e-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-0e6483c6dea6fc4b8f49c6cc5496f6df-4068ba16edc1a24e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3c7b09ea57a0a9f84c938c05ff06e377", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c63e2478-3841-46b9-862b-167d46e89f08", + "apim-request-id": "e23e26af-6eac-41d3-86f0-8635af0f65f0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:36 GMT", + "Date": "Thu, 12 Nov 2020 19:32:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "76" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "93" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json index 0657620d5945a..d0d6a8731ee05 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5ac278a8027ac5428c88176dedc8262c-15f50559031dd244-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-f1e0cde231fdb149a8db650db34538a8-1e203aaa79752541-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c386dc48f454868243af3522ce69cb86", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0fed3255-8366-4354-85ca-27531d56d51c", + "apim-request-id": "c5313b0f-f35f-499b-aaa3-b169f38145e3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:52:39 GMT", + "Date": "Thu, 12 Nov 2020 19:32:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "82" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "78" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json index 33eb3aa03790e..c68a53382ea85 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f684e0ea0a076c4fb5931d20dd1675a8-f5dea828777fbb4a-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-f2df04b854b599448446a0f9f662d448-4600c4dd41801144-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "483a789eb74f49281b818c10882907cc", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3211833d-1e07-46de-a602-dfe3e8db42a3", + "apim-request-id": "806febfe-f4d8-4826-b13b-556be57adf49", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:37 GMT", + "Date": "Thu, 12 Nov 2020 19:32:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "87" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "81" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json index f797a9db34430..2f11181d60895 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-62b2d812d2736541b3d8edfee4305540-cf2640921a4d4b48-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-6285afe7ba12524ba3d3283b94391bc8-d7f0b7841ad2524a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "700659f3fdefe683be90e2b1951eb421", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "84ab4014-d4a0-443a-a228-df7df9d4738c", + "apim-request-id": "61bef70a-63e4-4cb3-b5e0-58760fd573f0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:39 GMT", + "Date": "Thu, 12 Nov 2020 19:32:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "76" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "69" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json index 712ab54072373..f7b8b26611168 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-46147af0f7aced429e4ab0b35626850a-53fd7c610c4b9d43-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-d87e5c58bdb5814baec386120f7fe851-5a23cb0c45a86546-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "fb4827053b6a1252c3b25be970bef0ff", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "08883442-8843-4997-b0d1-abb0a389cde7", + "apim-request-id": "42936f08-f2b2-4fdc-bcd4-e330e916b782", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:37 GMT", + "Date": "Thu, 12 Nov 2020 19:32:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "62" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "65" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json index 30802a5cec8d0..55d89d3e3b3b2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4878be2faefe564694b1bb15a9396616-abce757581fdbb49-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-2211e69c9790ac46980b3920ae3000d1-2ece40b8b20c3244-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b55082b33b1fe734efdcbb82c7c8a31b", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5aaee744-2221-425f-89b8-a5e14af3e435", + "apim-request-id": "9fb4e044-2d30-42a7-b847-5f6d8961f137", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:39 GMT", + "Date": "Thu, 12 Nov 2020 19:32:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "59" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "71" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json index fc44ae5ebf5a6..2dceaefc007ce 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-aa5c76b7f3667f4fafe15e268ddcb6cf-f61e66b47c772e4b-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-4509d2e9d93ecd45a08e139e370720b2-748ca6b4c6aa254d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c580665e455e125e80a821d61e9c3c18", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "595a650d-2256-413e-96f5-ced00e5faf59", + "apim-request-id": "22c36bf4-44fa-4fd4-b660-ffde5dd217b4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:37 GMT", + "Date": "Thu, 12 Nov 2020 19:32:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "74" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "75" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json index ae4ed0c3d1c13..8e52124acc70d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-27c4800e5d95294ebf11a6a64e549201-70a655988eb9f443-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-4d8cbe8d4910a74a87d1bf01d01e612c-7eb809f3384aec40-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3b4b745166e69035ddd947884a09aa87", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f351200c-c760-43bf-966e-a46feda056f5", + "apim-request-id": "3efd0cae-5072-4935-afcd-8ebabc6981be", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:52:39 GMT", + "Date": "Thu, 12 Nov 2020 19:32:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "77" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "88" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json index bd0eb0c422ab0..9d3d0d2702bdc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d2e1f5943cf27942a56cb344102aba9f-58947339c9778a4b-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-f4bd5bc33adcf340bcc5818a0b9de8db-67548c00083e0847-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1d7c0f7df9a5be46a7bf1d0b574c6095", "x-ms-return-client-request-id": "true" }, @@ -35,84 +29,252 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "95d5348f-c8e0-4f3a-a273-85566aa4538f", - "Date": "Mon, 09 Nov 2020 21:49:25 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a7fd89e5-4b8f-401c-8c07-2cd19d40c767", + "apim-request-id": "3fc9b722-3dfd-44cb-a680-f9d8d9d9b71b", + "Date": "Thu, 12 Nov 2020 19:32:33 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9c6bd127-1961-4ca8-810e-e9cd648ec89a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "82" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "81" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a7fd89e5-4b8f-401c-8c07-2cd19d40c767?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9c6bd127-1961-4ca8-810e-e9cd648ec89a?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9441bfd5d8fa13e75ab79017f0dbec22", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4152791d-adf5-4ea8-bb3f-7a9250a840fb", + "apim-request-id": "92259205-a639-45a4-9f41-084e08b9dc53", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:25 GMT", + "Date": "Thu, 12 Nov 2020 19:32:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "a7fd89e5-4b8f-401c-8c07-2cd19d40c767", - "lastUpdateDateTime": "2020-11-09T21:49:25Z", - "createdDateTime": "2020-11-09T21:49:25Z", - "expirationDateTime": "2020-11-10T21:49:25Z", + "jobId": "9c6bd127-1961-4ca8-810e-e9cd648ec89a", + "lastUpdateDateTime": "2020-11-12T19:32:33Z", + "createdDateTime": "2020-11-12T19:32:33Z", + "expirationDateTime": "2020-11-13T19:32:33Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a7fd89e5-4b8f-401c-8c07-2cd19d40c767?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9c6bd127-1961-4ca8-810e-e9cd648ec89a?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1f1476b4f8decd8416de12a15e37d599", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "797e14a9-8b75-405a-8b8c-0664c04e39e2", + "apim-request-id": "0a564b1e-e655-4c79-95c5-608f8523cbf0", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:27 GMT", + "Date": "Thu, 12 Nov 2020 19:32:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "89" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "a7fd89e5-4b8f-401c-8c07-2cd19d40c767", - "lastUpdateDateTime": "2020-11-09T21:49:26Z", - "createdDateTime": "2020-11-09T21:49:25Z", - "expirationDateTime": "2020-11-10T21:49:25Z", + "jobId": "9c6bd127-1961-4ca8-810e-e9cd648ec89a", + "lastUpdateDateTime": "2020-11-12T19:32:33Z", + "createdDateTime": "2020-11-12T19:32:33Z", + "expirationDateTime": "2020-11-13T19:32:33Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9c6bd127-1961-4ca8-810e-e9cd648ec89a?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9fb8c34e36bba5c72869c2ed682ecdcc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1d946e8e-3011-4bd6-afa8-14a28bbafc59", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:32:36 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5" + }, + "ResponseBody": { + "jobId": "9c6bd127-1961-4ca8-810e-e9cd648ec89a", + "lastUpdateDateTime": "2020-11-12T19:32:33Z", + "createdDateTime": "2020-11-12T19:32:33Z", + "expirationDateTime": "2020-11-13T19:32:33Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9c6bd127-1961-4ca8-810e-e9cd648ec89a?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "e057fbd34137dcb63a747e1bc545b423", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "81cac95a-460e-4f7c-8eb3-76abd1c5bc4c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:32:37 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": "9c6bd127-1961-4ca8-810e-e9cd648ec89a", + "lastUpdateDateTime": "2020-11-12T19:32:33Z", + "createdDateTime": "2020-11-12T19:32:33Z", + "expirationDateTime": "2020-11-13T19:32:33Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9c6bd127-1961-4ca8-810e-e9cd648ec89a?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "2dc9f6e14c227d66ae6ff775359664e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b91b0122-68d0-43f8-a175-77d7c9077841", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:32:38 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": "9c6bd127-1961-4ca8-810e-e9cd648ec89a", + "lastUpdateDateTime": "2020-11-12T19:32:33Z", + "createdDateTime": "2020-11-12T19:32:33Z", + "expirationDateTime": "2020-11-13T19:32:33Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9c6bd127-1961-4ca8-810e-e9cd648ec89a?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "63ce4611f5e00d620cdb6447b8abdfe2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1d6173ce-eb5a-4c43-b7d9-4a52d8ec6bea", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:32:39 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": "9c6bd127-1961-4ca8-810e-e9cd648ec89a", + "lastUpdateDateTime": "2020-11-12T19:32:33Z", + "createdDateTime": "2020-11-12T19:32:33Z", + "expirationDateTime": "2020-11-13T19:32:33Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9c6bd127-1961-4ca8-810e-e9cd648ec89a?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "710c9fb5a06586a995da31c84941a6a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5a02506f-938d-4003-a3bf-3d6456537d20", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:32:40 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": "9c6bd127-1961-4ca8-810e-e9cd648ec89a", + "lastUpdateDateTime": "2020-11-12T19:32:33Z", + "createdDateTime": "2020-11-12T19:32:33Z", + "expirationDateTime": "2020-11-13T19:32:33Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9c6bd127-1961-4ca8-810e-e9cd648ec89a?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "7f0a960f5177eb4394bc2147e71fc503", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ba0b4398-1bbf-48ba-8a02-56edd6ce166b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:32:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "48" + }, + "ResponseBody": { + "jobId": "9c6bd127-1961-4ca8-810e-e9cd648ec89a", + "lastUpdateDateTime": "2020-11-12T19:32:41Z", + "createdDateTime": "2020-11-12T19:32:33Z", + "expirationDateTime": "2020-11-13T19:32:33Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json index 46d4bc582922d..25ed38069d0b8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8109e3704ccdc34e9976ef8494380edb-6f178caca946504b-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-06fc0eab6ca6b649858279c782ec6316-cacf3c31b6cf2647-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "99aaf08b1c844fb2d7a9025199ec97e4", "x-ms-return-client-request-id": "true" }, @@ -35,84 +29,162 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "3335dc41-126f-44ea-8429-193544115ccb", - "Date": "Mon, 09 Nov 2020 21:49:52 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9d509ac6-baf9-4d7d-be0f-352152eb9006", + "apim-request-id": "618da9a2-65a0-4e80-a311-b11f367449ca", + "Date": "Thu, 12 Nov 2020 19:33:26 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/61222742-3128-43b7-be17-6dfe0ad49da7", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "92" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "100" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9d509ac6-baf9-4d7d-be0f-352152eb9006?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/61222742-3128-43b7-be17-6dfe0ad49da7?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a6eb27012d3e0231e64179d6488bf525", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a7b7a191-0e72-4fa3-ad42-9b151aed16f0", + "apim-request-id": "7600d010-b0e3-4a9d-8305-46e6eeb23271", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:52 GMT", + "Date": "Thu, 12 Nov 2020 19:33:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "9d509ac6-baf9-4d7d-be0f-352152eb9006", - "lastUpdateDateTime": "2020-11-09T21:49:52Z", - "createdDateTime": "2020-11-09T21:49:52Z", - "expirationDateTime": "2020-11-10T21:49:52Z", + "jobId": "61222742-3128-43b7-be17-6dfe0ad49da7", + "lastUpdateDateTime": "2020-11-12T19:33:27Z", + "createdDateTime": "2020-11-12T19:33:27Z", + "expirationDateTime": "2020-11-13T19:33:27Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9d509ac6-baf9-4d7d-be0f-352152eb9006?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/61222742-3128-43b7-be17-6dfe0ad49da7?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4d12280124119b66ed27d10225884cad", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ccfbf08a-628d-4008-95f0-2365251ef5a6", + "apim-request-id": "5ad622cf-9b29-4a15-924a-ffeecb777831", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:53 GMT", + "Date": "Thu, 12 Nov 2020 19:33:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "61222742-3128-43b7-be17-6dfe0ad49da7", + "lastUpdateDateTime": "2020-11-12T19:33:27Z", + "createdDateTime": "2020-11-12T19:33:27Z", + "expirationDateTime": "2020-11-13T19:33:27Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/61222742-3128-43b7-be17-6dfe0ad49da7?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "c1281b11742f5d97bfa8b242a2dc074b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "575c9c5f-f2fa-4462-a245-2a7193264c5e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:33:29 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": "61222742-3128-43b7-be17-6dfe0ad49da7", + "lastUpdateDateTime": "2020-11-12T19:33:27Z", + "createdDateTime": "2020-11-12T19:33:27Z", + "expirationDateTime": "2020-11-13T19:33:27Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/61222742-3128-43b7-be17-6dfe0ad49da7?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "714fdcb449dadcd2c04fb8165b2fdd5d", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c7811f5f-c7b1-42b2-ad73-2fa9cccf16d2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:33:30 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": "61222742-3128-43b7-be17-6dfe0ad49da7", + "lastUpdateDateTime": "2020-11-12T19:33:27Z", + "createdDateTime": "2020-11-12T19:33:27Z", + "expirationDateTime": "2020-11-13T19:33:27Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/61222742-3128-43b7-be17-6dfe0ad49da7?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "2cc4ccf534638cf591b48e697223f811", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9d71467e-42be-4541-95c7-9c501bbd879e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:33:32 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { - "jobId": "9d509ac6-baf9-4d7d-be0f-352152eb9006", - "lastUpdateDateTime": "2020-11-09T21:49:53Z", - "createdDateTime": "2020-11-09T21:49:52Z", - "expirationDateTime": "2020-11-10T21:49:52Z", + "jobId": "61222742-3128-43b7-be17-6dfe0ad49da7", + "lastUpdateDateTime": "2020-11-12T19:33:31Z", + "createdDateTime": "2020-11-12T19:33:27Z", + "expirationDateTime": "2020-11-13T19:33:27Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json index b476890467ee6..bf3a06bb96bd2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-eebc79ad1c24ab4cbd9438f0479ccd54-3dbceacf59c8254f-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-3e35ebb423dd9743b22fa53eb2bbde6f-7486b17d52b79140-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "87697e405fe3a2c8182b48340c37e5c5", "x-ms-return-client-request-id": "true" }, @@ -35,120 +29,132 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "e1cfa195-c4e4-469b-be71-e29353ed0504", - "Date": "Mon, 09 Nov 2020 21:49:27 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1f847fbe-68aa-4bb6-980b-d996c1d2fbc9", + "apim-request-id": "8b7c8db3-e01e-4773-8258-6c76c521b421", + "Date": "Thu, 12 Nov 2020 19:32:42 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0cb0f47c-ccc4-44df-8ca1-61f2ad4cc691", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "91" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1f847fbe-68aa-4bb6-980b-d996c1d2fbc9?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0cb0f47c-ccc4-44df-8ca1-61f2ad4cc691?showStats=true", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f1abd77b68195cb092c7f20f1aa7cc84", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4dab3166-5f7b-4e68-8983-feb689ac6e7c", + "apim-request-id": "a16d6ab6-1acf-42a0-88aa-50baa9961aca", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:27 GMT", + "Date": "Thu, 12 Nov 2020 19:32:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { - "jobId": "1f847fbe-68aa-4bb6-980b-d996c1d2fbc9", - "lastUpdateDateTime": "2020-11-09T21:49:27Z", - "createdDateTime": "2020-11-09T21:49:27Z", - "expirationDateTime": "2020-11-10T21:49:27Z", + "jobId": "0cb0f47c-ccc4-44df-8ca1-61f2ad4cc691", + "lastUpdateDateTime": "2020-11-12T19:32:42Z", + "createdDateTime": "2020-11-12T19:32:42Z", + "expirationDateTime": "2020-11-13T19:32:42Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1f847fbe-68aa-4bb6-980b-d996c1d2fbc9?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0cb0f47c-ccc4-44df-8ca1-61f2ad4cc691?showStats=true", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "be37acebd508d7a1d3d78987b19e23cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "da806b1e-8b78-4bd9-bbca-98e83dced8dc", + "apim-request-id": "8f225ce9-9bd2-4453-87e0-0edc9d72d8ed", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:28 GMT", + "Date": "Thu, 12 Nov 2020 19:32:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "1f847fbe-68aa-4bb6-980b-d996c1d2fbc9", - "lastUpdateDateTime": "2020-11-09T21:49:28Z", - "createdDateTime": "2020-11-09T21:49:27Z", - "expirationDateTime": "2020-11-10T21:49:27Z", - "status": "running", + "jobId": "0cb0f47c-ccc4-44df-8ca1-61f2ad4cc691", + "lastUpdateDateTime": "2020-11-12T19:32:42Z", + "createdDateTime": "2020-11-12T19:32:42Z", + "expirationDateTime": "2020-11-13T19:32:42Z", + "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1f847fbe-68aa-4bb6-980b-d996c1d2fbc9?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0cb0f47c-ccc4-44df-8ca1-61f2ad4cc691?showStats=true", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b34190e23bc3d86ecd0cf51c6cb88870", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "43945b5a-b307-4f96-bafe-84a3ca1ecb70", + "apim-request-id": "47d77c61-f899-4ee7-95c9-b4cefed2572f", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:32:45 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": "0cb0f47c-ccc4-44df-8ca1-61f2ad4cc691", + "lastUpdateDateTime": "2020-11-12T19:32:42Z", + "createdDateTime": "2020-11-12T19:32:42Z", + "expirationDateTime": "2020-11-13T19:32:42Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0cb0f47c-ccc4-44df-8ca1-61f2ad4cc691?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "6048c45f2600a6bd35d41e41de29aaf3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8b60addf-48c3-4eae-9141-ab7ee48a4c3e", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:29 GMT", + "Date": "Thu, 12 Nov 2020 19:32:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "79" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { - "jobId": "1f847fbe-68aa-4bb6-980b-d996c1d2fbc9", - "lastUpdateDateTime": "2020-11-09T21:49:28Z", - "createdDateTime": "2020-11-09T21:49:27Z", - "expirationDateTime": "2020-11-10T21:49:27Z", + "jobId": "0cb0f47c-ccc4-44df-8ca1-61f2ad4cc691", + "lastUpdateDateTime": "2020-11-12T19:32:46Z", + "createdDateTime": "2020-11-12T19:32:42Z", + "expirationDateTime": "2020-11-13T19:32:42Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json index fdc0de0abb0da..cd3da20944a0f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fdee05f897364346924a8fff08c685cf-64611a37086ecc42-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-da7b252a9129064bb4929b02ab1494f5-35e8bee875eb6446-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "da8d96a331a03c42a6c41c2d9f512b98", "x-ms-return-client-request-id": "true" }, @@ -35,120 +29,132 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "04ab33a5-9031-41f8-b684-a4eba717fa9f", - "Date": "Mon, 09 Nov 2020 21:49:54 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/7bff6395-48a6-4d77-9b8d-db1fbd4f7beb", + "apim-request-id": "481610a1-1d3b-4847-a28a-5f2b6abc8162", + "Date": "Thu, 12 Nov 2020 19:33:32 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/50a4456c-3aac-4b98-a2dc-b5feca80c752", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "94" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "92" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/7bff6395-48a6-4d77-9b8d-db1fbd4f7beb?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/50a4456c-3aac-4b98-a2dc-b5feca80c752?showStats=true", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a36dbbc9f92b427287ffda298bd01507", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "03485d6d-9f94-47a0-b830-699546de602d", + "apim-request-id": "0a312ebe-d254-48ac-9425-afd9d3cf3f3a", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:54 GMT", + "Date": "Thu, 12 Nov 2020 19:33:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { - "jobId": "7bff6395-48a6-4d77-9b8d-db1fbd4f7beb", - "lastUpdateDateTime": "2020-11-09T21:49:54Z", - "createdDateTime": "2020-11-09T21:49:54Z", - "expirationDateTime": "2020-11-10T21:49:54Z", + "jobId": "50a4456c-3aac-4b98-a2dc-b5feca80c752", + "lastUpdateDateTime": "2020-11-12T19:33:32Z", + "createdDateTime": "2020-11-12T19:33:32Z", + "expirationDateTime": "2020-11-13T19:33:32Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/7bff6395-48a6-4d77-9b8d-db1fbd4f7beb?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/50a4456c-3aac-4b98-a2dc-b5feca80c752?showStats=true", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "86c4abbaba50d8ace0d0fc3795e01d2c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c4e3c53f-5235-4be0-9ad2-87d9bc3a89ed", + "apim-request-id": "42f4bdfe-7981-4d90-b513-109a6a8a3b38", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:56 GMT", + "Date": "Thu, 12 Nov 2020 19:33:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "7bff6395-48a6-4d77-9b8d-db1fbd4f7beb", - "lastUpdateDateTime": "2020-11-09T21:49:54Z", - "createdDateTime": "2020-11-09T21:49:54Z", - "expirationDateTime": "2020-11-10T21:49:54Z", + "jobId": "50a4456c-3aac-4b98-a2dc-b5feca80c752", + "lastUpdateDateTime": "2020-11-12T19:33:32Z", + "createdDateTime": "2020-11-12T19:33:32Z", + "expirationDateTime": "2020-11-13T19:33:32Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/7bff6395-48a6-4d77-9b8d-db1fbd4f7beb?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/50a4456c-3aac-4b98-a2dc-b5feca80c752?showStats=true", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "97afe1fd518fa965244a53a05719b0d6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "947e138f-ea58-4986-9a3e-ca849e12a5fb", + "apim-request-id": "c06cc414-aebe-4fdd-9d37-7edf8fb50a68", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:33:35 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": "50a4456c-3aac-4b98-a2dc-b5feca80c752", + "lastUpdateDateTime": "2020-11-12T19:33:32Z", + "createdDateTime": "2020-11-12T19:33:32Z", + "expirationDateTime": "2020-11-13T19:33:32Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/50a4456c-3aac-4b98-a2dc-b5feca80c752?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f47314aea48d0f480e95c35afd3bada6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "90290ad1-bd5e-463c-a53c-8e18e3a42d7a", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:57 GMT", + "Date": "Thu, 12 Nov 2020 19:33:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "55" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { - "jobId": "7bff6395-48a6-4d77-9b8d-db1fbd4f7beb", - "lastUpdateDateTime": "2020-11-09T21:49:56Z", - "createdDateTime": "2020-11-09T21:49:54Z", - "expirationDateTime": "2020-11-10T21:49:54Z", + "jobId": "50a4456c-3aac-4b98-a2dc-b5feca80c752", + "lastUpdateDateTime": "2020-11-12T19:33:36Z", + "createdDateTime": "2020-11-12T19:33:32Z", + "expirationDateTime": "2020-11-13T19:33:32Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json index fdeeff40de252..16fcf4ac5c2f7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ebb6a5e65e90eb4ea7bda67a04aeba47-ff52d7023b084445-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-1c4a171cc1a475478b58cc2493739a0b-b323033ddc6aa149-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "0d63e53cea7530898179e7904fedbae6", "x-ms-return-client-request-id": "true" }, @@ -35,84 +29,162 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "cbb8399f-de98-4e08-bc23-e40aa6cdf811", - "Date": "Mon, 09 Nov 2020 21:49:29 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8bf8b543-cb44-4b85-b7a7-ce250eb74009", + "apim-request-id": "1b9628f1-3a95-4d9f-b7c4-ed4dc458b333", + "Date": "Thu, 12 Nov 2020 19:32:46 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4324b935-1a1a-4c98-8124-3570b6664439", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "99" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "100" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8bf8b543-cb44-4b85-b7a7-ce250eb74009?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4324b935-1a1a-4c98-8124-3570b6664439?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7a482533d010f661d7a330e46a9c020c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "78a35692-acca-4987-bcf8-be4be38d1399", + "apim-request-id": "261f8765-7a31-4f87-8b75-e2e08884c1b3", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:30 GMT", + "Date": "Thu, 12 Nov 2020 19:32:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { - "jobId": "8bf8b543-cb44-4b85-b7a7-ce250eb74009", - "lastUpdateDateTime": "2020-11-09T21:49:30Z", - "createdDateTime": "2020-11-09T21:49:30Z", - "expirationDateTime": "2020-11-10T21:49:30Z", + "jobId": "4324b935-1a1a-4c98-8124-3570b6664439", + "lastUpdateDateTime": "2020-11-12T19:32:47Z", + "createdDateTime": "2020-11-12T19:32:46Z", + "expirationDateTime": "2020-11-13T19:32:46Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8bf8b543-cb44-4b85-b7a7-ce250eb74009?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4324b935-1a1a-4c98-8124-3570b6664439?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d4480f3cd87c0175cc930cf584ae8a9b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ba57c490-cf3d-49dd-8a53-28bed10aa9e4", + "apim-request-id": "cfb61051-4ac4-4077-a812-5ab3c25f83eb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:32:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5" + }, + "ResponseBody": { + "jobId": "4324b935-1a1a-4c98-8124-3570b6664439", + "lastUpdateDateTime": "2020-11-12T19:32:47Z", + "createdDateTime": "2020-11-12T19:32:46Z", + "expirationDateTime": "2020-11-13T19:32:46Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4324b935-1a1a-4c98-8124-3570b6664439?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "00da5d97d0326c02836c36d1baa4c6e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "dfce6b7e-df80-4614-af21-13606affc386", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:32:49 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": "4324b935-1a1a-4c98-8124-3570b6664439", + "lastUpdateDateTime": "2020-11-12T19:32:47Z", + "createdDateTime": "2020-11-12T19:32:46Z", + "expirationDateTime": "2020-11-13T19:32:46Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4324b935-1a1a-4c98-8124-3570b6664439?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4053da77e5a55a69b046ae7dc36c7228", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4da5cc7d-6864-46d4-a360-077cf9d77d58", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:32:50 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": "4324b935-1a1a-4c98-8124-3570b6664439", + "lastUpdateDateTime": "2020-11-12T19:32:47Z", + "createdDateTime": "2020-11-12T19:32:46Z", + "expirationDateTime": "2020-11-13T19:32:46Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4324b935-1a1a-4c98-8124-3570b6664439?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "0d4c941902c16cda0cdb5110a2a34728", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8ff84c27-babc-47db-82b2-170bbbf5404a", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:31 GMT", + "Date": "Thu, 12 Nov 2020 19:32:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { - "jobId": "8bf8b543-cb44-4b85-b7a7-ce250eb74009", - "lastUpdateDateTime": "2020-11-09T21:49:31Z", - "createdDateTime": "2020-11-09T21:49:30Z", - "expirationDateTime": "2020-11-10T21:49:30Z", + "jobId": "4324b935-1a1a-4c98-8124-3570b6664439", + "lastUpdateDateTime": "2020-11-12T19:32:51Z", + "createdDateTime": "2020-11-12T19:32:46Z", + "expirationDateTime": "2020-11-13T19:32:46Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json index cb7f16b2c0252..3fb0ba066c704 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-07aeeb834314e84a903b7f45a449d122-bd19b1d60f9e7e4a-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-2baff2975dd50043a4bce24c7bf3fc02-1ad106df045e8a4b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "17e898e3099143136b2e35c82964efd9", "x-ms-return-client-request-id": "true" }, @@ -35,84 +29,162 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "7365eac8-4207-44db-ac4e-ceaaaa4b9aa1", - "Date": "Mon, 09 Nov 2020 21:49:57 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8cdb131a-6933-4d2f-a9ae-d461009db89a", + "apim-request-id": "7b8e1e68-dc3f-4b11-a294-984d126751c3", + "Date": "Thu, 12 Nov 2020 19:33:36 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/298cb535-5d48-4c0c-a39a-cc2fccdbba67", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "98" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "89" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8cdb131a-6933-4d2f-a9ae-d461009db89a?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/298cb535-5d48-4c0c-a39a-cc2fccdbba67?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7dd0fa2b947b788e4d51b90a9e064f06", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "33aa16de-3fc8-4324-91b1-0bf574dbd943", + "apim-request-id": "de2a7f19-b8ef-4677-ad0e-2478711bf82d", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:57 GMT", + "Date": "Thu, 12 Nov 2020 19:33:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "8cdb131a-6933-4d2f-a9ae-d461009db89a", - "lastUpdateDateTime": "2020-11-09T21:49:57Z", - "createdDateTime": "2020-11-09T21:49:57Z", - "expirationDateTime": "2020-11-10T21:49:57Z", + "jobId": "298cb535-5d48-4c0c-a39a-cc2fccdbba67", + "lastUpdateDateTime": "2020-11-12T19:33:37Z", + "createdDateTime": "2020-11-12T19:33:37Z", + "expirationDateTime": "2020-11-13T19:33:37Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8cdb131a-6933-4d2f-a9ae-d461009db89a?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/298cb535-5d48-4c0c-a39a-cc2fccdbba67?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ddd7cae644b1aa3bb79fb4ecc872f743", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5050b3b1-173f-4b54-9800-20d496a65dee", + "apim-request-id": "7f196e40-db3c-48eb-b165-8ff0812461af", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:58 GMT", + "Date": "Thu, 12 Nov 2020 19:33:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "8cdb131a-6933-4d2f-a9ae-d461009db89a", - "lastUpdateDateTime": "2020-11-09T21:49:58Z", - "createdDateTime": "2020-11-09T21:49:57Z", - "expirationDateTime": "2020-11-10T21:49:57Z", + "jobId": "298cb535-5d48-4c0c-a39a-cc2fccdbba67", + "lastUpdateDateTime": "2020-11-12T19:33:37Z", + "createdDateTime": "2020-11-12T19:33:37Z", + "expirationDateTime": "2020-11-13T19:33:37Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/298cb535-5d48-4c0c-a39a-cc2fccdbba67?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "3c1db919135b4f3e0970ca3f4f09a565", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a7db3947-948e-4690-a0d3-34b22199c948", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:33:39 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": "298cb535-5d48-4c0c-a39a-cc2fccdbba67", + "lastUpdateDateTime": "2020-11-12T19:33:37Z", + "createdDateTime": "2020-11-12T19:33:37Z", + "expirationDateTime": "2020-11-13T19:33:37Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/298cb535-5d48-4c0c-a39a-cc2fccdbba67?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "5fe22edf128ce627be26c6dcdfa2b0da", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "5962b49e-5eea-40cd-b2ab-fed07fd2c93e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:33:40 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": "298cb535-5d48-4c0c-a39a-cc2fccdbba67", + "lastUpdateDateTime": "2020-11-12T19:33:37Z", + "createdDateTime": "2020-11-12T19:33:37Z", + "expirationDateTime": "2020-11-13T19:33:37Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/298cb535-5d48-4c0c-a39a-cc2fccdbba67?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "e4f1765912e9d2ab8c88d3417afc5bae", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b948ac53-be15-4c69-8c37-d31f9357a528", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:33:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "48" + }, + "ResponseBody": { + "jobId": "298cb535-5d48-4c0c-a39a-cc2fccdbba67", + "lastUpdateDateTime": "2020-11-12T19:33:41Z", + "createdDateTime": "2020-11-12T19:33:37Z", + "expirationDateTime": "2020-11-13T19:33:37Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json index aa6d04e1eabe6..3181f5ad06fe1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "260", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-82eaf3d8fa706948b02b3ad07721ab28-4e919495eb532641-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-f3546c4dbed2314686e3b69060abe9dc-d883555251b1db4f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ed679d93c08fe171a9b236aaa757046a", "x-ms-return-client-request-id": "true" }, @@ -40,120 +34,132 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "52fec201-0d99-4302-b80c-4dbcf0d3d48a", - "Date": "Mon, 09 Nov 2020 21:49:31 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8a4f9cd5-c0f3-4b50-b849-abf6fa973d4d", + "apim-request-id": "799e2cd4-b7f7-4ea3-9a44-1e88795e917b", + "Date": "Thu, 12 Nov 2020 19:32:51 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8b1531e0-be0d-4a23-89ba-f8c77d6dabb4", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "109" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "108" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8a4f9cd5-c0f3-4b50-b849-abf6fa973d4d?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8b1531e0-be0d-4a23-89ba-f8c77d6dabb4?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8ac7fae8cf64a9249598acb3531ad44c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "de8ef932-37b6-43e4-b924-20720252d05c", + "apim-request-id": "7fc6902f-9cfd-491d-84a9-bdd3401b2fa6", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:31 GMT", + "Date": "Thu, 12 Nov 2020 19:32:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "8a4f9cd5-c0f3-4b50-b849-abf6fa973d4d", - "lastUpdateDateTime": "2020-11-09T21:49:32Z", - "createdDateTime": "2020-11-09T21:49:32Z", - "expirationDateTime": "2020-11-10T21:49:32Z", + "jobId": "8b1531e0-be0d-4a23-89ba-f8c77d6dabb4", + "lastUpdateDateTime": "2020-11-12T19:32:52Z", + "createdDateTime": "2020-11-12T19:32:52Z", + "expirationDateTime": "2020-11-13T19:32:52Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8a4f9cd5-c0f3-4b50-b849-abf6fa973d4d?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8b1531e0-be0d-4a23-89ba-f8c77d6dabb4?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e1e35bcd7fe4ca895c5026b1fcf89877", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e7ebe215-ab41-4c79-b181-0e4d829e70b4", + "apim-request-id": "3e85ff95-882b-4078-baf0-a0b92ba352c6", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:32 GMT", + "Date": "Thu, 12 Nov 2020 19:32:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { - "jobId": "8a4f9cd5-c0f3-4b50-b849-abf6fa973d4d", - "lastUpdateDateTime": "2020-11-09T21:49:33Z", - "createdDateTime": "2020-11-09T21:49:32Z", - "expirationDateTime": "2020-11-10T21:49:32Z", - "status": "running", + "jobId": "8b1531e0-be0d-4a23-89ba-f8c77d6dabb4", + "lastUpdateDateTime": "2020-11-12T19:32:52Z", + "createdDateTime": "2020-11-12T19:32:52Z", + "expirationDateTime": "2020-11-13T19:32:52Z", + "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8a4f9cd5-c0f3-4b50-b849-abf6fa973d4d?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8b1531e0-be0d-4a23-89ba-f8c77d6dabb4?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "42e053ff1beac39b78bd58f714be8d8f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2e1fa0d6-dc79-45e5-90ad-4dd766c245c2", + "apim-request-id": "0ed77576-47d4-4297-991d-8aa92557006c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:32:55 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": "8b1531e0-be0d-4a23-89ba-f8c77d6dabb4", + "lastUpdateDateTime": "2020-11-12T19:32:52Z", + "createdDateTime": "2020-11-12T19:32:52Z", + "expirationDateTime": "2020-11-13T19:32:52Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8b1531e0-be0d-4a23-89ba-f8c77d6dabb4?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "4bddeade2273698670fd2d14a873ad9c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "a2ad1419-c048-49cb-9583-d2ac2fd0ad2e", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:34 GMT", + "Date": "Thu, 12 Nov 2020 19:32:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "66" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "79" }, "ResponseBody": { - "jobId": "8a4f9cd5-c0f3-4b50-b849-abf6fa973d4d", - "lastUpdateDateTime": "2020-11-09T21:49:33Z", - "createdDateTime": "2020-11-09T21:49:32Z", - "expirationDateTime": "2020-11-10T21:49:32Z", + "jobId": "8b1531e0-be0d-4a23-89ba-f8c77d6dabb4", + "lastUpdateDateTime": "2020-11-12T19:32:56Z", + "createdDateTime": "2020-11-12T19:32:52Z", + "expirationDateTime": "2020-11-13T19:32:52Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json index 1a5c0009e7c40..e2083dde4d5a6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "260", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-22f408b637ebe545b856bc526b3ba3c1-7d20ade379944b4b-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-82ed0b4b5a1f7b4a81f49c77c7858c2c-1c1142de58ffa54b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4352d8dd6e2ff74a3743e20989f20949", "x-ms-return-client-request-id": "true" }, @@ -40,120 +34,132 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "421eb3ff-8a5c-47d8-a65e-db4355ffcbef", - "Date": "Mon, 09 Nov 2020 21:49:59 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a1317da6-43e9-414f-8943-4a5ba67c2e63", + "apim-request-id": "2950bf65-0964-4cc0-bd9d-a1e92c91469d", + "Date": "Thu, 12 Nov 2020 19:33:42 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/132c0688-5586-4285-b76b-bc85ac253a01", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "108" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "97" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a1317da6-43e9-414f-8943-4a5ba67c2e63?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/132c0688-5586-4285-b76b-bc85ac253a01?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b850713105701863d1b6a799a800b67b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5b0635d2-09ac-4a7f-b640-282e51ba8749", + "apim-request-id": "4662e684-2366-4171-8eff-bbd6b89b941f", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:59 GMT", + "Date": "Thu, 12 Nov 2020 19:33:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "a1317da6-43e9-414f-8943-4a5ba67c2e63", - "lastUpdateDateTime": "2020-11-09T21:49:59Z", - "createdDateTime": "2020-11-09T21:49:59Z", - "expirationDateTime": "2020-11-10T21:49:59Z", + "jobId": "132c0688-5586-4285-b76b-bc85ac253a01", + "lastUpdateDateTime": "2020-11-12T19:33:42Z", + "createdDateTime": "2020-11-12T19:33:42Z", + "expirationDateTime": "2020-11-13T19:33:42Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a1317da6-43e9-414f-8943-4a5ba67c2e63?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/132c0688-5586-4285-b76b-bc85ac253a01?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "7b6997a8eb08a1c0115e8728d43fe710", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "12112380-1ca2-408a-a1ba-bbb0d26f03c1", + "apim-request-id": "93f0d4f3-68da-4983-bc3f-7e7a5e24db84", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:50:00 GMT", + "Date": "Thu, 12 Nov 2020 19:33:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "a1317da6-43e9-414f-8943-4a5ba67c2e63", - "lastUpdateDateTime": "2020-11-09T21:49:59Z", - "createdDateTime": "2020-11-09T21:49:59Z", - "expirationDateTime": "2020-11-10T21:49:59Z", + "jobId": "132c0688-5586-4285-b76b-bc85ac253a01", + "lastUpdateDateTime": "2020-11-12T19:33:42Z", + "createdDateTime": "2020-11-12T19:33:42Z", + "expirationDateTime": "2020-11-13T19:33:42Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a1317da6-43e9-414f-8943-4a5ba67c2e63?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/132c0688-5586-4285-b76b-bc85ac253a01?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c4c517d3dcd1d7de74397279c7b14e37", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "627020fc-4fa8-4729-b17f-21e8a7732a4f", + "apim-request-id": "74cda54f-aa07-4d61-b86f-2fce454d5dd1", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:50:02 GMT", + "Date": "Thu, 12 Nov 2020 19:33:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "253" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "a1317da6-43e9-414f-8943-4a5ba67c2e63", - "lastUpdateDateTime": "2020-11-09T21:50:01Z", - "createdDateTime": "2020-11-09T21:49:59Z", - "expirationDateTime": "2020-11-10T21:49:59Z", + "jobId": "132c0688-5586-4285-b76b-bc85ac253a01", + "lastUpdateDateTime": "2020-11-12T19:33:42Z", + "createdDateTime": "2020-11-12T19:33:42Z", + "expirationDateTime": "2020-11-13T19:33:42Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/132c0688-5586-4285-b76b-bc85ac253a01?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f260678d8d894640b1aea7117e3b4491", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "eef0109a-24ee-4622-9a83-19b8bd76989b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:33:46 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "49" + }, + "ResponseBody": { + "jobId": "132c0688-5586-4285-b76b-bc85ac253a01", + "lastUpdateDateTime": "2020-11-12T19:33:46Z", + "createdDateTime": "2020-11-12T19:33:42Z", + "expirationDateTime": "2020-11-13T19:33:42Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPagination.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPagination.json index 4543fa43afcbb..8a335055e94f8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPagination.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPagination.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "1395", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e2779b766db628408acaf6b1a4fb04c7-0b0070ff367b8d4f-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-6a1d208a91cf0545be6972a7bcbecc9e-93f99da097a91546-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "3d690e65097214462e3994d44b026896", "x-ms-return-client-request-id": "true" }, @@ -75,120 +69,162 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "8782751f-3d31-4a7a-9269-d248244025d7", - "Date": "Mon, 09 Nov 2020 21:49:34 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9170e163-e606-4d8b-8b75-89bbd43fc2a4", + "apim-request-id": "45d2c92c-bff8-4388-a820-91e127dbcede", + "Date": "Thu, 12 Nov 2020 19:32:56 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "259" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "186" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9170e163-e606-4d8b-8b75-89bbd43fc2a4?$top=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939?$top=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "60014c42eec829d6c5965295103c077f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "568a0529-7c8b-4c41-a9c4-6edbf132e53a", + "apim-request-id": "1dc726fa-2104-4fcc-9f6a-fd0c35f3f4a3", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:34 GMT", + "Date": "Thu, 12 Nov 2020 19:32: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-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "9170e163-e606-4d8b-8b75-89bbd43fc2a4", - "lastUpdateDateTime": "2020-11-09T21:49:35Z", - "createdDateTime": "2020-11-09T21:49:35Z", - "expirationDateTime": "2020-11-10T21:49:35Z", + "jobId": "1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939", + "lastUpdateDateTime": "2020-11-12T19:32:57Z", + "createdDateTime": "2020-11-12T19:32:56Z", + "expirationDateTime": "2020-11-13T19:32:56Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9170e163-e606-4d8b-8b75-89bbd43fc2a4?$top=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939?$top=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e6e71e1943fddaaba6e9191ddcfc8d38", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "802c5fce-8c39-41eb-ad90-d95ba05c2ed9", + "apim-request-id": "ed92b62a-d414-4500-9a4e-b9d06153ee1c", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:36 GMT", + "Date": "Thu, 12 Nov 2020 19:32:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "9170e163-e606-4d8b-8b75-89bbd43fc2a4", - "lastUpdateDateTime": "2020-11-09T21:49:36Z", - "createdDateTime": "2020-11-09T21:49:35Z", - "expirationDateTime": "2020-11-10T21:49:35Z", - "status": "running", + "jobId": "1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939", + "lastUpdateDateTime": "2020-11-12T19:32:57Z", + "createdDateTime": "2020-11-12T19:32:56Z", + "expirationDateTime": "2020-11-13T19:32:56Z", + "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9170e163-e606-4d8b-8b75-89bbd43fc2a4?$top=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939?$top=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "6bedcd03a2427620384078dbb7b003f2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "39c70500-a6fc-4b62-8039-efe4a132c7c5", + "apim-request-id": "3b9b2105-47e7-4cd1-aea4-d4c26e9fb609", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:32:59 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5" + }, + "ResponseBody": { + "jobId": "1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939", + "lastUpdateDateTime": "2020-11-12T19:32:57Z", + "createdDateTime": "2020-11-12T19:32:56Z", + "expirationDateTime": "2020-11-13T19:32:56Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939?$top=2\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "2cba1531821bff99a027b9ded5b94dc9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4a38cea0-fda9-4147-9773-a13723322bd2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:33:00 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": "1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939", + "lastUpdateDateTime": "2020-11-12T19:32:57Z", + "createdDateTime": "2020-11-12T19:32:56Z", + "expirationDateTime": "2020-11-13T19:32:56Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939?$top=2\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "439219099c4e763dfe70aebdcbcf23f6", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9bc5b332-1888-4610-b5cd-77d70acd6a39", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:37 GMT", + "Date": "Thu, 12 Nov 2020 19:33:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "90" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { - "jobId": "9170e163-e606-4d8b-8b75-89bbd43fc2a4", - "lastUpdateDateTime": "2020-11-09T21:49:37Z", - "createdDateTime": "2020-11-09T21:49:35Z", - "expirationDateTime": "2020-11-10T21:49:35Z", + "jobId": "1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939", + "lastUpdateDateTime": "2020-11-12T19:33:01Z", + "createdDateTime": "2020-11-12T19:32:56Z", + "expirationDateTime": "2020-11-13T19:32:56Z", "status": "succeeded", "errors": [], "results": { @@ -437,41 +473,35 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9170e163-e606-4d8b-8b75-89bbd43fc2a4?$skip=2\u0026$top=2" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939?$skip=2\u0026$top=2" } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9170e163-e606-4d8b-8b75-89bbd43fc2a4?$top=2\u0026$skip=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939?$top=2\u0026$skip=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2cba1531821bff99a027b9ded5b94dc9", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "c6eb26e66141811d33eeca1ae941a17e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c20f4b25-7fb0-4d5d-9ce8-1be98c89bd49", + "apim-request-id": "f49b2302-7d6c-471c-8989-912d32e3d4a7", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:38 GMT", + "Date": "Thu, 12 Nov 2020 19:33:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { - "jobId": "9170e163-e606-4d8b-8b75-89bbd43fc2a4", - "lastUpdateDateTime": "2020-11-09T21:49:37Z", - "createdDateTime": "2020-11-09T21:49:35Z", - "expirationDateTime": "2020-11-10T21:49:35Z", + "jobId": "1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939", + "lastUpdateDateTime": "2020-11-12T19:33:01Z", + "createdDateTime": "2020-11-12T19:32:56Z", + "expirationDateTime": "2020-11-13T19:32:56Z", "status": "succeeded", "errors": [], "results": { @@ -720,41 +750,35 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9170e163-e606-4d8b-8b75-89bbd43fc2a4?$skip=4\u0026$top=2" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939?$skip=4\u0026$top=2" } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9170e163-e606-4d8b-8b75-89bbd43fc2a4?$top=2\u0026$skip=4\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939?$top=2\u0026$skip=4\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "439219099c4e763dfe70aebdcbcf23f6", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9dd2aef2c01e95a3d8442daad3dc33d1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f694aa74-fdf3-405f-8104-4b54d87b2ee1", + "apim-request-id": "6aa85624-5535-44ef-84a5-403990971097", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:38 GMT", + "Date": "Thu, 12 Nov 2020 19:33:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "54" }, "ResponseBody": { - "jobId": "9170e163-e606-4d8b-8b75-89bbd43fc2a4", - "lastUpdateDateTime": "2020-11-09T21:49:37Z", - "createdDateTime": "2020-11-09T21:49:35Z", - "expirationDateTime": "2020-11-10T21:49:35Z", + "jobId": "1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939", + "lastUpdateDateTime": "2020-11-12T19:33:01Z", + "createdDateTime": "2020-11-12T19:32:56Z", + "expirationDateTime": "2020-11-13T19:32:56Z", "status": "succeeded", "errors": [], "results": { @@ -1003,41 +1027,35 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9170e163-e606-4d8b-8b75-89bbd43fc2a4?$skip=6\u0026$top=2" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939?$skip=6\u0026$top=2" } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9170e163-e606-4d8b-8b75-89bbd43fc2a4?$top=2\u0026$skip=6\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939?$top=2\u0026$skip=6\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c6eb26e66141811d33eeca1ae941a17e", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "aef8c20486cda788fc100f60d1228dbd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9b0bd601-65c6-471c-87e3-35b054c15723", + "apim-request-id": "b951af49-a959-4326-be3f-e88f52a955d3", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:38 GMT", + "Date": "Thu, 12 Nov 2020 19:33:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "95" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "57" }, "ResponseBody": { - "jobId": "9170e163-e606-4d8b-8b75-89bbd43fc2a4", - "lastUpdateDateTime": "2020-11-09T21:49:37Z", - "createdDateTime": "2020-11-09T21:49:35Z", - "expirationDateTime": "2020-11-10T21:49:35Z", + "jobId": "1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939", + "lastUpdateDateTime": "2020-11-12T19:33:01Z", + "createdDateTime": "2020-11-12T19:32:56Z", + "expirationDateTime": "2020-11-13T19:32:56Z", "status": "succeeded", "errors": [], "results": { @@ -1286,41 +1304,35 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9170e163-e606-4d8b-8b75-89bbd43fc2a4?$skip=8\u0026$top=2" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939?$skip=8\u0026$top=2" } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9170e163-e606-4d8b-8b75-89bbd43fc2a4?$top=2\u0026$skip=8\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939?$top=2\u0026$skip=8\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9dd2aef2c01e95a3d8442daad3dc33d1", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "1cca2fce85fd26d88355eefd3372ae57", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "21676499-22bb-4cff-8bba-c939ecbc4295", + "apim-request-id": "3be556c8-0d5d-4ec0-ba00-c8aeb7e03d73", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:39 GMT", + "Date": "Thu, 12 Nov 2020 19:33:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "54" }, "ResponseBody": { - "jobId": "9170e163-e606-4d8b-8b75-89bbd43fc2a4", - "lastUpdateDateTime": "2020-11-09T21:49:37Z", - "createdDateTime": "2020-11-09T21:49:35Z", - "expirationDateTime": "2020-11-10T21:49:35Z", + "jobId": "1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939", + "lastUpdateDateTime": "2020-11-12T19:33:01Z", + "createdDateTime": "2020-11-12T19:32:56Z", + "expirationDateTime": "2020-11-13T19:32:56Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPaginationAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPaginationAsync.json index a6711a22314fb..2e4804d766076 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPaginationAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPaginationAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "1395", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d76a00f34f242d40a5ba236561844fd1-753f677b016f114e-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-78886642956577458e14a119493c155f-9f8a0a1e2e140743-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f142919ab8153bebc5d9f5272ba0209d", "x-ms-return-client-request-id": "true" }, @@ -75,120 +69,162 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "a774f39d-7c93-49c2-80c1-c7d128a1911f", - "Date": "Mon, 09 Nov 2020 21:50:02 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ce42eced-de78-4395-b4b8-52f4853aae96", + "apim-request-id": "a5c0a5c6-7a70-46ed-b330-8e2d24211ad0", + "Date": "Thu, 12 Nov 2020 19:33:46 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "185" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "195" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ce42eced-de78-4395-b4b8-52f4853aae96?$top=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c?$top=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "abea9627e0cd843f9974ee5faa963225", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "08f1daf1-b223-4bd3-bf90-7dae20807395", + "apim-request-id": "c82b9c58-24c7-4514-b32c-851019151eb5", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:50:02 GMT", + "Date": "Thu, 12 Nov 2020 19:33:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "ce42eced-de78-4395-b4b8-52f4853aae96", - "lastUpdateDateTime": "2020-11-09T21:50:02Z", - "createdDateTime": "2020-11-09T21:50:02Z", - "expirationDateTime": "2020-11-10T21:50:02Z", + "jobId": "0c9e929a-2b62-4298-a6cf-ece49c5cb20c", + "lastUpdateDateTime": "2020-11-12T19:33:47Z", + "createdDateTime": "2020-11-12T19:33:46Z", + "expirationDateTime": "2020-11-13T19:33:46Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ce42eced-de78-4395-b4b8-52f4853aae96?$top=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c?$top=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "29e58cf2b8b376a1d7b53c264371cd5a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5cd2bc96-a146-4930-a7bb-5ba21cc3b676", + "apim-request-id": "c8774417-a65f-4397-9c0d-2680d7108022", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:50:04 GMT", + "Date": "Thu, 12 Nov 2020 19:33:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "ce42eced-de78-4395-b4b8-52f4853aae96", - "lastUpdateDateTime": "2020-11-09T21:50:03Z", - "createdDateTime": "2020-11-09T21:50:02Z", - "expirationDateTime": "2020-11-10T21:50:02Z", - "status": "running", + "jobId": "0c9e929a-2b62-4298-a6cf-ece49c5cb20c", + "lastUpdateDateTime": "2020-11-12T19:33:47Z", + "createdDateTime": "2020-11-12T19:33:46Z", + "expirationDateTime": "2020-11-13T19:33:46Z", + "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ce42eced-de78-4395-b4b8-52f4853aae96?$top=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c?$top=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ebc37c63c42eb92852bd57a0ca8c902e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "46841c4f-5733-48dc-bd5d-5c32dbd7c8bf", + "apim-request-id": "20e252fe-ab24-4d67-8f93-2c49170f2d16", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:50:05 GMT", + "Date": "Thu, 12 Nov 2020 19:33:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "ce42eced-de78-4395-b4b8-52f4853aae96", - "lastUpdateDateTime": "2020-11-09T21:50:04Z", - "createdDateTime": "2020-11-09T21:50:02Z", - "expirationDateTime": "2020-11-10T21:50:02Z", + "jobId": "0c9e929a-2b62-4298-a6cf-ece49c5cb20c", + "lastUpdateDateTime": "2020-11-12T19:33:47Z", + "createdDateTime": "2020-11-12T19:33:46Z", + "expirationDateTime": "2020-11-13T19:33:46Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c?$top=2\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9f34cfa6f7bb6feaf474d418a4184128", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "147b9d60-04d8-48fa-ad59-efc3860f17e4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:33:50 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": "0c9e929a-2b62-4298-a6cf-ece49c5cb20c", + "lastUpdateDateTime": "2020-11-12T19:33:47Z", + "createdDateTime": "2020-11-12T19:33:46Z", + "expirationDateTime": "2020-11-13T19:33:46Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c?$top=2\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "2efb93a746d22ef7642bd7f66001ab4b", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "315934b6-743d-4e8a-8732-379e6ffdbeae", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:33:52 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "43" + }, + "ResponseBody": { + "jobId": "0c9e929a-2b62-4298-a6cf-ece49c5cb20c", + "lastUpdateDateTime": "2020-11-12T19:33:51Z", + "createdDateTime": "2020-11-12T19:33:46Z", + "expirationDateTime": "2020-11-13T19:33:46Z", "status": "succeeded", "errors": [], "results": { @@ -437,41 +473,35 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ce42eced-de78-4395-b4b8-52f4853aae96?$skip=2\u0026$top=2" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c?$skip=2\u0026$top=2" } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ce42eced-de78-4395-b4b8-52f4853aae96?$top=2\u0026$skip=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c?$top=2\u0026$skip=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9f34cfa6f7bb6feaf474d418a4184128", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "747f0d242e3c6c9f9253f6b9ef0f1539", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e19df4e2-86cb-4ac3-a15a-f153ac2a8007", + "apim-request-id": "ea4c47e9-0b1d-4db6-89ae-23a9fded159c", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:50:05 GMT", + "Date": "Thu, 12 Nov 2020 19:33:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "74" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { - "jobId": "ce42eced-de78-4395-b4b8-52f4853aae96", - "lastUpdateDateTime": "2020-11-09T21:50:04Z", - "createdDateTime": "2020-11-09T21:50:02Z", - "expirationDateTime": "2020-11-10T21:50:02Z", + "jobId": "0c9e929a-2b62-4298-a6cf-ece49c5cb20c", + "lastUpdateDateTime": "2020-11-12T19:33:51Z", + "createdDateTime": "2020-11-12T19:33:46Z", + "expirationDateTime": "2020-11-13T19:33:46Z", "status": "succeeded", "errors": [], "results": { @@ -720,41 +750,35 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ce42eced-de78-4395-b4b8-52f4853aae96?$skip=4\u0026$top=2" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c?$skip=4\u0026$top=2" } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ce42eced-de78-4395-b4b8-52f4853aae96?$top=2\u0026$skip=4\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c?$top=2\u0026$skip=4\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "2efb93a746d22ef7642bd7f66001ab4b", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "36f82f7c62905f5bd8053a8f1ff30ef3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1daf45e3-e286-4cb1-be61-c84fa134e249", + "apim-request-id": "608c5ecc-9f9c-43a2-9ba0-a51411b0e813", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:50:05 GMT", + "Date": "Thu, 12 Nov 2020 19:33:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "198" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { - "jobId": "ce42eced-de78-4395-b4b8-52f4853aae96", - "lastUpdateDateTime": "2020-11-09T21:50:04Z", - "createdDateTime": "2020-11-09T21:50:02Z", - "expirationDateTime": "2020-11-10T21:50:02Z", + "jobId": "0c9e929a-2b62-4298-a6cf-ece49c5cb20c", + "lastUpdateDateTime": "2020-11-12T19:33:51Z", + "createdDateTime": "2020-11-12T19:33:46Z", + "expirationDateTime": "2020-11-13T19:33:46Z", "status": "succeeded", "errors": [], "results": { @@ -1003,41 +1027,35 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ce42eced-de78-4395-b4b8-52f4853aae96?$skip=6\u0026$top=2" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c?$skip=6\u0026$top=2" } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ce42eced-de78-4395-b4b8-52f4853aae96?$top=2\u0026$skip=6\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c?$top=2\u0026$skip=6\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "747f0d242e3c6c9f9253f6b9ef0f1539", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "96f489c8cc9879ebf48f9c7e4f3d3e54", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6920b980-1048-4151-b499-282c5ea2cb65", + "apim-request-id": "5a0f39eb-e721-4ec0-81e9-4e5d6712b150", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:50:06 GMT", + "Date": "Thu, 12 Nov 2020 19:33:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { - "jobId": "ce42eced-de78-4395-b4b8-52f4853aae96", - "lastUpdateDateTime": "2020-11-09T21:50:04Z", - "createdDateTime": "2020-11-09T21:50:02Z", - "expirationDateTime": "2020-11-10T21:50:02Z", + "jobId": "0c9e929a-2b62-4298-a6cf-ece49c5cb20c", + "lastUpdateDateTime": "2020-11-12T19:33:51Z", + "createdDateTime": "2020-11-12T19:33:46Z", + "expirationDateTime": "2020-11-13T19:33:46Z", "status": "succeeded", "errors": [], "results": { @@ -1286,41 +1304,35 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ce42eced-de78-4395-b4b8-52f4853aae96?$skip=8\u0026$top=2" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c?$skip=8\u0026$top=2" } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ce42eced-de78-4395-b4b8-52f4853aae96?$top=2\u0026$skip=8\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c?$top=2\u0026$skip=8\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "36f82f7c62905f5bd8053a8f1ff30ef3", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "317a9d167508c1bab11f9b36f30f4c9e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cb2b4a3d-e063-4e51-a3ad-685369727324", + "apim-request-id": "ec1e5f16-c4dd-49a7-adb4-8e2a15e66758", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:50:06 GMT", + "Date": "Thu, 12 Nov 2020 19:33:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "59" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { - "jobId": "ce42eced-de78-4395-b4b8-52f4853aae96", - "lastUpdateDateTime": "2020-11-09T21:50:04Z", - "createdDateTime": "2020-11-09T21:50:02Z", - "expirationDateTime": "2020-11-10T21:50:02Z", + "jobId": "0c9e929a-2b62-4298-a6cf-ece49c5cb20c", + "lastUpdateDateTime": "2020-11-12T19:33:51Z", + "createdDateTime": "2020-11-12T19:33:46Z", + "expirationDateTime": "2020-11-13T19:33:46Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json index 33148c7ba405d..d598cdfd9616d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5953e65ed298fa439efd0ed33d5203fa-f045f8271e6e9c46-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-60fc9229f246f44fa8d2ee099e84fd98-9dc9ab2655f88c41-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8ec3c90b7880bba55b75abdb84a19321", "x-ms-return-client-request-id": "true" }, @@ -35,120 +29,102 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "15999b3a-59a1-4fe6-a910-71a48f09bbae", - "Date": "Mon, 09 Nov 2020 21:49:39 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9932ba17-d447-4911-b995-7afb996c6ce9", + "apim-request-id": "504b9704-bb7d-4d29-b4cf-29b1944eb820", + "Date": "Thu, 12 Nov 2020 19:33:04 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4016f54c-0e80-4a07-8862-6739280d251b", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "102" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "100" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9932ba17-d447-4911-b995-7afb996c6ce9?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4016f54c-0e80-4a07-8862-6739280d251b?showStats=true", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "56fe48ebb003114e437c6f5c1a23295d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bec3a517-ad56-4c9d-a5be-1318f484f81f", + "apim-request-id": "8b82cd89-f5d6-4dbd-8492-b21c3aa06cd1", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:39 GMT", + "Date": "Thu, 12 Nov 2020 19:33:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "9932ba17-d447-4911-b995-7afb996c6ce9", - "lastUpdateDateTime": "2020-11-09T21:49:40Z", - "createdDateTime": "2020-11-09T21:49:40Z", - "expirationDateTime": "2020-11-10T21:49:40Z", + "jobId": "4016f54c-0e80-4a07-8862-6739280d251b", + "lastUpdateDateTime": "2020-11-12T19:33:04Z", + "createdDateTime": "2020-11-12T19:33:04Z", + "expirationDateTime": "2020-11-13T19:33:04Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9932ba17-d447-4911-b995-7afb996c6ce9?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4016f54c-0e80-4a07-8862-6739280d251b?showStats=true", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e2f12bb5a78a8d006ec8d88886d7049c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "09f8bf3a-4eef-4eae-82e9-1bc8fb1f5569", + "apim-request-id": "f90a85e0-22c7-4aeb-9955-6c16e42d0306", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:41 GMT", + "Date": "Thu, 12 Nov 2020 19:33:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "5" }, "ResponseBody": { - "jobId": "9932ba17-d447-4911-b995-7afb996c6ce9", - "lastUpdateDateTime": "2020-11-09T21:49:41Z", - "createdDateTime": "2020-11-09T21:49:40Z", - "expirationDateTime": "2020-11-10T21:49:40Z", - "status": "running", + "jobId": "4016f54c-0e80-4a07-8862-6739280d251b", + "lastUpdateDateTime": "2020-11-12T19:33:04Z", + "createdDateTime": "2020-11-12T19:33:04Z", + "expirationDateTime": "2020-11-13T19:33:04Z", + "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9932ba17-d447-4911-b995-7afb996c6ce9?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4016f54c-0e80-4a07-8862-6739280d251b?showStats=true", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c7d5601dc12e5b3c7ab14a040948a137", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a037e7b4-142b-4a40-9bc3-be4f986e33e7", + "apim-request-id": "75e9af66-7136-4782-bc52-29d909969ab2", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:42 GMT", + "Date": "Thu, 12 Nov 2020 19:33:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "65" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { - "jobId": "9932ba17-d447-4911-b995-7afb996c6ce9", - "lastUpdateDateTime": "2020-11-09T21:49:41Z", - "createdDateTime": "2020-11-09T21:49:40Z", - "expirationDateTime": "2020-11-10T21:49:40Z", + "jobId": "4016f54c-0e80-4a07-8862-6739280d251b", + "lastUpdateDateTime": "2020-11-12T19:33:06Z", + "createdDateTime": "2020-11-12T19:33:04Z", + "expirationDateTime": "2020-11-13T19:33:04Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json index 40cc12eb329ed..204da866d3b7c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9ca46cc5420e7946afc741746ca1f0a4-1fa0a005ee772745-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-96ac9f61dc227f469f4b7668a6623644-6de69715775c9748-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "cb820fc464b79dcc9212329646bf509a", "x-ms-return-client-request-id": "true" }, @@ -35,120 +29,102 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "64c6c44b-1db4-4e4f-998d-982325494e76", - "Date": "Mon, 09 Nov 2020 21:50:06 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a01ba4fc-761a-4263-b259-52fe6f5f7626", + "apim-request-id": "01c65c43-5a50-401a-a461-08545dce5e24", + "Date": "Thu, 12 Nov 2020 19:33:53 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8959cdae-dd5e-44b7-adfe-0196334e4571", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "104" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "85" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a01ba4fc-761a-4263-b259-52fe6f5f7626?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8959cdae-dd5e-44b7-adfe-0196334e4571?showStats=true", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "08d18cd76fa1ba75ad5e5758b7de00e4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fd752fca-1bdf-4e9e-a28c-f22c3c473f96", + "apim-request-id": "8adf8de6-61cf-403a-8f88-a567b2d4c480", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:50:06 GMT", + "Date": "Thu, 12 Nov 2020 19:33:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "a01ba4fc-761a-4263-b259-52fe6f5f7626", - "lastUpdateDateTime": "2020-11-09T21:50:07Z", - "createdDateTime": "2020-11-09T21:50:07Z", - "expirationDateTime": "2020-11-10T21:50:07Z", + "jobId": "8959cdae-dd5e-44b7-adfe-0196334e4571", + "lastUpdateDateTime": "2020-11-12T19:33:54Z", + "createdDateTime": "2020-11-12T19:33:54Z", + "expirationDateTime": "2020-11-13T19:33:54Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a01ba4fc-761a-4263-b259-52fe6f5f7626?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8959cdae-dd5e-44b7-adfe-0196334e4571?showStats=true", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "2ac480b3f6758c758bf3f8f60a589915", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c5499b4e-ed10-4e11-87c6-7c3a64af307f", + "apim-request-id": "cb840730-23a6-46b1-bc74-4e434834c9d5", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:50:08 GMT", + "Date": "Thu, 12 Nov 2020 19:33:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "a01ba4fc-761a-4263-b259-52fe6f5f7626", - "lastUpdateDateTime": "2020-11-09T21:50:08Z", - "createdDateTime": "2020-11-09T21:50:07Z", - "expirationDateTime": "2020-11-10T21:50:07Z", - "status": "running", + "jobId": "8959cdae-dd5e-44b7-adfe-0196334e4571", + "lastUpdateDateTime": "2020-11-12T19:33:54Z", + "createdDateTime": "2020-11-12T19:33:54Z", + "expirationDateTime": "2020-11-13T19:33:54Z", + "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a01ba4fc-761a-4263-b259-52fe6f5f7626?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8959cdae-dd5e-44b7-adfe-0196334e4571?showStats=true", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4456bc1eb361546e99c71e580d73e5b3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e4965808-542a-472e-b524-daf406e297fe", + "apim-request-id": "30012769-4c54-4178-a5e2-dfbaf20ef143", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:50:09 GMT", + "Date": "Thu, 12 Nov 2020 19:33:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "144" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { - "jobId": "a01ba4fc-761a-4263-b259-52fe6f5f7626", - "lastUpdateDateTime": "2020-11-09T21:50:08Z", - "createdDateTime": "2020-11-09T21:50:07Z", - "expirationDateTime": "2020-11-10T21:50:07Z", + "jobId": "8959cdae-dd5e-44b7-adfe-0196334e4571", + "lastUpdateDateTime": "2020-11-12T19:33:56Z", + "createdDateTime": "2020-11-12T19:33:54Z", + "expirationDateTime": "2020-11-13T19:33:54Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json index 128aa9ef539cf..f2255eb570bd3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "100", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1b104842e682dc49a56ba00d9fde2042-7fa50595764d5d47-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-a09f553613e35541bd1473b1ad1c19f2-7926584757997548-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e51cbf87a321df02032925de5e6708b4", "x-ms-return-client-request-id": "true" }, @@ -30,84 +24,162 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "2ba9ea7d-4504-4602-9692-85c33df27e9b", - "Date": "Mon, 09 Nov 2020 21:49:42 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a695d0de-79cc-48a3-bcdd-5fe8eafc5a33", + "apim-request-id": "7989dac8-a685-47cb-aa24-effa5e83bb77", + "Date": "Thu, 12 Nov 2020 19:33:07 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e0e0db40-7da4-45b3-9209-058209ec1787", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "80" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "81" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a695d0de-79cc-48a3-bcdd-5fe8eafc5a33?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e0e0db40-7da4-45b3-9209-058209ec1787?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "2cdb69530701f208f175aa6a97e2593b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "74618b1c-b3e2-4171-8c14-0a04635b67bd", + "apim-request-id": "c5a93342-be87-4794-8338-f523c18e5376", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:42 GMT", + "Date": "Thu, 12 Nov 2020 19:33:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "a695d0de-79cc-48a3-bcdd-5fe8eafc5a33", - "lastUpdateDateTime": "2020-11-09T21:49:43Z", - "createdDateTime": "2020-11-09T21:49:43Z", - "expirationDateTime": "2020-11-10T21:49:43Z", + "jobId": "e0e0db40-7da4-45b3-9209-058209ec1787", + "lastUpdateDateTime": "2020-11-12T19:33:07Z", + "createdDateTime": "2020-11-12T19:33:07Z", + "expirationDateTime": "2020-11-13T19:33:07Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a695d0de-79cc-48a3-bcdd-5fe8eafc5a33?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e0e0db40-7da4-45b3-9209-058209ec1787?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a701cb20bb11a529608aebe12f36a48e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3a6bcab7-a9d8-41d2-bf97-3a8b65b89dbe", + "apim-request-id": "391350ef-bb26-4a0d-870d-cb6fe3f802c4", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:43 GMT", + "Date": "Thu, 12 Nov 2020 19:33:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { - "jobId": "a695d0de-79cc-48a3-bcdd-5fe8eafc5a33", - "lastUpdateDateTime": "2020-11-09T21:49:43Z", - "createdDateTime": "2020-11-09T21:49:43Z", - "expirationDateTime": "2020-11-10T21:49:43Z", + "jobId": "e0e0db40-7da4-45b3-9209-058209ec1787", + "lastUpdateDateTime": "2020-11-12T19:33:07Z", + "createdDateTime": "2020-11-12T19:33:07Z", + "expirationDateTime": "2020-11-13T19:33:07Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e0e0db40-7da4-45b3-9209-058209ec1787?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "03c09e10ea8d7fc1b629f4abf8984821", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "1b7a1ca9-22d2-4890-9478-005162f0f25b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:33:09 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": "e0e0db40-7da4-45b3-9209-058209ec1787", + "lastUpdateDateTime": "2020-11-12T19:33:07Z", + "createdDateTime": "2020-11-12T19:33:07Z", + "expirationDateTime": "2020-11-13T19:33:07Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e0e0db40-7da4-45b3-9209-058209ec1787?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "93bde9d0616598a24035cb771c26c3ba", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7ec20211-e6a4-4b8a-8930-defe7dcddd97", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:33:11 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": "e0e0db40-7da4-45b3-9209-058209ec1787", + "lastUpdateDateTime": "2020-11-12T19:33:10Z", + "createdDateTime": "2020-11-12T19:33:07Z", + "expirationDateTime": "2020-11-13T19:33:07Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e0e0db40-7da4-45b3-9209-058209ec1787?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "f8591cd0562136ad0a82f0e8c77dacc7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "4ba5ee36-bd33-4adb-9b56-78417d7cef88", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:33:12 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "29" + }, + "ResponseBody": { + "jobId": "e0e0db40-7da4-45b3-9209-058209ec1787", + "lastUpdateDateTime": "2020-11-12T19:33:11Z", + "createdDateTime": "2020-11-12T19:33:07Z", + "expirationDateTime": "2020-11-13T19:33:07Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json index 9c40b6f60e456..427080748abc1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "100", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-31c48369891d7249a1e971357bb8b78d-7d45a25c2d18914e-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-d211e426e610bb458a915b0765730f9d-5d81ad9dd217af43-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "acdb13842ca5b9295fa84adf0c4870a8", "x-ms-return-client-request-id": "true" }, @@ -30,84 +24,162 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "5af1d4ee-8a30-4db5-b73c-334b62be7d67", - "Date": "Mon, 09 Nov 2020 21:50:09 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4c06a0ee-4cf0-4da1-b647-22129ff77b1d", + "apim-request-id": "a1a96905-4480-404b-8ee3-7a70035b9e39", + "Date": "Thu, 12 Nov 2020 19:33:56 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/90704182-010a-4b15-b21c-4ceba6d39d03", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "61" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "85" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4c06a0ee-4cf0-4da1-b647-22129ff77b1d?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/90704182-010a-4b15-b21c-4ceba6d39d03?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1181511460ff1ed085a4ba80632c2cfd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3d26a2c8-e027-4f02-abad-4229ad50630e", + "apim-request-id": "f70e569d-1e89-411b-bbbe-f2ac2b4bf61b", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:50:09 GMT", + "Date": "Thu, 12 Nov 2020 19:33:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "4c06a0ee-4cf0-4da1-b647-22129ff77b1d", - "lastUpdateDateTime": "2020-11-09T21:50:10Z", - "createdDateTime": "2020-11-09T21:50:10Z", - "expirationDateTime": "2020-11-10T21:50:10Z", + "jobId": "90704182-010a-4b15-b21c-4ceba6d39d03", + "lastUpdateDateTime": "2020-11-12T19:33:57Z", + "createdDateTime": "2020-11-12T19:33:57Z", + "expirationDateTime": "2020-11-13T19:33:57Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4c06a0ee-4cf0-4da1-b647-22129ff77b1d?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/90704182-010a-4b15-b21c-4ceba6d39d03?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d0605b7dc709a544ca5e0c1b0401dc1e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f98f9720-6d6e-45d7-a551-d35592c94103", + "apim-request-id": "88ba59c7-459a-4309-87ed-decc9657eac0", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:50:11 GMT", + "Date": "Thu, 12 Nov 2020 19:33:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "90704182-010a-4b15-b21c-4ceba6d39d03", + "lastUpdateDateTime": "2020-11-12T19:33:57Z", + "createdDateTime": "2020-11-12T19:33:57Z", + "expirationDateTime": "2020-11-13T19:33:57Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/90704182-010a-4b15-b21c-4ceba6d39d03?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "b5e59345e53b24c743bd270071a85633", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "63d49ff7-b235-4807-be86-2847cb270d48", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:33:59 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": "90704182-010a-4b15-b21c-4ceba6d39d03", + "lastUpdateDateTime": "2020-11-12T19:33:57Z", + "createdDateTime": "2020-11-12T19:33:57Z", + "expirationDateTime": "2020-11-13T19:33:57Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/90704182-010a-4b15-b21c-4ceba6d39d03?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "b0624d7ba0e84c9f0cdc46a153b41a84", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d40e1afc-42d8-4c09-9e6a-502263017936", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:34:01 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": "90704182-010a-4b15-b21c-4ceba6d39d03", + "lastUpdateDateTime": "2020-11-12T19:34:01Z", + "createdDateTime": "2020-11-12T19:33:57Z", + "expirationDateTime": "2020-11-13T19:33:57Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/90704182-010a-4b15-b21c-4ceba6d39d03?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "d03b9cc7774697c2943b8c4ca0433322", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "0b17a094-142f-46f0-b6c6-dba2743e38b8", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:34:02 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { - "jobId": "4c06a0ee-4cf0-4da1-b647-22129ff77b1d", - "lastUpdateDateTime": "2020-11-09T21:50:11Z", - "createdDateTime": "2020-11-09T21:50:10Z", - "expirationDateTime": "2020-11-10T21:50:10Z", + "jobId": "90704182-010a-4b15-b21c-4ceba6d39d03", + "lastUpdateDateTime": "2020-11-12T19:34:01Z", + "createdDateTime": "2020-11-12T19:33:57Z", + "expirationDateTime": "2020-11-13T19:33:57Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json index 32f2326146163..0cc63ca6b5e2e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "100", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-97f706f29745c74f97bc7eb9e27a0280-56e97eded0613642-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-4f24009deee94e4fb8e410fe9d2edd0e-49dbc89ac71d4545-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "0e649e128b084513c9c62e584c5f813b", "x-ms-return-client-request-id": "true" }, @@ -30,120 +24,132 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "295a09f3-9a30-41f5-b05f-2975295d606c", - "Date": "Mon, 09 Nov 2020 21:49:43 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6c871257-8616-4be7-8f2e-23cb938f806f", + "apim-request-id": "6946d123-1a9e-4463-89a4-897803fc0e00", + "Date": "Thu, 12 Nov 2020 19:33:12 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6f414e51-813f-4d94-b37b-950bb913dfe5", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "79" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6c871257-8616-4be7-8f2e-23cb938f806f?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6f414e51-813f-4d94-b37b-950bb913dfe5?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "796705c1528f3adf8bba34f0a8f2bd37", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f083c525-e0a0-4fcc-a66a-840550423d86", + "apim-request-id": "ac951ba5-13fd-4c5e-9fcd-6c84b98eb489", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:45 GMT", + "Date": "Thu, 12 Nov 2020 19:33:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "6c871257-8616-4be7-8f2e-23cb938f806f", - "lastUpdateDateTime": "2020-11-09T21:49:44Z", - "createdDateTime": "2020-11-09T21:49:44Z", - "expirationDateTime": "2020-11-10T21:49:44Z", + "jobId": "6f414e51-813f-4d94-b37b-950bb913dfe5", + "lastUpdateDateTime": "2020-11-12T19:33:12Z", + "createdDateTime": "2020-11-12T19:33:12Z", + "expirationDateTime": "2020-11-13T19:33:12Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6c871257-8616-4be7-8f2e-23cb938f806f?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6f414e51-813f-4d94-b37b-950bb913dfe5?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "740ea8ad2ce006c130b149d1ae645358", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bd0bbf54-fd76-481d-85d6-a73936bfb8c2", + "apim-request-id": "054c80cf-644a-440b-a957-6379b411e17f", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:46 GMT", + "Date": "Thu, 12 Nov 2020 19:33:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "6c871257-8616-4be7-8f2e-23cb938f806f", - "lastUpdateDateTime": "2020-11-09T21:49:44Z", - "createdDateTime": "2020-11-09T21:49:44Z", - "expirationDateTime": "2020-11-10T21:49:44Z", + "jobId": "6f414e51-813f-4d94-b37b-950bb913dfe5", + "lastUpdateDateTime": "2020-11-12T19:33:12Z", + "createdDateTime": "2020-11-12T19:33:12Z", + "expirationDateTime": "2020-11-13T19:33:12Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6c871257-8616-4be7-8f2e-23cb938f806f?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6f414e51-813f-4d94-b37b-950bb913dfe5?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "07effce6ecdcc068be2a834d57229cd7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7f66e823-f0a3-488f-b730-166e54ab1cb9", + "apim-request-id": "379674d7-7f67-4c76-8fb1-c52d553006bf", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:33:15 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": "6f414e51-813f-4d94-b37b-950bb913dfe5", + "lastUpdateDateTime": "2020-11-12T19:33:12Z", + "createdDateTime": "2020-11-12T19:33:12Z", + "expirationDateTime": "2020-11-13T19:33:12Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6f414e51-813f-4d94-b37b-950bb913dfe5?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "a4abf7090d51955a436148dd080e8c26", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d316767c-7704-4650-870e-00d42c36e556", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:47 GMT", + "Date": "Thu, 12 Nov 2020 19:33:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "88" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { - "jobId": "6c871257-8616-4be7-8f2e-23cb938f806f", - "lastUpdateDateTime": "2020-11-09T21:49:46Z", - "createdDateTime": "2020-11-09T21:49:44Z", - "expirationDateTime": "2020-11-10T21:49:44Z", + "jobId": "6f414e51-813f-4d94-b37b-950bb913dfe5", + "lastUpdateDateTime": "2020-11-12T19:33:16Z", + "createdDateTime": "2020-11-12T19:33:12Z", + "expirationDateTime": "2020-11-13T19:33:12Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json index 5224f6b15923a..24acf774d51c3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "100", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-81bf0ee24aaa9c40b2984ae52c6f9eeb-9bb21b532056994c-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-c1992284f46ad74e859893e4971d0801-2aea754b02c7a74d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ac50657e0564f29f4cf677ed0a13f18a", "x-ms-return-client-request-id": "true" }, @@ -30,120 +24,132 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "89d74858-64b7-46c7-8be6-2d0e9b9ca863", - "Date": "Mon, 09 Nov 2020 21:50:11 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0bcc3617-bef1-42c8-9093-1aa92720a81a", + "apim-request-id": "c8b5cc46-522b-462c-9720-11261c411b52", + "Date": "Thu, 12 Nov 2020 19:34:02 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/f2fb2a57-f251-47f9-b187-60e56d27adca", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "79" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "83" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0bcc3617-bef1-42c8-9093-1aa92720a81a?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/f2fb2a57-f251-47f9-b187-60e56d27adca?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ee06e8ec9851bf144fa0b3348eac9147", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0b2fed10-18ae-4526-a250-a73018c93ce3", + "apim-request-id": "d52d582d-0069-4a00-aab3-0bd510b5b336", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:50:11 GMT", + "Date": "Thu, 12 Nov 2020 19:34:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "0bcc3617-bef1-42c8-9093-1aa92720a81a", - "lastUpdateDateTime": "2020-11-09T21:50:12Z", - "createdDateTime": "2020-11-09T21:50:12Z", - "expirationDateTime": "2020-11-10T21:50:12Z", + "jobId": "f2fb2a57-f251-47f9-b187-60e56d27adca", + "lastUpdateDateTime": "2020-11-12T19:34:02Z", + "createdDateTime": "2020-11-12T19:34:02Z", + "expirationDateTime": "2020-11-13T19:34:02Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0bcc3617-bef1-42c8-9093-1aa92720a81a?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/f2fb2a57-f251-47f9-b187-60e56d27adca?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c56f00a8f06aed051c550a52700d0abf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d5636424-cf04-4619-9653-c32faaa082ca", + "apim-request-id": "122cbdc3-e7d7-4403-b6a0-c3989fe9d8d2", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:50:13 GMT", + "Date": "Thu, 12 Nov 2020 19:34:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "0bcc3617-bef1-42c8-9093-1aa92720a81a", - "lastUpdateDateTime": "2020-11-09T21:50:12Z", - "createdDateTime": "2020-11-09T21:50:12Z", - "expirationDateTime": "2020-11-10T21:50:12Z", + "jobId": "f2fb2a57-f251-47f9-b187-60e56d27adca", + "lastUpdateDateTime": "2020-11-12T19:34:02Z", + "createdDateTime": "2020-11-12T19:34:02Z", + "expirationDateTime": "2020-11-13T19:34:02Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0bcc3617-bef1-42c8-9093-1aa92720a81a?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/f2fb2a57-f251-47f9-b187-60e56d27adca?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c9cabda7fe2ee58e51915dc3526b639f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4e7334b7-ba5d-4a96-b582-b558d35aa925", + "apim-request-id": "d20e7854-3f2e-47a8-92cf-89dc1beaa170", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:34:05 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": "f2fb2a57-f251-47f9-b187-60e56d27adca", + "lastUpdateDateTime": "2020-11-12T19:34:02Z", + "createdDateTime": "2020-11-12T19:34:02Z", + "expirationDateTime": "2020-11-13T19:34:02Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/f2fb2a57-f251-47f9-b187-60e56d27adca?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "094430652ca3fb20e319d1fb8ec14f41", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ca2e98a3-430d-4702-94ed-a4266b434691", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:50:14 GMT", + "Date": "Thu, 12 Nov 2020 19:34:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "33" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { - "jobId": "0bcc3617-bef1-42c8-9093-1aa92720a81a", - "lastUpdateDateTime": "2020-11-09T21:50:13Z", - "createdDateTime": "2020-11-09T21:50:12Z", - "expirationDateTime": "2020-11-10T21:50:12Z", + "jobId": "f2fb2a57-f251-47f9-b187-60e56d27adca", + "lastUpdateDateTime": "2020-11-12T19:34:06Z", + "createdDateTime": "2020-11-12T19:34:02Z", + "expirationDateTime": "2020-11-13T19:34:02Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json index f70b122f2dedc..0e930b94fc5d1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fd96e62513787945b55c2159ecc52deb-2b5c70a52bbe8849-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-13307dc2c6584d41a354099ec23cc609-e162c6175764b344-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e5bbee521fd95f6f85d46045340cc5e0", "x-ms-return-client-request-id": "true" }, @@ -35,84 +29,162 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "59e50d64-0bab-4b38-acec-9bd8137bd7e7", - "Date": "Mon, 09 Nov 2020 21:49:47 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/36202e35-1c30-47ad-8405-e395616c4940", + "apim-request-id": "4c300dc5-0d6a-4b3f-a91f-ee3423a15dad", + "Date": "Thu, 12 Nov 2020 19:33:16 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1501206f-c7af-42be-882e-f0d8fd2af684", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "104" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "83" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/36202e35-1c30-47ad-8405-e395616c4940?$skip=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1501206f-c7af-42be-882e-f0d8fd2af684?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "cb3ef020b17077b8ee6ec139b3f21813", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8aeb718f-46e5-4e38-a21b-dc78cb251abd", + "apim-request-id": "362b2b88-bdac-4593-a223-9efa1f86b5dc", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:47 GMT", + "Date": "Thu, 12 Nov 2020 19:33:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "36202e35-1c30-47ad-8405-e395616c4940", - "lastUpdateDateTime": "2020-11-09T21:49:47Z", - "createdDateTime": "2020-11-09T21:49:47Z", - "expirationDateTime": "2020-11-10T21:49:47Z", + "jobId": "1501206f-c7af-42be-882e-f0d8fd2af684", + "lastUpdateDateTime": "2020-11-12T19:33:17Z", + "createdDateTime": "2020-11-12T19:33:17Z", + "expirationDateTime": "2020-11-13T19:33:17Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/36202e35-1c30-47ad-8405-e395616c4940?$skip=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1501206f-c7af-42be-882e-f0d8fd2af684?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "beccfc644b839adbc9a8ce8f926f328c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d8a82481-e2bd-4c9c-9353-75ccb7b51a22", + "apim-request-id": "920ff92b-bc6a-466c-9633-2d275f8b9f41", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:49 GMT", + "Date": "Thu, 12 Nov 2020 19:33:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "133" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" + }, + "ResponseBody": { + "jobId": "1501206f-c7af-42be-882e-f0d8fd2af684", + "lastUpdateDateTime": "2020-11-12T19:33:17Z", + "createdDateTime": "2020-11-12T19:33:17Z", + "expirationDateTime": "2020-11-13T19:33:17Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1501206f-c7af-42be-882e-f0d8fd2af684?$skip=1\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "8af430b30bf8a15e3644f66a5d35ac92", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b3a10937-bbca-4a9d-a490-530809913d4b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:33:19 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5" + }, + "ResponseBody": { + "jobId": "1501206f-c7af-42be-882e-f0d8fd2af684", + "lastUpdateDateTime": "2020-11-12T19:33:17Z", + "createdDateTime": "2020-11-12T19:33:17Z", + "expirationDateTime": "2020-11-13T19:33:17Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1501206f-c7af-42be-882e-f0d8fd2af684?$skip=1\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "38e04dbc073fd45c14a401c7e229e47f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b71162ee-36fb-447a-b97e-82d76f0d1b26", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:33:20 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": "1501206f-c7af-42be-882e-f0d8fd2af684", + "lastUpdateDateTime": "2020-11-12T19:33:17Z", + "createdDateTime": "2020-11-12T19:33:17Z", + "expirationDateTime": "2020-11-13T19:33:17Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1501206f-c7af-42be-882e-f0d8fd2af684?$skip=1\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "8286353c8dfe591a9d2a883e55713d94", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "53ce88e6-eaac-4b84-a43e-46d4ac9ce6d5", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:33:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { - "jobId": "36202e35-1c30-47ad-8405-e395616c4940", - "lastUpdateDateTime": "2020-11-09T21:49:48Z", - "createdDateTime": "2020-11-09T21:49:47Z", - "expirationDateTime": "2020-11-10T21:49:47Z", + "jobId": "1501206f-c7af-42be-882e-f0d8fd2af684", + "lastUpdateDateTime": "2020-11-12T19:33:21Z", + "createdDateTime": "2020-11-12T19:33:17Z", + "expirationDateTime": "2020-11-13T19:33:17Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json index 0c87e4dcbf96d..256df9285ddb2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ee9f274a9df7ea4e91103035107214fc-4d2f69393cbb0b4f-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-efb5be903ab9aa45b4c63ad08a174e48-1d45958231402447-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9e757d2d83ce1123a7e23fad5376473f", "x-ms-return-client-request-id": "true" }, @@ -35,120 +29,162 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "2206c920-643e-4841-904f-91104864357f", - "Date": "Mon, 09 Nov 2020 21:50:14 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c0fbd2dd-1530-4f2c-bc22-941a65de5a28", + "apim-request-id": "15e4b0b2-68ff-4792-be52-7df293d360ab", + "Date": "Thu, 12 Nov 2020 19:34:06 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e0b188e1-3b64-4c31-8e3d-1a726e6166a1", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "95" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "87" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c0fbd2dd-1530-4f2c-bc22-941a65de5a28?$skip=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e0b188e1-3b64-4c31-8e3d-1a726e6166a1?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "68a7733fd31f0864ffb638781102da48", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1599c106-63ee-4cf2-bbbb-9ac381a03fa6", + "apim-request-id": "ce47f0e5-aa68-4350-8a7d-433b718b55be", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:50:14 GMT", + "Date": "Thu, 12 Nov 2020 19:34:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "c0fbd2dd-1530-4f2c-bc22-941a65de5a28", - "lastUpdateDateTime": "2020-11-09T21:50:15Z", - "createdDateTime": "2020-11-09T21:50:15Z", - "expirationDateTime": "2020-11-10T21:50:15Z", + "jobId": "e0b188e1-3b64-4c31-8e3d-1a726e6166a1", + "lastUpdateDateTime": "2020-11-12T19:34:07Z", + "createdDateTime": "2020-11-12T19:34:07Z", + "expirationDateTime": "2020-11-13T19:34:07Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c0fbd2dd-1530-4f2c-bc22-941a65de5a28?$skip=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e0b188e1-3b64-4c31-8e3d-1a726e6166a1?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "39eac04aaed6996e7ea6b9f62c4a8897", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "876b0487-8184-4ce8-a561-28ac58038105", + "apim-request-id": "94b09868-4d4a-4615-abcb-c19842138dc5", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:50:16 GMT", + "Date": "Thu, 12 Nov 2020 19:34:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { - "jobId": "c0fbd2dd-1530-4f2c-bc22-941a65de5a28", - "lastUpdateDateTime": "2020-11-09T21:50:16Z", - "createdDateTime": "2020-11-09T21:50:15Z", - "expirationDateTime": "2020-11-10T21:50:15Z", - "status": "running", + "jobId": "e0b188e1-3b64-4c31-8e3d-1a726e6166a1", + "lastUpdateDateTime": "2020-11-12T19:34:07Z", + "createdDateTime": "2020-11-12T19:34:07Z", + "expirationDateTime": "2020-11-13T19:34:07Z", + "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c0fbd2dd-1530-4f2c-bc22-941a65de5a28?$skip=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e0b188e1-3b64-4c31-8e3d-1a726e6166a1?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "eaa1ba814c8b59b1196c9f174baaffa5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6fece74b-72d6-4f58-b4a3-32c80824a181", + "apim-request-id": "981d4b80-af7e-40d6-9cb6-6d4e13a015dd", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:34:09 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": "e0b188e1-3b64-4c31-8e3d-1a726e6166a1", + "lastUpdateDateTime": "2020-11-12T19:34:07Z", + "createdDateTime": "2020-11-12T19:34:07Z", + "expirationDateTime": "2020-11-13T19:34:07Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e0b188e1-3b64-4c31-8e3d-1a726e6166a1?$skip=1\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9263f6070e8c9068040de978196ddcb4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7e247201-d998-47bc-9af8-32be8dde6f8e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:34:11 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": "e0b188e1-3b64-4c31-8e3d-1a726e6166a1", + "lastUpdateDateTime": "2020-11-12T19:34:07Z", + "createdDateTime": "2020-11-12T19:34:07Z", + "expirationDateTime": "2020-11-13T19:34:07Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e0b188e1-3b64-4c31-8e3d-1a726e6166a1?$skip=1\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "57f7a12eef60fdbd0f901f6a0f564dd4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "e7792bc3-a91a-4f6e-92b1-abbf11ee6f73", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:50:17 GMT", + "Date": "Thu, 12 Nov 2020 19:34:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "52" }, "ResponseBody": { - "jobId": "c0fbd2dd-1530-4f2c-bc22-941a65de5a28", - "lastUpdateDateTime": "2020-11-09T21:50:16Z", - "createdDateTime": "2020-11-09T21:50:15Z", - "expirationDateTime": "2020-11-10T21:50:15Z", + "jobId": "e0b188e1-3b64-4c31-8e3d-1a726e6166a1", + "lastUpdateDateTime": "2020-11-12T19:34:11Z", + "createdDateTime": "2020-11-12T19:34:07Z", + "expirationDateTime": "2020-11-13T19:34:07Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json index 6ac02b24f869c..8d92aec0ca023 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-65657d3d8d812b449c45121d69575408-8ffaa8b00a913f4f-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-37ca53d49f90f040892f209d7efc6758-c98981f4fb4be341-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8efbb01e5acc858dcd1ff153470e4093", "x-ms-return-client-request-id": "true" }, @@ -35,120 +29,132 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "d816fd5e-d85d-48b9-b76f-627dd9f20cc0", - "Date": "Mon, 09 Nov 2020 21:49:49 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ae221358-513b-47a1-accc-3fbe4fd5d360", + "apim-request-id": "c23d593d-96a2-4ac6-9418-7e1138de2d74", + "Date": "Thu, 12 Nov 2020 19:33:22 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c94034c0-b848-495c-b2b4-f7e4b93f8b13", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "75" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "124" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ae221358-513b-47a1-accc-3fbe4fd5d360?$top=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c94034c0-b848-495c-b2b4-f7e4b93f8b13?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "2660bb690f1e14745ff6a5df3888e782", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2aac0e10-cd33-4ace-bab3-f4e1a168dc65", + "apim-request-id": "a9176164-fe52-4704-bc0f-d3873a38b60e", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:49 GMT", + "Date": "Thu, 12 Nov 2020 19:33:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "ae221358-513b-47a1-accc-3fbe4fd5d360", - "lastUpdateDateTime": "2020-11-09T21:49:49Z", - "createdDateTime": "2020-11-09T21:49:49Z", - "expirationDateTime": "2020-11-10T21:49:49Z", + "jobId": "c94034c0-b848-495c-b2b4-f7e4b93f8b13", + "lastUpdateDateTime": "2020-11-12T19:33:22Z", + "createdDateTime": "2020-11-12T19:33:22Z", + "expirationDateTime": "2020-11-13T19:33:22Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ae221358-513b-47a1-accc-3fbe4fd5d360?$top=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c94034c0-b848-495c-b2b4-f7e4b93f8b13?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4c0a13cbdad64cf8d7c97184a7f98e05", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "541f81b6-87c1-485d-ba23-900eb31decd0", + "apim-request-id": "c4f71182-c730-4fec-bf90-a81069cf9849", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:50 GMT", + "Date": "Thu, 12 Nov 2020 19:33:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "9" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "ae221358-513b-47a1-accc-3fbe4fd5d360", - "lastUpdateDateTime": "2020-11-09T21:49:49Z", - "createdDateTime": "2020-11-09T21:49:49Z", - "expirationDateTime": "2020-11-10T21:49:49Z", + "jobId": "c94034c0-b848-495c-b2b4-f7e4b93f8b13", + "lastUpdateDateTime": "2020-11-12T19:33:22Z", + "createdDateTime": "2020-11-12T19:33:22Z", + "expirationDateTime": "2020-11-13T19:33:22Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ae221358-513b-47a1-accc-3fbe4fd5d360?$top=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c94034c0-b848-495c-b2b4-f7e4b93f8b13?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "89adbdfd593e0f483ce62ed6b5ad4d44", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "22372f1f-f89d-4d83-8db2-107574e87e00", + "apim-request-id": "2a57845b-3585-4332-9457-eee761b6f992", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:49:52 GMT", + "Date": "Thu, 12 Nov 2020 19:33:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "31" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "ae221358-513b-47a1-accc-3fbe4fd5d360", - "lastUpdateDateTime": "2020-11-09T21:49:51Z", - "createdDateTime": "2020-11-09T21:49:49Z", - "expirationDateTime": "2020-11-10T21:49:49Z", + "jobId": "c94034c0-b848-495c-b2b4-f7e4b93f8b13", + "lastUpdateDateTime": "2020-11-12T19:33:22Z", + "createdDateTime": "2020-11-12T19:33:22Z", + "expirationDateTime": "2020-11-13T19:33:22Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c94034c0-b848-495c-b2b4-f7e4b93f8b13?$top=1\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "34876f37f3038fbdc3134f559df06d66", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c145483f-5b7d-42cd-9fd3-90f0942b21fe", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:33:26 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "36" + }, + "ResponseBody": { + "jobId": "c94034c0-b848-495c-b2b4-f7e4b93f8b13", + "lastUpdateDateTime": "2020-11-12T19:33:26Z", + "createdDateTime": "2020-11-12T19:33:22Z", + "expirationDateTime": "2020-11-13T19:33:22Z", "status": "succeeded", "errors": [], "results": { @@ -323,7 +329,7 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ae221358-513b-47a1-accc-3fbe4fd5d360?$skip=1\u0026$top=1" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c94034c0-b848-495c-b2b4-f7e4b93f8b13?$skip=1\u0026$top=1" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json index ebd856b88fa88..988fff25cb753 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f00873f09645bd48a9e67718ce105e48-7b1e2eae43d9374b-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-419b4c0906a6064ab063d4db0f3cc2dd-a73fa58c764f8843-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "724372daad48480e76510121b5839b2e", "x-ms-return-client-request-id": "true" }, @@ -35,84 +29,132 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "4d23c21a-d3e5-4b13-9401-b552acc40c2a", - "Date": "Mon, 09 Nov 2020 21:50:17 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c28c2a51-fd08-4f12-b306-ce5f3b589d84", + "apim-request-id": "6a82cd15-e8f8-403c-8ce3-eed6e6629638", + "Date": "Thu, 12 Nov 2020 19:34:12 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4a1157b9-2367-4883-aeba-4fac4c759100", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "103" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "96" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c28c2a51-fd08-4f12-b306-ce5f3b589d84?$top=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4a1157b9-2367-4883-aeba-4fac4c759100?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "934d972f1ac830d592026d8c2beeac11", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cd6312c7-3ff9-4e01-a424-5d6485e9c1fb", + "apim-request-id": "b358cdb5-c0db-4847-8840-8dc84ab0ca3c", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:50:17 GMT", + "Date": "Thu, 12 Nov 2020 19:34:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "c28c2a51-fd08-4f12-b306-ce5f3b589d84", - "lastUpdateDateTime": "2020-11-09T21:50:18Z", - "createdDateTime": "2020-11-09T21:50:18Z", - "expirationDateTime": "2020-11-10T21:50:18Z", + "jobId": "4a1157b9-2367-4883-aeba-4fac4c759100", + "lastUpdateDateTime": "2020-11-12T19:34:12Z", + "createdDateTime": "2020-11-12T19:34:12Z", + "expirationDateTime": "2020-11-13T19:34:12Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c28c2a51-fd08-4f12-b306-ce5f3b589d84?$top=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4a1157b9-2367-4883-aeba-4fac4c759100?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201109.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "ceb201b6e72887166038d111abceeca7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0759bde0-fd8b-4847-b83e-d07830afb583", + "apim-request-id": "3ed8baa1-9dca-40af-8a0c-6231dbc8fcfd", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 09 Nov 2020 21:50:19 GMT", + "Date": "Thu, 12 Nov 2020 19:34:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "c28c2a51-fd08-4f12-b306-ce5f3b589d84", - "lastUpdateDateTime": "2020-11-09T21:50:18Z", - "createdDateTime": "2020-11-09T21:50:18Z", - "expirationDateTime": "2020-11-10T21:50:18Z", + "jobId": "4a1157b9-2367-4883-aeba-4fac4c759100", + "lastUpdateDateTime": "2020-11-12T19:34:12Z", + "createdDateTime": "2020-11-12T19:34:12Z", + "expirationDateTime": "2020-11-13T19:34:12Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4a1157b9-2367-4883-aeba-4fac4c759100?$top=1\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "9e71f8d80ef6c0f19d12df4640821c87", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c913834a-9653-430a-95e2-d21dce91edbc", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:34:15 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": "4a1157b9-2367-4883-aeba-4fac4c759100", + "lastUpdateDateTime": "2020-11-12T19:34:12Z", + "createdDateTime": "2020-11-12T19:34:12Z", + "expirationDateTime": "2020-11-13T19:34:12Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4a1157b9-2367-4883-aeba-4fac4c759100?$top=1\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json, text/json", + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "x-ms-client-request-id": "b36aefa4ccd1470681c5338f48c485c4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2de350f5-2e15-4af9-815b-51fd058be8b1", + "Content-Type": "application/json; charset=utf-8", + "Date": "Thu, 12 Nov 2020 19:34:16 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": { + "jobId": "4a1157b9-2367-4883-aeba-4fac4c759100", + "lastUpdateDateTime": "2020-11-12T19:34:16Z", + "createdDateTime": "2020-11-12T19:34:12Z", + "expirationDateTime": "2020-11-13T19:34:12Z", "status": "succeeded", "errors": [], "results": { @@ -287,7 +329,7 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c28c2a51-fd08-4f12-b306-ce5f3b589d84?$skip=1\u0026$top=1" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4a1157b9-2367-4883-aeba-4fac4c759100?$skip=1\u0026$top=1" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json index 9909d2c8a0331..0a6bb1180fbcb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a30dec07fc6b344e8a998cc2d45571df-d4d0643d5eef1c43-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-3ca4650a88246a43863bad73734f6c31-fc4818d5ba4eae4d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d727f8b3ab5caeec2a15d6a3b1743ade", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d7fc6384-91f9-446f-bea5-3ef308d0d486", + "apim-request-id": "0174453c-9c80-46c9-be77-885fdb4bb8f0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:53:38 GMT", + "Date": "Thu, 12 Nov 2020 19:34:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json index cfef0bf0357ed..a68fd4e32d3b2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-60f2ac27f9ac9e48b1ec2eef54ebece3-bc2ea109efdffd4c-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-e5f70eb47348ba48ae4c89806f75b666-33f29f19031a2944-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "476534efbdc7cda5ab406b046713b5b6", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "54d986e6-d251-43f7-8407-fff01d1fb0c0", + "apim-request-id": "87cba5a7-a04b-4caa-9259-10980e103a77", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:53:41 GMT", + "Date": "Thu, 12 Nov 2020 19:34:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "18" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json index 54a7997127ac6..7367cc695f020 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-db3526ec2190494fa21fb672174769b0-201bb9106e67e748-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-d77cf1ff415e3149bbbac4ad4999083d-e644fcc11558ae40-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "297e980ed9e8189820ebd45ff129bc5c", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3bbfb088-5adc-4038-b39e-4132570b4cc9", + "apim-request-id": "d277cb16-23c2-4489-869d-c0b49df0d0df", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:53:38 GMT", + "Date": "Thu, 12 Nov 2020 19:34:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json index adcb0dbb0f59a..99b42c3fb1b5e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e617ad3c2af4aa4db2b33f0fbb8a02c6-cb6ad4db8eebb943-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-aff2879fbf517e4280c7b666c821b461-983e0a03d3b69d4f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "efbfe45b25f6d2a2775e1edd2fe4e7aa", "x-ms-return-client-request-id": "true" }, @@ -35,13 +29,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6b5ba48a-b17b-4dca-9137-16a1aba8d85b", + "apim-request-id": "007e1ca6-febe-4516-a5e1-dc9e3f15d0f5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:53:41 GMT", + "Date": "Thu, 12 Nov 2020 19:34:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "21" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json index 15fe86d0f4d21..ea3db61c73649 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2dae1b97f1f2e44e92cb783eb65ee62d-f71068d9ba00694d-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-0aedc0e18b83b042b11ddbab620c7ac7-87ec6e7949c80b4e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "70aff255bc0a587f23734ec6facb2924", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3dd6af75-634f-43b0-a451-74bcfed3fcf9", + "apim-request-id": "452fc603-4c3b-4cce-bb40-e1cc47c18af5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:53:38 GMT", + "Date": "Thu, 12 Nov 2020 19:34:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json index 184f301be2278..e98c35ac50199 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f267a33233800b43b60ad8e6826e5de3-6e5d64a39e7f4d44-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-5c445a51a8f7424786ef205ada6ac8b0-8fd88c9dabe2b046-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b6c8d0c26960e1039b6b5addff48c5fe", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "825941f9-3d32-468f-9a03-de4ff761d241", + "apim-request-id": "e0701df6-905b-4565-a8be-d3f13819743a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:53:41 GMT", + "Date": "Thu, 12 Nov 2020 19:34:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json index 2f2a361d51c16..d158b009fd3bb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "229", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dc9c42348f19fe42983cac5877c35d0b-0e993f1957865943-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-c0ec2f5685618d42992a9918de82ab1b-2add9e623a927643-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1199dc8afc6a0ac5f0743171c35d6934", "x-ms-return-client-request-id": "true" }, @@ -40,13 +34,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8825ef6e-682c-4c2b-9a5d-38a41a120894", + "apim-request-id": "578f0768-876e-4ca9-9d42-9d4fe3b848e0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:53:38 GMT", + "Date": "Thu, 12 Nov 2020 19:34:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "22" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json index e34f425444cfd..5fa00550a5a45 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "229", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9b2299f4c3b958438301a4e9108ec715-4734819a44e28547-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-01ed7bc253dc8b4e872ea5824aa51162-a8274a639142344a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4f030e46456aaab2ab975c8325cfab86", "x-ms-return-client-request-id": "true" }, @@ -40,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "60fb0f5d-8548-4a05-ac6d-23ec3166a627", + "apim-request-id": "db9d6740-2305-47d2-b301-0b17a1562e07", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:53:41 GMT", + "Date": "Thu, 12 Nov 2020 19:34:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "22" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json index f59cf3f265317..38875341e1183 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "561", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-967bcef8806c474f83ec1ebfcd919521-c9ca05b00db0d743-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-f213df335e01084fa72c26f7ec573cbf-c1a4614262d2e345-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "192c3c1f91647770ee90b0e32a189a79", "x-ms-return-client-request-id": "true" }, @@ -55,13 +49,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "b467ea42-971b-4183-aad2-20d90dc4157e", + "apim-request-id": "ac043562-2f64-4fcf-a167-515fb7a84a5d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 05 Nov 2020 20:53:39 GMT", + "Date": "Thu, 12 Nov 2020 19:34:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json index 16ad762ac8aae..fdb595f7a1568 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "561", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4cd39ebc30e22a439e2d327c2c01dea7-2824a7a12fe64243-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-e91f4de9b17461409f485cafc8d40fbe-1c20a63a1eee184a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "aa01d6b77b2b2d76ec0e72d5ad5d4024", "x-ms-return-client-request-id": "true" }, @@ -55,13 +49,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "d6f1e731-627b-4065-b451-ea105efc898a", + "apim-request-id": "2bcffdc4-e048-4482-960a-91851aa6250b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 05 Nov 2020 20:53:41 GMT", + "Date": "Thu, 12 Nov 2020 19:34:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json index 3a23079a38642..4716318c30aa9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-275e5c642baaff41872f863265ef024d-b32addd06c835e41-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-b6fbbe67333ea54d8a343f13b8d06ee8-956fedfecd71214d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "39e775856c33e5040de74ed9f57d5d06", "x-ms-return-client-request-id": "true" }, @@ -30,13 +24,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "03b6be35-18ea-4ce5-b782-b2fad5b141dc", + "apim-request-id": "47f83492-dfe2-4b68-baa1-521da44b52ee", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 05 Nov 2020 20:53:39 GMT", + "Date": "Thu, 12 Nov 2020 19:34:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json index 2ee0b417cf909..06740b49eb9de 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-57db300e367f9642970a8acc723913c7-1b89c768a786fd41-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-b03c7c6294e8564bb935ec3c3d727bbb-470bfeae20b13749-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9f2af246abde141d1e5ee3f98d0120cc", "x-ms-return-client-request-id": "true" }, @@ -30,13 +24,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "48c1de13-bc02-464f-9534-164974caa998", + "apim-request-id": "6422ff02-249c-4cec-8c69-d9334a375466", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 05 Nov 2020 20:53:41 GMT", + "Date": "Thu, 12 Nov 2020 19:34:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json index 653f357ca37ef..6d60c04793877 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6ffa896628c44544ac77584afdae3ee8-32fa4fe64cf0b34c-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-716e194a612a9949b95d142c70a2b3f4-1fd86dc988c15f4d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "73d297ac9bb0c1f746fd7bde1da9241c", "x-ms-return-client-request-id": "true" }, @@ -30,13 +24,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8556c319-1b97-400c-89bd-631378750d0b", + "apim-request-id": "3ae86983-d51f-4e7f-8d32-04a96698b59e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 05 Nov 2020 20:53:39 GMT", + "Date": "Thu, 12 Nov 2020 19:34:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "2" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json index daa64fdb573d0..1b9b2ae72a219 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8556fef1ddbafa4d9ae1fe695116f3ca-c233edc158479042-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-bbc388a93a02834795335507eaaa960e-6bda62acfd75fb4b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "eb53c4f0f4de762a1a8dd9e931cc3cf8", "x-ms-return-client-request-id": "true" }, @@ -30,12 +24,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7892a6b7-731a-48ac-a840-4e80074a2e2c", + "apim-request-id": "01eef409-7541-483a-ab99-4f4e123fdb03", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 05 Nov 2020 20:53:42 GMT", + "Date": "Thu, 12 Nov 2020 19:34:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "2" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json index c2665e96ea47d..aa9ad76d24cdc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-17c9b9508dc15e47b9a874bfd32213c7-b452dd4c3f03294e-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-b19923a1162a9349bdcfe07693c223e3-7d0c465cc8ce5640-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "07178a1f00e9eae492911a1486f7f75f", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b7db142f-19a9-4c6c-be43-b4377c6f749a", + "apim-request-id": "493545fe-9335-42ab-b538-3928bc04b515", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:53:39 GMT", + "Date": "Thu, 12 Nov 2020 19:34:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json index ba67e3a2c5186..3e688b1e50e2c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-045d01ea0ed02542b45d558ff6ffe4a7-4dac72bbd3553449-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-dfd45d7db53e5e49891b34d5b0aa6b52-6c911dec880fc041-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c81f2c7c8424b466b144609b6251448a", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0085dae7-3e0c-4298-937f-080808075f15", + "apim-request-id": "c0310da9-9829-4b4f-a272-832c44684fbf", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:53:42 GMT", + "Date": "Thu, 12 Nov 2020 19:34:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json index 55093806b2c13..370bd61fc9b3c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9f48e40bf8001e4eaf004410645f5b2e-fed70cc72b6e1e4f-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-c268df962bb70047b22b71a7e83fc348-7d6e967e142b334e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "5dbd0e4d74f1991eb1c26555a87606e8", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "348e90a2-5117-4181-88bc-27cfa9683981", + "apim-request-id": "462246be-26e3-434c-8385-203fdf909391", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:53:39 GMT", + "Date": "Thu, 12 Nov 2020 19:34:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json index b372b2b7d9722..2a962787f69a0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-99e3bd2b7905b74896bb19c1658437f9-7ca8e57d80e6184b-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-91f1c17498912d4e9151e1f4f2f12409-bdeac1097f11e04b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "552924120f9751fcf8de062c168ba5ca", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2dca06df-02d6-4623-aeb8-674edcadecb7", + "apim-request-id": "b35d4608-9980-4f80-8e42-47dbece3a5b7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:53:42 GMT", + "Date": "Thu, 12 Nov 2020 19:34:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json index 2ae26162e619c..82019f441403c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-886c5e45b721d740a4fad1f306ea27f8-aa2a9652eeacbf46-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-3d4bd48307511c419a4984c282c8bdca-e94d446f1061fc4a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "934878dc21c8a0a984e7d2d9ad60c773", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7947f5f0-9be7-40d4-ada5-8c0dc01e27e8", + "apim-request-id": "3157fda1-ec75-43eb-8dd1-c159005820f8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:53:39 GMT", + "Date": "Thu, 12 Nov 2020 19:34:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "16" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json index 3b79881228d56..b35870fea900f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-51540347bbf66d419ef3441c023c529a-aad56ea78a0e6443-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-3ae10523ec69d949852c72cdb5bfb2e7-f297f5b116b80842-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "25dfcc445911727a9003f8f77dc4c2e5", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a7a0b0be-e046-486b-924b-ca82863b2eb0", + "apim-request-id": "5100f861-1edb-4b5a-8209-e2c1d6df24f8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:53:43 GMT", + "Date": "Thu, 12 Nov 2020 19:34:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "790" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "16" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json index ec843cc82f13c..7b7ce37b66e84 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d708793ad930414bb0df369646ac2668-ff3d3fb07e24ed4a-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-65e00f8f66a96c46b14c2cf6169bb284-e2f8a03d9b4bbd4b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "c173c94341dba618c4f393086e026774", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f785eea3-a1c0-459a-aa46-23a6f82ba38d", + "apim-request-id": "a24e58e6-78dc-4c20-9156-75e6c21559da", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:53:43 GMT", + "Date": "Thu, 12 Nov 2020 19:34:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "125" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "103" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json index a7268f1c2430e..185880522658c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-456ebb6a36b61e4787f1a3ee815a30a5-055ecc54b52be042-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-f93ec77e1da4b04ebbd1c0b306556dd7-66525f9b7ef33645-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "2cf317139685f87e3e57184c7620cca1", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2d70f4e2-b34a-4a78-9e92-4a38318b054c", + "apim-request-id": "820daaa0-b7d7-4b56-a4e2-1bafd7d8d0d9", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:53:45 GMT", + "Date": "Thu, 12 Nov 2020 19:34:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "112" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "153" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json index 503960db60736..4b8b3ebb1c061 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1b2a3c4c4bf55345a8873fd1c9dab810-06d845200ee4f449-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-e437c0373c740b47a620e5fe347ff371-68dc981cdf0cd448-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "eecc011d319477b6a3836264a1185b02", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "171e01f9-c37a-401c-9071-9dda3b9e8627", + "apim-request-id": "cf058223-6549-4bcf-ac71-a08e3e8531fb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:53:43 GMT", + "Date": "Thu, 12 Nov 2020 19:34:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "135" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "161" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json index 3a4f448363abe..5f319e528dd89 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-383880eac362fd4f8df541ceab7b431a-2d773c46770e2241-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-a3c2a51992444849a51161cd6f8b3269-a45f248f9b75c743-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "8ceec0e33c8ae486f712d7bec0815450", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "452eafe5-72c1-4c68-848f-8b7661cf94a7", + "apim-request-id": "922c9fc2-0d93-4b3c-a192-fd99101a739a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:53:45 GMT", + "Date": "Thu, 12 Nov 2020 19:34:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "123" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "106" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json index c73f81275cb05..e3080fef0f602 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-91aa1f43fa126f4da12f2e11594c74ae-8059a0750cc50a40-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-09344bb1682e5d4ea4d9d5fd2fc70a6b-85fcdeaccf742b4d-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "f53bbc38a2b6814e4c65b541758c5e0a", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4c5eec1a-4502-4def-a5bd-b45d76c9f8f9", + "apim-request-id": "2d9765f7-3184-44ac-80bf-17f997e52fb7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:53:44 GMT", + "Date": "Thu, 12 Nov 2020 19:34:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "218" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "119" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json index d14de871c4ec2..ddb0cbf8d07a9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0562e763b51b194ea757cbce1348eebc-e4bdb68fc78fa24f-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-cb6f0afd66b94049a0aa8fc05b11b54f-02169cd7c0e48942-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "79f5f1883ef14a0947e802df013a4e11", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f212202d-1804-44d7-94b5-e83e077472f7", + "apim-request-id": "24d5d1b7-3610-4641-bfa9-ac0803ee07e5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:53:46 GMT", + "Date": "Thu, 12 Nov 2020 19:34:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "140" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "146" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json index d98aa8e40ceb8..3cdc75d3c9f47 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "331", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c43e10aea892ab49962fb8f56d781091-d118e31bbb469b4c-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-41fdd24c227fb147bf27a13cce5971bf-0dc1e7a97c5d804e-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e382b2e96bf3675f4d7d7960b8b32916", "x-ms-return-client-request-id": "true" }, @@ -40,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "efaf3de3-189d-4dec-a037-d1991a967167", + "apim-request-id": "6d057572-1c47-4dfe-a233-d21a375ff77b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:53:44 GMT", + "Date": "Thu, 12 Nov 2020 19:34:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "111" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "129" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json index 5779d236c1c70..6f1f5ea4ae445 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "331", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2c0f9edf686cd941a72164e9a9797262-b5949fe21c7a514c-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-90a3bbdd54c92845893c3ecebaaa4479-30773a13bc014740-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "e218864f9605e01c86941869a0be6841", "x-ms-return-client-request-id": "true" }, @@ -40,14 +34,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2778265c-f13e-4742-9be9-0123fddbdc8d", + "apim-request-id": "cd90a0bf-cfc4-42da-83c7-7b4651cc8a52", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:53:46 GMT", + "Date": "Thu, 12 Nov 2020 19:34:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "126" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "136" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json index 8d778eaf57b28..1c52a78e45fdc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fb6a80023742fb4886968a20c7ccde7a-0580e4bc896dc849-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-26492620ec0f3942a8bba9fa8993b596-c54b091624a8104c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9d7c7445e676a32cbc4854ae746d53b1", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "04485358-64f6-423c-b0e5-de33b12d2a89", + "apim-request-id": "0a95687c-e416-4faa-b45a-142856f298cd", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:53:44 GMT", + "Date": "Thu, 12 Nov 2020 19:34:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "112" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "117" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json index 1bd1c0bf79ccf..4925d46581afd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f28f0f8e92256243b9775836c299f87a-c811b64992722d4f-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-f11ee77bc5ff364cb629e70d84d1194b-7a0c6fc78197814c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "6372c6fc37bbef8068bba6a5d3c4483a", "x-ms-return-client-request-id": "true" }, @@ -35,14 +29,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d18f86a8-41f8-4d5b-b893-b61199f27164", + "apim-request-id": "5ba7de66-48fb-4ef7-8ddc-5221fd03ba9f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 05 Nov 2020 20:53:46 GMT", + "Date": "Thu, 12 Nov 2020 19:34:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "117" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "132" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json index 7dff489f96438..0284f5a7f833b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-53bef08798ecb44b963a72b3674fc798-0f58d2ac30725e43-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-bc88ec72bf387646ba9f9aba8add6c84-ac1264c8ede4c646-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "40f3d388777c07f3a5efa0af174b7c81", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7ba35dee-50c6-4fa8-9411-0d4199cec9fa", + "apim-request-id": "b3950b5b-031d-45e7-835f-33b0c7efe774", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:53:44 GMT", + "Date": "Thu, 12 Nov 2020 19:34:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "94" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "104" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json index 568b0e6b53247..dd006a4cdb563 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-422728eceed5ba45a7868ac11c1ad934-220e0d95139e2f4b-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-7f34d33029d61946856a3ba6ff4ed87a-6789bf9892b62442-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "b40e3ff9f3697ab649fbbfa57575c10c", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4f5e9b52-a654-48f1-8e98-85627a729371", + "apim-request-id": "76f02ab8-5446-4300-8f7b-2c640a16ba0e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:53:46 GMT", + "Date": "Thu, 12 Nov 2020 19:34:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "95" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "113" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json index 6e82398c66dfc..c34e5e52a596f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "107", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a6de99c511204847ad921ea20fa5fdef-56901c180d18334e-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-3dcfef489155484480abbca42ce16550-cd77a66c22ece443-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "5757e3544f245670b8a4c82d4b10bc4c", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9ccf8939-482b-47ac-b33f-9c7d8a1d6273", + "apim-request-id": "8e484457-2c88-4287-bfe2-062e61c663ea", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:53:45 GMT", + "Date": "Thu, 12 Nov 2020 19:34:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "88" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "79" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json index bb63880881756..b23a46a3a41db 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "107", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3c2dd06c552a2f4498f0bc8eae7c0c15-57485460c8681740-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-b42f7f880995784e90aefea92fc6439d-3800ecdf2df2f745-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "4a37fade57ea6b5a5ff8ab22891b6b20", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c45da482-bfe7-4e3c-88ba-bc1f0e3c873e", + "apim-request-id": "c44415a2-8f32-4b81-a713-1810344f794a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:53:47 GMT", + "Date": "Thu, 12 Nov 2020 19:34:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "83" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "80" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json index 936e0f5bd9c97..aebc5f03c9dd0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f57af7305f69fa4bb86cb790efa4e2e3-061cddf57bb1b246-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-3f12b638954e4b47893d4354debae7d5-9465c76bfaa37a46-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "2a5fd4f3bf3db4629b14e3f9050dd01c", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5fc5d629-265a-4b52-abda-28bcc38da156", + "apim-request-id": "433d621d-8d2f-4313-b6b9-2e13ac1a5965", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:53:45 GMT", + "Date": "Thu, 12 Nov 2020 19:34:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "98" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "90" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json index f962d7d0b1bbd..aa55506f09bd4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c01eed3cf5459f47bb7be400e2efaf65-f1aaa70504d5904e-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-736e28ecc6d27e438a1a793b7179599b-2e1bed4ab1106f49-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "df1d0a85dc552d663ac944ac69a80a0d", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0710a913-6936-4b93-ac9d-f89b30b961cc", + "apim-request-id": "216eb0d1-e2cb-489a-843c-098c4e705d5e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:53:47 GMT", + "Date": "Thu, 12 Nov 2020 19:34:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "92" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "95" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json index 20fa26a6d6c5d..6a7bdf4620e54 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?model-version=2020-02-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-74b5f7bf32a3c2498d61e404083bc6d2-d857321e5c82f44c-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-22a68fc0730e9d4c9e05369e6ff93655-d8b429669f85fc46-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "2bbb7414e3ce80e03f8df0adf3eb7d0c", "x-ms-return-client-request-id": "true" }, @@ -30,13 +24,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bb6f395a-ca52-42f4-ad4e-9c7fb50da0cb", + "apim-request-id": "11778971-bd5d-462c-aac3-a13fdf5282ef", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:53:47 GMT", + "Date": "Thu, 12 Nov 2020 19:34:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "61" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json index 6bbdd39b71470..22ab2dd996b0b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?model-version=2020-02-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b3c6713008ccac4aa8c7a0ac6e19e799-90b22f1fc3d26646-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-59e2cff27bcca244b8c45ce72e9803c0-19453dfc1e9ec045-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "6470d4cf3910c27ceead9bc2cf6c8aa0", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7b12b329-7bd4-479e-9053-72713451edef", + "apim-request-id": "c33a2238-338d-4249-8ae4-76f1340a3672", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:53:48 GMT", + "Date": "Thu, 12 Nov 2020 19:34:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "61" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "64" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json index 9930ff848859e..70c40a0c7519f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b2a951b141ad0d46918cf5db604c4a01-5baf817850471c46-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-1ecd99c30bc13548af6e65463b62dac3-0bc33716c4bbc441-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "31841aab9edddcddb56c91e8fafcead5", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0aa431c5-53bb-4a2f-93c1-567094682914", + "apim-request-id": "26795c6a-639f-4a21-9c69-316a7494d8ef", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:53:47 GMT", + "Date": "Thu, 12 Nov 2020 19:34:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "8" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ @@ -59,18 +53,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-21d2a06d344d13409caaa8df5aa179c0-98a85873eb88c945-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-8cd1b1ed0d42274ba0de7f1831805ef0-b523cfb19f048d47-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "13daa31269993bffe7f19e3dc94f204e", "x-ms-return-client-request-id": "true" }, @@ -86,7 +74,7 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Length": "224", - "Date": "Thu, 05 Nov 2020 20:53:47 GMT" + "Date": "Thu, 12 Nov 2020 19:34:32 GMT" }, "ResponseBody": "eyJlcnJvciI6eyJjb2RlIjoiNDAxIiwibWVzc2FnZSI6IkFjY2VzcyBkZW5pZWQgZHVlIHRvIGludmFsaWQgc3Vic2NyaXB0aW9uIGtleSBvciB3cm9uZyBBUEkgZW5kcG9pbnQuIE1ha2Ugc3VyZSB0byBwcm92aWRlIGEgdmFsaWQga2V5IGZvciBhbiBhY3RpdmUgc3Vic2NyaXB0aW9uIGFuZCB1c2UgYSBjb3JyZWN0IHJlZ2lvbmFsIEFQSSBlbmRwb2ludCBmb3IgeW91ciByZXNvdXJjZS4ifX0=" }, @@ -94,18 +82,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b37deeadc8c8a14991c835ae3860fbe2-b63366b35b77194f-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-1b7b23de979e854986a1d4064469b8ee-8a03347e0374c543-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "d85ee288a420af625bce0d2748754fc8", "x-ms-return-client-request-id": "true" }, @@ -120,14 +102,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "40daf2e5-25ed-437c-853a-378443109168", + "apim-request-id": "ac67f1b4-b22e-4cca-9f04-08aba6d9a104", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:53:48 GMT", + "Date": "Thu, 12 Nov 2020 19:34:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "7" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json index 931486c2f96c7..1db35a01ac36a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b7d79e6f0433db419e86c56275bda7a5-76144c4226dd684d-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-e81bcb2f6486fd40a15609ce7286a2fe-6b9a8aca5ae3a441-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "fb9f47ae04f9d825012386a2a51b9727", "x-ms-return-client-request-id": "true" }, @@ -30,13 +24,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c20a1121-c288-420f-99a9-d4bc7ae3fbfd", + "apim-request-id": "4d4749bc-b417-413e-9166-3599b98ea3c2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:53:49 GMT", + "Date": "Thu, 12 Nov 2020 19:34:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", + "x-content-type-options": "nosniff", "x-envoy-upstream-service-time": "6" }, "ResponseBody": { @@ -59,18 +53,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6bc5f27532c64c418416c70e17e3dbb3-9ece947d1fa58849-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-60ed4dda5ce7694ebc90522a7e4d6abb-d85bfd153529334b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "5aa0f7e4723c7c582e8ca602e03d8c8c", "x-ms-return-client-request-id": "true" }, @@ -86,7 +74,7 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Length": "224", - "Date": "Thu, 05 Nov 2020 20:53:49 GMT" + "Date": "Thu, 12 Nov 2020 19:34:34 GMT" }, "ResponseBody": "eyJlcnJvciI6eyJjb2RlIjoiNDAxIiwibWVzc2FnZSI6IkFjY2VzcyBkZW5pZWQgZHVlIHRvIGludmFsaWQgc3Vic2NyaXB0aW9uIGtleSBvciB3cm9uZyBBUEkgZW5kcG9pbnQuIE1ha2Ugc3VyZSB0byBwcm92aWRlIGEgdmFsaWQga2V5IGZvciBhbiBhY3RpdmUgc3Vic2NyaXB0aW9uIGFuZCB1c2UgYSBjb3JyZWN0IHJlZ2lvbmFsIEFQSSBlbmRwb2ludCBmb3IgeW91ciByZXNvdXJjZS4ifX0=" }, @@ -94,18 +82,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7ae4922913321d4897ec2f41060948d8-6adbef7347f49a4f-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-b9ebab0c375b734d8f3ebdee0160f9a9-24b7c61ebba1094a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "1a26406b44799ec461ce0951aebc7b46", "x-ms-return-client-request-id": "true" }, @@ -120,14 +102,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2455abef-81a4-463e-ab7f-2c347193528e", + "apim-request-id": "bfafa848-16ab-4bc4-acd8-b58e8815bd8b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:53:49 GMT", + "Date": "Thu, 12 Nov 2020 19:34:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json index 550c7813ab214..cc83e871ed98c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-51ff98dee0f2ef4bb2a86b8bb65cddf0-60879f218d075f41-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-58c25e3dd1f8384db1cc3586b194cbfd-a40f9595da807f4a-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "af25edec94c2cbbfd63455e84047f9b5", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ec8c8d73-ec9c-4428-9c2e-fb1a51408b8f", + "apim-request-id": "48152561-9886-4877-aca5-1231a7df7dfc", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:53:48 GMT", + "Date": "Thu, 12 Nov 2020 19:34:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "67" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "70" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json index 67f738f94bcb7..bf35ef552bb4a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-79aded4b927f194692ed8da33a93f215-4bb936675464b140-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-3ff80c611dd06a4e9a11e89e9deb80bd-67c5432ff1514e44-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "66b8ef6aed4353af1a0a6380bef4513f", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b20fce0b-1e4d-4472-bd27-5306f2ae7bbc", + "apim-request-id": "0defa2f9-e153-4c30-9505-2018470b060a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:53:49 GMT", + "Date": "Thu, 12 Nov 2020 19:34:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "73" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "66" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json index 155827e828b1e..6f1fa0217267c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "70", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-155adfde23e8bf4a8334b14b823e4619-665e6bb734587940-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-c1290e50eb70324381773e5f1d96ee7a-3f3df6970bea6b4f-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "9c096f0bd3a36f626316eda5be1e28c8", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "60101437-16ac-4bf6-9ca6-3d1a16723b8c", + "apim-request-id": "c2da88e3-6d53-4647-858b-32117441cbfd", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:53:48 GMT", + "Date": "Thu, 12 Nov 2020 19:34:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "53" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json index f3e65fee15bda..3eab25f2435c0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "70", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-af628b02d5846846bba665b9f7204446-4c3e83dcb6507b47-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-4bb69d30247e654680e892751d2219e4-82fef23fb3378941-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a71f02631f3c7a05f4cb179d2fb85aac", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8d9d30d8-9a86-4397-9bd0-908e6c66a98e", + "apim-request-id": "dc70862c-d218-4161-a2a9-a008b7576b38", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:53:49 GMT", + "Date": "Thu, 12 Nov 2020 19:34:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "54" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json index c2577e0feff11..50c15e56b8b6e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-60720aada0b74e43993bc91f75b77bc0-6f10d0292c537f44-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-fff298b2f735dc40917c6529dbb03b1c-5a7a035a84b8404b-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "a12918df519b0dc53f87435017a62e99", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b1f99911-8c8a-4a6f-ae15-7e18f7e39c5d", + "apim-request-id": "d9ecf9de-1b4b-4339-9a9d-ceee811ffbc9", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:53:48 GMT", + "Date": "Thu, 12 Nov 2020 19:34:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "66" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json index 36b0479af7be1..596ff31286115 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json @@ -4,18 +4,12 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], + "Accept": "application/json, text/json", "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a5153ffc36a83342a06924c8b16e8e68-e6a6accafce3f24c-00", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201105.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], + "traceparent": "00-c82fae960be8a54fa900d4eb03f9381f-7b2bef819fa6274c-00", + "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", "x-ms-client-request-id": "05b9b9c88ccd2f82a72e96b9014b88fb", "x-ms-return-client-request-id": "true" }, @@ -30,14 +24,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "47a95c16-79cc-4eb8-b70b-1cb1d3e49653", + "apim-request-id": "f80bb208-c78c-46da-82cd-f0103bd1e8d0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 05 Nov 2020 20:53:51 GMT", + "Date": "Thu, 12 Nov 2020 19:34:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "69" + "x-content-type-options": "nosniff", + "x-envoy-upstream-service-time": "68" }, "ResponseBody": { "documents": [ From f52052a36936618f92fc31b7a3e6b3cd90da2f12 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Thu, 12 Nov 2020 11:57:22 -0800 Subject: [PATCH 48/58] run update snippits and exportApi script --- .../Azure.AI.TextAnalytics.netstandard2.0.cs | 68 +++++++++++++++---- 1 file changed, 56 insertions(+), 12 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/api/Azure.AI.TextAnalytics.netstandard2.0.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/api/Azure.AI.TextAnalytics.netstandard2.0.cs index f3369e8fd85f6..ddbcc19b359a7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/api/Azure.AI.TextAnalytics.netstandard2.0.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/api/Azure.AI.TextAnalytics.netstandard2.0.cs @@ -1,5 +1,37 @@ namespace Azure.AI.TextAnalytics { + public partial class AnalyzeOperation : Azure.Operation + { + public AnalyzeOperation(string operationId, Azure.AI.TextAnalytics.TextAnalyticsClient client) { } + public override bool HasCompleted { get { throw null; } } + public override bool HasValue { get { throw null; } } + public override string Id { get { throw null; } } + public override Azure.AI.TextAnalytics.AnalyzeOperationResult Value { get { throw null; } } + public override Azure.Response GetRawResponse() { throw null; } + public override Azure.Response UpdateStatus(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask UpdateStatusAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public override System.Threading.Tasks.ValueTask> WaitForCompletionAsync(System.TimeSpan pollingInterval, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + } + public partial class AnalyzeOperationOptions : Azure.AI.TextAnalytics.TextAnalyticsRequestOptions + { + public AnalyzeOperationOptions() { } + public string DisplayName { get { throw null; } set { } } + public Azure.AI.TextAnalytics.EntitiesTaskParameters EntitiesTaskParameters { get { throw null; } set { } } + public Azure.AI.TextAnalytics.KeyPhrasesTaskParameters KeyPhrasesTaskParameters { get { throw null; } set { } } + public Azure.AI.TextAnalytics.PiiTaskParameters PiiTaskParameters { get { throw null; } set { } } + public int? Skip { get { throw null; } set { } } + public int? Top { get { throw null; } set { } } + } + public partial class AnalyzeOperationResult + { + internal AnalyzeOperationResult() { } + public string DisplayName { get { throw null; } } + public System.Collections.Generic.IReadOnlyList Errors { get { throw null; } } + public Azure.AI.TextAnalytics.TextDocumentBatchStatistics Statistics { get { throw null; } } + public Azure.AI.TextAnalytics.JobStatus Status { get { throw null; } } + public Azure.AI.TextAnalytics.AnalyzeTasks Tasks { get { throw null; } } + } public partial class AnalyzeSentimentOptions : Azure.AI.TextAnalytics.TextAnalyticsRequestOptions { public AnalyzeSentimentOptions() { } @@ -16,6 +48,18 @@ internal AnalyzeSentimentResultCollection() : base (default(System.Collections.G public string ModelVersion { get { throw null; } } public Azure.AI.TextAnalytics.TextDocumentBatchStatistics Statistics { get { throw null; } } } + public partial class AnalyzeTasks + { + internal AnalyzeTasks() { } + public int Completed { get { throw null; } } + public Azure.AI.TextAnalytics.TasksStateTasksDetails Details { get { throw null; } } + public System.Collections.Generic.IReadOnlyList EntityRecognitionPiiTasks { get { throw null; } } + public System.Collections.Generic.IReadOnlyList EntityRecognitionTasks { get { throw null; } } + public int Failed { get { throw null; } } + public int InProgress { get { throw null; } } + public System.Collections.Generic.IReadOnlyList KeyPhraseExtractionTasks { get { throw null; } } + public int Total { get { throw null; } } + } [System.Runtime.InteropServices.StructLayoutAttribute(System.Runtime.InteropServices.LayoutKind.Sequential)] public readonly partial struct AspectSentiment { @@ -140,10 +184,12 @@ internal Entity() { } public partial class EntityRecognitionPiiTasksItem : Azure.AI.TextAnalytics.TaskState { internal EntityRecognitionPiiTasksItem() { } + public Azure.AI.TextAnalytics.RecognizePiiEntitiesResultCollection Results { get { throw null; } } } public partial class EntityRecognitionTasksItem : Azure.AI.TextAnalytics.TaskState { internal EntityRecognitionTasksItem() { } + public Azure.AI.TextAnalytics.RecognizeEntitiesResultCollection Results { get { throw null; } } } public partial class ExtractKeyPhrasesResult : Azure.AI.TextAnalytics.TextAnalyticsResult { @@ -211,8 +257,9 @@ public JobManifestTasks() { } public static Azure.AI.TextAnalytics.JobStatus Cancelled { get { throw null; } } public static Azure.AI.TextAnalytics.JobStatus Cancelling { get { throw null; } } public static Azure.AI.TextAnalytics.JobStatus Failed { get { throw null; } } - public static Azure.AI.TextAnalytics.JobStatus Notstarted { get { throw null; } } - public static Azure.AI.TextAnalytics.JobStatus Partiallycompleted { get { throw null; } } + public static Azure.AI.TextAnalytics.JobStatus NotStarted { get { throw null; } } + public static Azure.AI.TextAnalytics.JobStatus PartiallyCompleted { get { throw null; } } + public static Azure.AI.TextAnalytics.JobStatus Rejected { get { throw null; } } public static Azure.AI.TextAnalytics.JobStatus Running { get { throw null; } } public static Azure.AI.TextAnalytics.JobStatus Succeeded { get { throw null; } } public bool Equals(Azure.AI.TextAnalytics.JobStatus other) { throw null; } @@ -233,6 +280,7 @@ internal KeyPhraseCollection() : base (default(System.Collections.Generic.IList< public partial class KeyPhraseExtractionTasksItem : Azure.AI.TextAnalytics.TaskState { internal KeyPhraseExtractionTasksItem() { } + public Azure.AI.TextAnalytics.ExtractKeyPhrasesResultCollection Results { get { throw null; } } } public partial class KeyPhrasesTask { @@ -402,17 +450,9 @@ internal SentimentConfidenceScores() { } public double Neutral { get { throw null; } } public double Positive { get { throw null; } } } - public partial class TasksStateTasks + public partial class TasksStateTasksDetails : Azure.AI.TextAnalytics.TaskState { - internal TasksStateTasks() { } - public int Completed { get { throw null; } } - public System.Collections.Generic.IReadOnlyList Details { get { throw null; } } - public System.Collections.Generic.IReadOnlyList EntityRecognitionPiiTasks { get { throw null; } } - public System.Collections.Generic.IReadOnlyList EntityRecognitionTasks { get { throw null; } } - public int Failed { get { throw null; } } - public int InProgress { get { throw null; } } - public System.Collections.Generic.IReadOnlyList KeyPhraseExtractionTasks { get { throw null; } } - public int Total { get { throw null; } } + internal TasksStateTasksDetails() { } } public partial class TaskState { @@ -481,6 +521,10 @@ public TextAnalyticsClient(System.Uri endpoint, Azure.Core.TokenCredential crede public virtual Azure.Response RecognizePiiEntitiesBatch(System.Collections.Generic.IEnumerable documents, string language = null, Azure.AI.TextAnalytics.RecognizePiiEntitiesOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> RecognizePiiEntitiesBatchAsync(System.Collections.Generic.IEnumerable documents, Azure.AI.TextAnalytics.RecognizePiiEntitiesOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> RecognizePiiEntitiesBatchAsync(System.Collections.Generic.IEnumerable documents, string language = null, Azure.AI.TextAnalytics.RecognizePiiEntitiesOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.AI.TextAnalytics.AnalyzeOperation StartAnalyzeOperationBatch(System.Collections.Generic.IEnumerable documents, Azure.AI.TextAnalytics.AnalyzeOperationOptions options, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.AI.TextAnalytics.AnalyzeOperation StartAnalyzeOperationBatch(System.Collections.Generic.IEnumerable documents, string language = null, Azure.AI.TextAnalytics.AnalyzeOperationOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartAnalyzeOperationBatchAsync(System.Collections.Generic.IEnumerable documents, Azure.AI.TextAnalytics.AnalyzeOperationOptions options, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartAnalyzeOperationBatchAsync(System.Collections.Generic.IEnumerable documents, string language = null, Azure.AI.TextAnalytics.AnalyzeOperationOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual string StartCancelHealthJob(Azure.AI.TextAnalytics.HealthcareOperation operation, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task StartCancelHealthJobAsync(Azure.AI.TextAnalytics.HealthcareOperation operation, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.AI.TextAnalytics.HealthcareOperation StartHealthcare(string document, string language = null, Azure.AI.TextAnalytics.HealthcareOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } From 8973dfa52ddc9822dc6b2a1db9ef5a299b737b42 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Fri, 13 Nov 2020 13:30:35 -0800 Subject: [PATCH 49/58] remove skip and top from options --- .../src/AnalyzeOperationOptions.cs | 10 --- .../src/TextAnalyticsClient.cs | 70 +++++++++---------- .../tests/AnalyzeOperationTests.cs | 9 ++- 3 files changed, 39 insertions(+), 50 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperationOptions.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperationOptions.cs index d84ffac83e943..2ab9fd18f5eef 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperationOptions.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperationOptions.cs @@ -17,16 +17,6 @@ public AnalyzeOperationOptions() { } - /// - /// The first top documents from the result. - /// - public int? Top { get; set; } - - /// - /// The skipped documents from the result. The Skip is called first when used with Top. - /// - public int? Skip { get; set; } - /// /// EntitiesTaskParameters. /// diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index 348e271d1f781..f4ad4c76a8b3e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -2466,9 +2466,7 @@ async Task> NextPageFunc(string nextLink, int? pa #region Analyze Operation /// - /// . - /// For a list of languages supported by this operation, see - /// . + /// Analyze Operation enables the application to have multiple tasks including NER, PII and KPE. /// For document length limits, maximum batch size, and supported text encoding, see /// . /// @@ -2488,30 +2486,14 @@ public virtual async Task StartAnalyzeOperationBatchAsync(IEnu } /// - /// Runs a predictive model to identify a collection of entities containing - /// Personally Identifiable Information found in the passed-in document, - /// and categorize those entities into types such as US social security - /// number, drivers license number, or credit card number. - /// For more information on available categories, see - /// . - /// For a list of languages supported by this operation, see - /// . + /// Analyze Operation enables the application to have multiple tasks including NER, PII and KPE. /// For document length limits, maximum batch size, and supported text encoding, see /// . /// /// The documents to analyze. - /// The language that the document is written in. - /// If unspecified, this value will be set to the default language in - /// in the request sent to the - /// service. If set to an empty string, the service will apply a model - /// where the language is explicitly set to "None". - /// The additional configurable that may be passed when - /// recognizing PII entities. Options include entity domain filters, model version, and more. - /// A - /// controlling the request lifetime. - /// A result containing the collection of entities identified - /// for each of the documents, as well as scores indicating the confidence - /// that a given entity correctly matches the identified substring. + /// The language that the document is written in. + /// The additional configurable + /// /// Service returned a non-success /// status code. public virtual AnalyzeOperation StartAnalyzeOperationBatch(IEnumerable documents, string language = default, AnalyzeOperationOptions options = default, CancellationToken cancellationToken = default) @@ -2524,13 +2506,15 @@ public virtual AnalyzeOperation StartAnalyzeOperationBatch(IEnumerable d } /// - /// Recognizes Analyze Operation. + /// Analyze Operation enables the application to have multiple tasks including NER, PII and KPE. + /// For document length limits, maximum batch size, and supported text encoding, see + /// . /// - /// - /// - /// A controlling the request lifetime. - /// A to wait on this long-running operation. Its upon successful - /// completion will contain layout elements extracted from the form. + /// The documents to analyze. + /// The additional configurable + /// + /// Service returned a non-success + /// status code. public virtual AnalyzeOperation StartAnalyzeOperationBatch(IEnumerable documents, AnalyzeOperationOptions options, CancellationToken cancellationToken = default) { Argument.AssertNotNullOrEmpty(documents, nameof(documents)); @@ -2541,13 +2525,15 @@ public virtual AnalyzeOperation StartAnalyzeOperationBatch(IEnumerable - /// Recognizes Analyze Operation async. + /// Analyze Operation enables the application to have multiple tasks including NER, PII and KPE. + /// For document length limits, maximum batch size, and supported text encoding, see + /// . /// - /// - /// - /// A controlling the request lifetime. - /// A to wait on this long-running operation. Its upon successful - /// completion will contain layout elements extracted from the form. + /// The documents to analyze. + /// The additional configurable + /// + /// Service returned a non-success + /// status code. public virtual async Task StartAnalyzeOperationBatchAsync(IEnumerable documents, AnalyzeOperationOptions options, CancellationToken cancellationToken = default) { Argument.AssertNotNullOrEmpty(documents, nameof(documents)); @@ -2583,12 +2569,17 @@ private AnalyzeOperation StartAnalyzeOperationBatch(MultiLanguageBatchInput batc try { + // TODO - Add Top and Skip once pagination is implemented for Analyze operation + // Github issue - https://github.com/Azure/azure-sdk-for-net/issues/16958 + int _top = default; + int _skip = default; + ResponseWithHeaders response = _serviceRestClient.Analyze(analyzeDocumentInputs, cancellationToken); string location = response.Headers.OperationLocation; IDictionary idToIndexMap = CreateIdToIndexMap(batchInput.Documents); - return new AnalyzeOperation(_serviceRestClient, _clientDiagnostics, location, idToIndexMap, options.Top, options.Skip, options.IncludeStatistics); + return new AnalyzeOperation(_serviceRestClient, _clientDiagnostics, location, idToIndexMap, _top, _skip, options.IncludeStatistics); } catch (Exception e) { @@ -2623,12 +2614,17 @@ private async Task StartAnalyzeOperationBatchAsync(MultiLangua try { + // TODO - Add Top and Skip once pagination is implemented for Analyze operation + // Github issue - https://github.com/Azure/azure-sdk-for-net/issues/16958 + int _top = default; + int _skip = default; + ResponseWithHeaders response = await _serviceRestClient.AnalyzeAsync(analyzeDocumentInputs, cancellationToken).ConfigureAwait(false); string location = response.Headers.OperationLocation; IDictionary idToIndexMap = CreateIdToIndexMap(batchInput.Documents); - return new AnalyzeOperation(_serviceRestClient, _clientDiagnostics, location, idToIndexMap, options.Top, options.Skip, options.IncludeStatistics); + return new AnalyzeOperation(_serviceRestClient, _clientDiagnostics, location, idToIndexMap, _top, _skip, options.IncludeStatistics); } catch (Exception e) { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs index ed179c10856b8..6d02be43d75ae 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs @@ -207,6 +207,7 @@ public async Task AnalyzeOperationWithMultipleTasks() } [Test] + [Ignore("Will add this once the pagination is implemented for AnalyzeOperation - https://github.com/Azure/azure-sdk-for-net/issues/16958")] public async Task AnalyzeOperationWithSkipParameter() { TextAnalyticsClient client = GetClient(); @@ -215,7 +216,7 @@ public async Task AnalyzeOperationWithSkipParameter() { KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters(), DisplayName = "AnalyzeOperationWithSkipParameter", - Skip = 1 + //Skip = 1 }; AnalyzeOperation operation = await client.StartAnalyzeOperationBatchAsync(batchConvenienceDocuments, "en", operationOptions); @@ -239,6 +240,7 @@ public async Task AnalyzeOperationWithSkipParameter() } [Test] + [Ignore("Will add this once the pagination is implemented for AnalyzeOperation - https://github.com/Azure/azure-sdk-for-net/issues/16958")] public async Task AnalyzeOperationWithTopParameter() { TextAnalyticsClient client = GetClient(); @@ -247,7 +249,7 @@ public async Task AnalyzeOperationWithTopParameter() { KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters(), DisplayName = "AnalyzeOperationWithSkipParameter", - Top = 1 + //Top = 1 }; AnalyzeOperation operation = await client.StartAnalyzeOperationBatchAsync(batchConvenienceDocuments, "en", operationOptions); @@ -271,6 +273,7 @@ public async Task AnalyzeOperationWithTopParameter() } [Test] + [Ignore("Will add this once the pagination is implemented for AnalyzeOperation - https://github.com/Azure/azure-sdk-for-net/issues/16958")] public async Task AnalyzeOperationBatchWithErrorTest() { TextAnalyticsClient client = GetClient(); @@ -286,7 +289,7 @@ public async Task AnalyzeOperationBatchWithErrorTest() { KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters(), DisplayName = "AnalyzeOperationBatchWithErrorTest", - Skip = 1 + //Skip = 1 }; await Task.Run(() => { From 15b65b8bd2e1653078b27b3879a031d6b1a492c1 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Fri, 13 Nov 2020 13:32:13 -0800 Subject: [PATCH 50/58] run exportapi script --- .../api/Azure.AI.TextAnalytics.netstandard2.0.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/api/Azure.AI.TextAnalytics.netstandard2.0.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/api/Azure.AI.TextAnalytics.netstandard2.0.cs index ddbcc19b359a7..91cb1878eefe2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/api/Azure.AI.TextAnalytics.netstandard2.0.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/api/Azure.AI.TextAnalytics.netstandard2.0.cs @@ -20,8 +20,6 @@ public AnalyzeOperationOptions() { } public Azure.AI.TextAnalytics.EntitiesTaskParameters EntitiesTaskParameters { get { throw null; } set { } } public Azure.AI.TextAnalytics.KeyPhrasesTaskParameters KeyPhrasesTaskParameters { get { throw null; } set { } } public Azure.AI.TextAnalytics.PiiTaskParameters PiiTaskParameters { get { throw null; } set { } } - public int? Skip { get { throw null; } set { } } - public int? Top { get { throw null; } set { } } } public partial class AnalyzeOperationResult { From 71113258e21a54a0dae70d5c59605911d80054d1 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Fri, 13 Nov 2020 13:38:48 -0800 Subject: [PATCH 51/58] remove swagger --- .../Azure.AI.TextAnalytics/src/swagger.json | 2303 ----------------- 1 file changed, 2303 deletions(-) delete mode 100644 sdk/textanalytics/Azure.AI.TextAnalytics/src/swagger.json diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/swagger.json b/sdk/textanalytics/Azure.AI.TextAnalytics/src/swagger.json deleted file mode 100644 index 83a0fcde22da4..0000000000000 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/swagger.json +++ /dev/null @@ -1,2303 +0,0 @@ -{ - "swagger": "2.0", - "info": { - "version": "v3.1-preview.3", - "contact": { - "name": "Microsoft Cognitive Services", - "url": "https://azure.microsoft.com/en-us/services/cognitive-services/text-analytics/", - "email": "mlapi@microsoft.com" - }, - "title": "Text Analytics Client", - "description": "The Text Analytics API is a suite of natural language processing (NLP) services built with best-in-class Microsoft machine learning algorithms. The API can be used to analyze unstructured text for tasks such as sentiment analysis, key phrase extraction and language detection. Further documentation can be found in https://docs.microsoft.com/en-us/azure/cognitive-services/text-analytics/overview" - }, - "securityDefinitions": { - "apim_key": { - "type": "apiKey", - "name": "Ocp-Apim-Subscription-Key", - "in": "header" - } - }, - "security": [ - { - "apim_key": [] - } - ], - "x-ms-parameterized-host": { - "hostTemplate": "{Endpoint}/text/analytics/v3.1-preview.3", - "useSchemePrefix": false, - "parameters": [ - { - "$ref": "#/parameters/Endpoint" - } - ] - }, - "paths": { - "/analyze": { - "post": { - "consumes": [ - "application/json", - "text/json" - ], - "produces": [ - "application/json", - "text/json" - ], - "description": "Submit a collection of text documents for analysis. Specify one or more unique tasks to be executed.", - "operationId": "Analyze", - "summary": "Submit analysis job", - "parameters": [ - { - "description": "Collection of documents to analyze and tasks to execute.", - "in": "body", - "name": "body", - "schema": { - "$ref": "#/definitions/AnalyzeBatchInput" - } - } - ], - "responses": { - "202": { - "description": "A successful call results with an Operation-Location header used to check the status of the analysis job.", - "headers": { - "Operation-Location": { - "type": "string" - } - } - }, - "400": { - "description": "Bad Request.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - }, - "x-ms-error-response": true - }, - "500": { - "description": "Internal error response", - "schema": { - "$ref": "#/definitions/ErrorResponse" - }, - "x-ms-error-response": true - } - }, - "x-ms-examples": { - "Successful Submit analysis job request": { - "$ref": ".//examples//SuccessfulAnalyzeRequest.json" - } - }, - "deprecated": false, - "x-ms-long-running-operation": true - } - }, - "/analyze/jobs/{jobId}": { - "get": { - "produces": [ - "application/json", - "text/json" - ], - "description": "Get the status of an analysis job. A job may consist of one or more tasks. Once all tasks are completed, the job will transition to the completed state and results will be available for each task.", - "operationId": "AnalyzeStatus", - "summary": "Get analysis status and results", - "parameters": [ - { - "$ref": "#/parameters/JobId" - }, - { - "$ref": "#/parameters/ShowStats" - }, - { - "default": 20, - "description": "(Optional) Set the maximum number of results per task. When both $top and $skip are specified, $skip is applied first.", - "in": "query", - "maximum": 50, - "minimum": 1, - "name": "$top", - "type": "integer" - }, - { - "default": 0, - "description": "(Optional) Set the number of elements to offset in the response. When both $top and $skip are specified, $skip is applied first.", - "in": "query", - "minimum": 0, - "name": "$skip", - "type": "integer" - } - ], - "responses": { - "200": { - "description": "Analysis job status and metadata.", - "schema": { - "$ref": "#/definitions/AnalyzeJobState" - } - }, - "404": { - "description": "Job ID not found.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - }, - "x-ms-error-response": true - }, - "500": { - "description": "Internal error response", - "schema": { - "$ref": "#/definitions/ErrorResponse" - }, - "x-ms-error-response": true - } - }, - "x-ms-examples": { - "Successful Get Analysis job status request": { - "$ref": ".//examples//SuccessfulAnalyzeStatusRequest.json" - } - }, - "deprecated": false - } - }, - "/entities/health/jobs/{jobId}": { - "get": { - "produces": [ - "application/json", - "text/json" - ], - "description": "Get details of the healthcare prediction job specified by the jobId.", - "operationId": "HealthStatus", - "summary": "Get healthcare analysis job status and results", - "parameters": [ - { - "$ref": "#/parameters/JobId" - }, - { - "default": 20, - "description": "(Optional) Set the maximum number of results per task. When both $top and $skip are specified, $skip is applied first.", - "in": "query", - "maximum": 50, - "minimum": 1, - "name": "$top", - "type": "integer" - }, - { - "default": 0, - "description": "(Optional) Set the number of elements to offset in the response. When both $top and $skip are specified, $skip is applied first.", - "in": "query", - "minimum": 0, - "name": "$skip", - "type": "integer" - }, - { - "$ref": "#/parameters/ShowStats" - } - ], - "responses": { - "200": { - "description": "OK", - "schema": { - "$ref": "#/definitions/HealthcareJobState" - } - }, - "404": { - "description": "Job ID not found.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - }, - "x-ms-error-response": true - }, - "500": { - "description": "Internal error response", - "schema": { - "$ref": "#/definitions/ErrorResponse" - }, - "x-ms-error-response": true - } - }, - "x-ms-examples": { - "Successful Health request": { - "$ref": ".//examples//SuccessfulHealthStatusRequest.json" - } - }, - "deprecated": false - }, - "delete": { - "produces": [ - "application/json", - "text/json" - ], - "description": "Cancel healthcare prediction job.", - "operationId": "CancelHealthJob", - "summary": "Cancel healthcare prediction job", - "parameters": [ - { - "$ref": "#/parameters/JobId" - } - ], - "responses": { - "202": { - "description": "Cancel Job request has been received.", - "headers": { - "Operation-Location": { - "type": "string" - } - } - }, - "404": { - "description": "Job ID not found.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - }, - "x-ms-error-response": true - }, - "500": { - "description": "Internal error response", - "schema": { - "$ref": "#/definitions/ErrorResponse" - }, - "x-ms-error-response": true - } - }, - "x-ms-examples": { - "Successful Health request": { - "$ref": ".//examples//SuccessfulHealthDeleteRequest.json" - } - }, - "deprecated": false, - "x-ms-long-running-operation": true - } - }, - "/entities/health/jobs": { - "post": { - "summary": "Submit healthcare analysis job", - "description": "Start a healthcare analysis job to recognize healthcare related entities (drugs, conditions, symptoms, etc) and their relations.", - "operationId": "Health", - "consumes": [ - "application/json", - "text/json" - ], - "produces": [ - "application/json", - "text/json" - ], - "parameters": [ - { - "$ref": "#/parameters/ModelVersion" - }, - { - "$ref": "#/parameters/StringIndexType" - }, - { - "$ref": "#/parameters/MultiLanguageInput" - } - ], - "responses": { - "202": { - "description": "Accepted - call results in a link where the status of the submitted job can be checked via the GET operation.", - "headers": { - "Operation-Location": { - "type": "string" - } - } - }, - "400": { - "description": "Bad Request.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - }, - "x-ms-error-response": true - }, - "500": { - "description": "Internal error response", - "schema": { - "$ref": "#/definitions/ErrorResponse" - }, - "x-ms-error-response": true - } - }, - "x-ms-examples": { - "Successful Health request": { - "$ref": ".//examples//SuccessfulHealthRequest.json" - } - }, - "deprecated": false, - "x-ms-long-running-operation": true - } - }, - "/entities/recognition/general": { - "post": { - "summary": "Named Entity Recognition", - "description": "The API returns a list of general named entities in a given document. For the list of supported entity types, check Supported Entity Types in Text Analytics API. See the Supported languages in Text Analytics API for the list of enabled languages.", - "operationId": "EntitiesRecognitionGeneral", - "consumes": [ - "application/json", - "text/json" - ], - "produces": [ - "application/json", - "text/json" - ], - "parameters": [ - { - "$ref": "#/parameters/ModelVersion" - }, - { - "$ref": "#/parameters/ShowStats" - }, - { - "$ref": "#/parameters/StringIndexType" - }, - { - "$ref": "#/parameters/MultiLanguageInput" - } - ], - "responses": { - "200": { - "description": "A successful call results in a list of recognized entities returned for each valid document.", - "schema": { - "$ref": "#/definitions/EntitiesResult" - } - }, - "400": { - "description": "Bad Request.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - }, - "x-ms-error-response": true - }, - "500": { - "description": "Internal error response", - "schema": { - "$ref": "#/definitions/ErrorResponse" - }, - "x-ms-error-response": true - } - }, - "x-ms-examples": { - "Successful Entities request": { - "$ref": ".//examples//SuccessfulEntitiesRequest.json" - } - }, - "deprecated": false - } - }, - "/entities/recognition/pii": { - "post": { - "summary": "Entities containing personal information", - "description": "The API returns a list of entities with personal information (\\\"SSN\\\", \\\"Bank Account\\\" etc) in the document. For the list of supported entity types, check Supported Entity Types in Text Analytics API. See the Supported languages in Text Analytics API for the list of enabled languages.\n", - "operationId": "EntitiesRecognitionPii", - "consumes": [ - "application/json", - "text/json" - ], - "produces": [ - "application/json", - "text/json" - ], - "parameters": [ - { - "$ref": "#/parameters/ModelVersion" - }, - { - "$ref": "#/parameters/ShowStats" - }, - { - "name": "domain", - "in": "query", - "description": "(Optional) if specified, will set the PII domain to include only a subset of the entity categories. Possible values include: 'PHI', 'none'.", - "type": "string" - }, - { - "$ref": "#/parameters/StringIndexType" - }, - { - "$ref": "#/parameters/MultiLanguageInput" - } - ], - "responses": { - "200": { - "description": "A successful call results in a list of entities containing personal information returned for each valid document", - "schema": { - "$ref": "#/definitions/PiiResult" - } - }, - "400": { - "description": "Bad Request.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - }, - "x-ms-error-response": true - }, - "500": { - "description": "Internal error response", - "schema": { - "$ref": "#/definitions/ErrorResponse" - }, - "x-ms-error-response": true - } - }, - "x-ms-examples": { - "Successful Entity PII request": { - "$ref": ".//examples//SuccessfulEntityPIIRequest.json" - } - }, - "deprecated": false - } - }, - "/entities/linking": { - "post": { - "summary": "Linked entities from a well-known knowledge base", - "description": "The API returns a list of recognized entities with links to a well-known knowledge base. See the Supported languages in Text Analytics API for the list of enabled languages.", - "operationId": "EntitiesLinking", - "consumes": [ - "application/json", - "text/json" - ], - "produces": [ - "application/json", - "text/json" - ], - "parameters": [ - { - "$ref": "#/parameters/ModelVersion" - }, - { - "$ref": "#/parameters/ShowStats" - }, - { - "$ref": "#/parameters/StringIndexType" - }, - { - "$ref": "#/parameters/MultiLanguageInput" - } - ], - "responses": { - "200": { - "description": "A successful call results in a list of recognized entities with links to a well-known knowledge base returned for each valid document", - "schema": { - "$ref": "#/definitions/EntityLinkingResult" - } - }, - "400": { - "description": "Bad Request.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - }, - "x-ms-error-response": true - }, - "500": { - "description": "Internal error response", - "schema": { - "$ref": "#/definitions/ErrorResponse" - }, - "x-ms-error-response": true - } - }, - "x-ms-examples": { - "Successful Entity Linking request": { - "$ref": ".//examples//SuccessfulEntityLinkingRequest.json" - } - }, - "deprecated": false - } - }, - "/keyPhrases": { - "post": { - "summary": "Key Phrases", - "description": "The API returns a list of strings denoting the key phrases in the input text. See the Supported languages in Text Analytics API for the list of enabled languages.", - "operationId": "KeyPhrases", - "consumes": [ - "application/json", - "text/json" - ], - "produces": [ - "application/json", - "text/json" - ], - "parameters": [ - { - "$ref": "#/parameters/ModelVersion" - }, - { - "$ref": "#/parameters/ShowStats" - }, - { - "$ref": "#/parameters/MultiLanguageInput" - } - ], - "responses": { - "200": { - "description": "A successful response results in 0 or more key phrases identified in each valid document", - "schema": { - "$ref": "#/definitions/KeyPhraseResult" - } - }, - "400": { - "description": "Bad Request.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - }, - "x-ms-error-response": true - }, - "500": { - "description": "Internal error response", - "schema": { - "$ref": "#/definitions/ErrorResponse" - }, - "x-ms-error-response": true - } - }, - "x-ms-examples": { - "Successful Key Phrase request": { - "$ref": ".//examples//SuccessfulKeyPhrasesRequest.json" - } - }, - "deprecated": false - } - }, - "/languages": { - "post": { - "summary": "Detect Language", - "description": "The API returns the detected language and a numeric score between 0 and 1. Scores close to 1 indicate 100% certainty that the identified language is true. See the Supported languages in Text Analytics API for the list of enabled languages.", - "operationId": "Languages", - "consumes": [ - "application/json", - "text/json" - ], - "produces": [ - "application/json", - "text/json" - ], - "parameters": [ - { - "$ref": "#/parameters/ModelVersion" - }, - { - "$ref": "#/parameters/ShowStats" - }, - { - "$ref": "#/parameters/LanguageInput" - } - ], - "responses": { - "200": { - "description": "A successful call results in the detected language with the highest probability for each valid document", - "schema": { - "$ref": "#/definitions/LanguageResult" - } - }, - "400": { - "description": "Bad Request.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - }, - "x-ms-error-response": true - }, - "500": { - "description": "Internal error response", - "schema": { - "$ref": "#/definitions/ErrorResponse" - }, - "x-ms-error-response": true - } - }, - "x-ms-examples": { - "Successful Detect Language request": { - "$ref": ".//examples//SuccessfulLanguagesRequest.json" - } - }, - "deprecated": false - } - }, - "/sentiment": { - "post": { - "summary": "Sentiment", - "description": "The API returns a detailed sentiment analysis for the input text. The analysis is done in multiple levels of granularity, start from the a document level, down to sentence and key terms (aspects) and opinions.", - "operationId": "Sentiment", - "consumes": [ - "application/json", - "text/json" - ], - "produces": [ - "application/json", - "text/json" - ], - "parameters": [ - { - "$ref": "#/parameters/ModelVersion" - }, - { - "$ref": "#/parameters/ShowStats" - }, - { - "name": "opinionMining", - "in": "query", - "description": "(Optional) if set to true, response will contain input and document level statistics including aspect-based sentiment analysis results.", - "type": "boolean" - }, - { - "$ref": "#/parameters/StringIndexType" - }, - { - "$ref": "#/parameters/MultiLanguageInput" - } - ], - "responses": { - "200": { - "description": "A successful call results in a document sentiment prediction, as well as sentiment scores for each sentiment class (Positive, Negative, and Neutral)", - "schema": { - "$ref": "#/definitions/SentimentResponse" - } - }, - "400": { - "description": "Bad Request.", - "schema": { - "$ref": "#/definitions/ErrorResponse" - }, - "x-ms-error-response": true - }, - "500": { - "description": "Internal error response", - "schema": { - "$ref": "#/definitions/ErrorResponse" - }, - "x-ms-error-response": true - } - }, - "x-ms-examples": { - "Successful Sentiment request": { - "$ref": ".//examples//SuccessfulSentimentRequest.json" - } - }, - "deprecated": false - } - } - }, - "definitions": { - "JobManifest": { - "properties": { - "tasks": { - "description": "The set of tasks to execute on the input documents. Cannot specify the same task more than once.", - "properties": { - "entityRecognitionTasks": { - "type": "array", - "items": { - "$ref": "#/definitions/EntitiesTask" - } - }, - "entityRecognitionPiiTasks": { - "type": "array", - "items": { - "$ref": "#/definitions/PiiTask" - } - }, - "keyPhraseExtractionTasks": { - "type": "array", - "items": { - "$ref": "#/definitions/KeyPhrasesTask" - } - } - }, - "type": "object" - } - }, - "required": [ - "tasks" - ], - "type": "object" - }, - "MultiLanguageBatchInput": { - "type": "object", - "required": [ - "documents" - ], - "properties": { - "documents": { - "type": "array", - "description": "The set of documents to process as part of this batch.", - "items": { - "$ref": "#/definitions/MultiLanguageInput" - } - } - }, - "description": "Contains a set of input documents to be analyzed by the service." - }, - "MultiLanguageInput": { - "type": "object", - "required": [ - "id", - "text" - ], - "properties": { - "id": { - "type": "string", - "description": "A unique, non-empty document identifier." - }, - "text": { - "type": "string", - "description": "The input text to process." - }, - "language": { - "type": "string", - "description": "(Optional) This is the 2 letter ISO 639-1 representation of a language. For example, use \"en\" for English; \"es\" for Spanish etc. If not set, use \"en\" for English as default." - } - }, - "description": "Contains an input document to be analyzed by the service." - }, - "DocumentError": { - "type": "object", - "required": [ - "id", - "error" - ], - "properties": { - "id": { - "type": "string", - "description": "Document Id." - }, - "error": { - "type": "object", - "description": "Document Error.", - "$ref": "#/definitions/TextAnalyticsError" - } - } - }, - "ErrorResponse": { - "type": "object", - "required": [ - "error" - ], - "properties": { - "error": { - "type": "object", - "description": "Document Error.", - "$ref": "#/definitions/TextAnalyticsError" - } - } - }, - "TextAnalyticsError": { - "type": "object", - "required": [ - "code", - "message" - ], - "properties": { - "code": { - "type": "string", - "enum": [ - "InvalidRequest", - "InvalidArgument", - "InternalServerError", - "ServiceUnavailable", - "NotFound" - ], - "x-ms-enum": { - "name": "ErrorCodeValue", - "modelAsString": false - }, - "description": "Error code." - }, - "message": { - "type": "string", - "description": "Error message." - }, - "target": { - "type": "string", - "description": "Error target." - }, - "innererror": { - "$ref": "#/definitions/InnerError", - "description": "Inner error contains more specific information." - }, - "details": { - "type": "array", - "description": "Details about specific errors that led to this reported error.", - "items": { - "$ref": "#/definitions/TextAnalyticsError" - } - } - } - }, - "TextAnalyticsWarning": { - "type": "object", - "required": [ - "code", - "message" - ], - "properties": { - "code": { - "type": "string", - "enum": [ - "LongWordsInDocument", - "DocumentTruncated" - ], - "x-ms-enum": { - "name": "WarningCodeValue", - "modelAsString": true - }, - "description": "Error code." - }, - "message": { - "type": "string", - "description": "Warning message." - }, - "targetRef": { - "type": "string", - "description": "A JSON pointer reference indicating the target object." - } - } - }, - "PiiTask": { - "properties": { - "parameters": { - "properties": { - "domain": { - "default": "none", - "enum": [ - "phi", - "none" - ], - "type": "string" - }, - "model-version": { - "default": "latest", - "type": "string" - }, - "stringIndexType": { - "$ref": "#/definitions/StringIndexType" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "EntitiesTask": { - "properties": { - "parameters": { - "properties": { - "model-version": { - "default": "latest", - "type": "string" - }, - "stringIndexType": { - "$ref": "#/definitions/StringIndexType" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "InnerError": { - "type": "object", - "required": [ - "code", - "message" - ], - "properties": { - "code": { - "type": "string", - "enum": [ - "InvalidParameterValue", - "InvalidRequestBodyFormat", - "EmptyRequest", - "MissingInputRecords", - "InvalidDocument", - "ModelVersionIncorrect", - "InvalidDocumentBatch", - "UnsupportedLanguageCode", - "InvalidCountryHint" - ], - "x-ms-enum": { - "name": "InnerErrorCodeValue", - "modelAsString": true - }, - "description": "Error code." - }, - "message": { - "type": "string", - "description": "Error message." - }, - "details": { - "type": "object", - "additionalProperties": { - "type": "string" - }, - "description": "Error details." - }, - "target": { - "type": "string", - "description": "Error target." - }, - "innererror": { - "$ref": "#/definitions/InnerError", - "description": "Inner error contains more specific information." - } - } - }, - "AnalyzeBatchInput": { - "allOf": [ - { - "$ref": "#/definitions/JobDescriptor" - }, - { - "type": "object", - "required": [ - "analysisInput" - ], - "properties": { - "analysisInput": { - "$ref": "#/definitions/MultiLanguageBatchInput" - } - } - }, - { - "$ref": "#/definitions/JobManifest" - } - ] - }, - "AnalyzeJobState": { - "allOf": [ - { - "$ref": "#/definitions/JobMetadata" - }, - { - "$ref": "#/definitions/TasksState" - }, - { - "properties": { - "errors": { - "items": { - "$ref": "#/definitions/TextAnalyticsError" - }, - "type": "array" - }, - "statistics": { - "$ref": "#/definitions/RequestStatistics" - } - }, - "type": "object" - }, - { - "$ref": "#/definitions/Pagination" - } - ] - }, - "SentimentResponse": { - "type": "object", - "required": [ - "documents", - "errors", - "modelVersion" - ], - "properties": { - "documents": { - "type": "array", - "description": "Sentiment analysis per document.", - "items": { - "$ref": "#/definitions/DocumentSentiment" - } - }, - "errors": { - "type": "array", - "description": "Errors by document id.", - "items": { - "$ref": "#/definitions/DocumentError" - } - }, - "statistics": { - "$ref": "#/definitions/RequestStatistics" - }, - "modelVersion": { - "type": "string", - "description": "This field indicates which model is used for scoring." - } - } - }, - "TaskState": { - "properties": { - "lastUpdateDateTime": { - "format": "date-time", - "type": "string" - }, - "name": { - "type": "string" - }, - "status": { - "enum": [ - "notstarted", - "running", - "succeeded", - "failed", - "cancelled", - "cancelling" - ], - "x-ms-enum": { - "modelAsString": false, - "name": "State" - } - } - }, - "required": [ - "name", - "status", - "lastUpdateDateTime" - ], - "type": "object" - }, - "TasksState": { - "properties": { - "tasks": { - "properties": { - "details": { - "items": { - "$ref": "#/definitions/TaskState" - }, - "type": "array" - }, - "completed": { - "type": "integer" - }, - "failed": { - "type": "integer" - }, - "inProgress": { - "type": "integer" - }, - "total": { - "type": "integer" - }, - "entityRecognitionTasks": { - "type": "array", - "items": { - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/TaskState" - }, - { - "type": "object", - "properties": { - "results": { - "$ref": "#/definitions/EntitiesResult" - } - } - } - ] - } - }, - "entityRecognitionPiiTasks": { - "type": "array", - "items": { - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/TaskState" - }, - { - "type": "object", - "properties": { - "results": { - "$ref": "#/definitions/PiiResult" - } - } - } - ] - } - }, - "keyPhraseExtractionTasks": { - "type": "array", - "items": { - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/TaskState" - }, - { - "type": "object", - "properties": { - "results": { - "$ref": "#/definitions/KeyPhraseResult" - } - } - } - ] - } - } - }, - "required": [ - "total", - "completed", - "failed", - "inProgress" - ], - "type": "object" - } - }, - "required": [ - "tasks" - ], - "type": "object" - }, - "DocumentSentiment": { - "type": "object", - "required": [ - "id", - "sentiment", - "confidenceScores", - "sentences", - "warnings" - ], - "properties": { - "id": { - "type": "string", - "description": "Unique, non-empty document identifier." - }, - "sentiment": { - "type": "string", - "description": "Predicted sentiment for document (Negative, Neutral, Positive, or Mixed).", - "enum": [ - "positive", - "neutral", - "negative", - "mixed" - ], - "x-ms-enum": { - "name": "DocumentSentimentValue", - "modelAsString": false - } - }, - "statistics": { - "$ref": "#/definitions/DocumentStatistics" - }, - "confidenceScores": { - "description": "Document level sentiment confidence scores between 0 and 1 for each sentiment class.", - "$ref": "#/definitions/SentimentConfidenceScorePerLabel" - }, - "sentences": { - "type": "array", - "description": "Sentence level sentiment analysis.", - "items": { - "$ref": "#/definitions/SentenceSentiment" - } - }, - "warnings": { - "type": "array", - "description": "Warnings encountered while processing document.", - "items": { - "$ref": "#/definitions/TextAnalyticsWarning" - } - } - } - }, - "RequestStatistics": { - "type": "object", - "required": [ - "documentsCount", - "validDocumentsCount", - "erroneousDocumentsCount", - "transactionsCount" - ], - "properties": { - "documentsCount": { - "type": "integer", - "format": "int32", - "description": "Number of documents submitted in the request." - }, - "validDocumentsCount": { - "type": "integer", - "format": "int32", - "description": "Number of valid documents. This excludes empty, over-size limit or non-supported languages documents." - }, - "erroneousDocumentsCount": { - "type": "integer", - "format": "int32", - "description": "Number of invalid documents. This includes empty, over-size limit or non-supported languages documents." - }, - "transactionsCount": { - "type": "integer", - "format": "int64", - "description": "Number of transactions for the request." - } - }, - "description": "if showStats=true was specified in the request this field will contain information about the request payload." - }, - "DocumentStatistics": { - "type": "object", - "required": [ - "charactersCount", - "transactionsCount" - ], - "properties": { - "charactersCount": { - "type": "integer", - "format": "int32", - "description": "Number of text elements recognized in the document." - }, - "transactionsCount": { - "type": "integer", - "format": "int32", - "description": "Number of transactions for the document." - } - }, - "description": "if showStats=true was specified in the request this field will contain information about the document payload." - }, - "SentimentConfidenceScorePerLabel": { - "type": "object", - "required": [ - "positive", - "neutral", - "negative" - ], - "properties": { - "positive": { - "type": "number", - "format": "double" - }, - "neutral": { - "type": "number", - "format": "double" - }, - "negative": { - "type": "number", - "format": "double" - } - }, - "description": "Represents the confidence scores between 0 and 1 across all sentiment classes: positive, neutral, negative." - }, - "SentenceSentiment": { - "type": "object", - "required": [ - "text", - "sentiment", - "confidenceScores", - "offset", - "length" - ], - "properties": { - "text": { - "type": "string", - "description": "The sentence text." - }, - "sentiment": { - "type": "string", - "description": "The predicted Sentiment for the sentence.", - "enum": [ - "positive", - "neutral", - "negative" - ], - "x-ms-enum": { - "name": "SentenceSentimentValue", - "modelAsString": false - } - }, - "confidenceScores": { - "description": "The sentiment confidence score between 0 and 1 for the sentence for all classes.", - "$ref": "#/definitions/SentimentConfidenceScorePerLabel" - }, - "offset": { - "type": "integer", - "format": "int32", - "description": "The sentence offset from the start of the document." - }, - "length": { - "type": "integer", - "format": "int32", - "description": "The length of the sentence." - }, - "aspects": { - "type": "array", - "description": "The array of aspect object for the sentence.", - "items": { - "$ref": "#/definitions/SentenceAspect" - } - }, - "opinions": { - "type": "array", - "description": "The array of opinion object for the sentence.", - "items": { - "$ref": "#/definitions/SentenceOpinion" - } - } - } - }, - "SentenceAspect": { - "type": "object", - "required": [ - "confidenceScores", - "length", - "offset", - "relations", - "sentiment", - "text" - ], - "properties": { - "sentiment": { - "type": "string", - "enum": [ - "positive", - "mixed", - "negative" - ], - "x-ms-enum": { - "name": "TokenSentimentValue", - "modelAsString": false - }, - "description": "Aspect level sentiment for the aspect in the sentence." - }, - "confidenceScores": { - "description": "Aspect level sentiment confidence scores for the aspect in the sentence.", - "$ref": "#/definitions/AspectConfidenceScoreLabel" - }, - "offset": { - "type": "integer", - "format": "int32", - "description": "The aspect offset from the start of the sentence." - }, - "length": { - "type": "integer", - "format": "int32", - "description": "The length of the aspect." - }, - "text": { - "type": "string", - "description": "The aspect text detected." - }, - "relations": { - "type": "array", - "description": "The array of either opinion or aspect object which is related to the aspect.", - "items": { - "$ref": "#/definitions/AspectRelation" - } - } - } - }, - "SentenceOpinion": { - "type": "object", - "required": [ - "confidenceScores", - "isNegated", - "length", - "offset", - "sentiment", - "text" - ], - "properties": { - "sentiment": { - "type": "string", - "enum": [ - "positive", - "mixed", - "negative" - ], - "x-ms-enum": { - "name": "TokenSentimentValue", - "modelAsString": false - }, - "description": "Opinion level sentiment for the aspect in the sentence." - }, - "confidenceScores": { - "description": "Opinion level sentiment confidence scores for the aspect in the sentence.", - "$ref": "#/definitions/AspectConfidenceScoreLabel" - }, - "offset": { - "type": "integer", - "format": "int32", - "description": "The opinion offset from the start of the sentence." - }, - "length": { - "type": "integer", - "format": "int32", - "description": "The length of the opinion." - }, - "text": { - "type": "string", - "description": "The aspect text detected." - }, - "isNegated": { - "type": "boolean", - "description": "The indicator representing if the opinion is negated." - } - } - }, - "AspectRelation": { - "type": "object", - "required": [ - "ref", - "relationType" - ], - "properties": { - "relationType": { - "type": "string", - "enum": [ - "opinion", - "aspect" - ], - "x-ms-enum": { - "name": "AspectRelationType", - "modelAsString": false - }, - "description": "The type related to the aspect." - }, - "ref": { - "type": "string", - "description": "The JSON pointer indicating the linked object." - } - } - }, - "AspectConfidenceScoreLabel": { - "type": "object", - "required": [ - "negative", - "positive" - ], - "properties": { - "positive": { - "type": "number", - "format": "double" - }, - "negative": { - "type": "number", - "format": "double" - } - }, - "description": "Represents the confidence scores across all sentiment classes: positive, neutral, negative." - }, - "EntitiesResult": { - "type": "object", - "required": [ - "documents", - "errors", - "modelVersion" - ], - "properties": { - "documents": { - "type": "array", - "description": "Response by document", - "items": { - "$ref": "#/definitions/DocumentEntities" - } - }, - "errors": { - "type": "array", - "description": "Errors by document id.", - "items": { - "$ref": "#/definitions/DocumentError" - } - }, - "statistics": { - "$ref": "#/definitions/RequestStatistics" - }, - "modelVersion": { - "type": "string", - "description": "This field indicates which model is used for scoring." - } - } - }, - "DocumentEntities": { - "type": "object", - "required": [ - "id", - "entities", - "warnings" - ], - "properties": { - "id": { - "type": "string", - "description": "Unique, non-empty document identifier." - }, - "entities": { - "type": "array", - "description": "Recognized entities in the document.", - "items": { - "$ref": "#/definitions/Entity" - } - }, - "warnings": { - "type": "array", - "description": "Warnings encountered while processing document.", - "items": { - "$ref": "#/definitions/TextAnalyticsWarning" - } - }, - "statistics": { - "description": "if showStats=true was specified in the request this field will contain information about the document payload.", - "$ref": "#/definitions/DocumentStatistics" - } - } - }, - "PiiDocumentEntities": { - "type": "object", - "required": [ - "id", - "redactedText", - "entities", - "warnings" - ], - "properties": { - "id": { - "type": "string", - "description": "Unique, non-empty document identifier." - }, - "redactedText": { - "type": "string", - "description": "Returns redacted text." - }, - "entities": { - "type": "array", - "description": "Recognized entities in the document.", - "items": { - "$ref": "#/definitions/Entity" - } - }, - "warnings": { - "type": "array", - "description": "Warnings encountered while processing document.", - "items": { - "$ref": "#/definitions/TextAnalyticsWarning" - } - }, - "statistics": { - "description": "if showStats=true was specified in the request this field will contain information about the document payload.", - "$ref": "#/definitions/DocumentStatistics" - } - } - }, - "Entity": { - "type": "object", - "required": [ - "text", - "category", - "offset", - "length", - "confidenceScore" - ], - "properties": { - "text": { - "type": "string", - "description": "Entity text as appears in the request." - }, - "category": { - "type": "string", - "description": "Entity type." - }, - "subcategory": { - "type": "string", - "description": "(Optional) Entity sub type." - }, - "offset": { - "type": "integer", - "format": "int32", - "description": "Start position for the entity text. Use of different 'stringIndexType' values can affect the offset returned." - }, - "length": { - "type": "integer", - "format": "int32", - "description": "Length for the entity text. Use of different 'stringIndexType' values can affect the length returned." - }, - "confidenceScore": { - "type": "number", - "format": "double", - "description": "Confidence score between 0 and 1 of the extracted entity." - } - } - }, - "EntityLinkingResult": { - "type": "object", - "required": [ - "documents", - "errors", - "modelVersion" - ], - "properties": { - "documents": { - "type": "array", - "description": "Response by document", - "items": { - "$ref": "#/definitions/DocumentLinkedEntities" - } - }, - "errors": { - "type": "array", - "description": "Errors by document id.", - "items": { - "$ref": "#/definitions/DocumentError" - } - }, - "statistics": { - "$ref": "#/definitions/RequestStatistics" - }, - "modelVersion": { - "type": "string", - "description": "This field indicates which model is used for scoring." - } - } - }, - "DocumentLinkedEntities": { - "type": "object", - "required": [ - "id", - "entities", - "warnings" - ], - "properties": { - "id": { - "type": "string", - "description": "Unique, non-empty document identifier." - }, - "entities": { - "type": "array", - "description": "Recognized well-known entities in the document.", - "items": { - "$ref": "#/definitions/LinkedEntity" - } - }, - "warnings": { - "type": "array", - "description": "Warnings encountered while processing document.", - "items": { - "$ref": "#/definitions/TextAnalyticsWarning" - } - }, - "statistics": { - "description": "if showStats=true was specified in the request this field will contain information about the document payload.", - "$ref": "#/definitions/DocumentStatistics" - } - } - }, - "HealthcareJobState": { - "allOf": [ - { - "$ref": "#/definitions/JobMetadata" - }, - { - "properties": { - "results": { - "$ref": "#/definitions/HealthcareResult" - }, - "errors": { - "items": { - "$ref": "#/definitions/TextAnalyticsError" - }, - "type": "array" - } - }, - "type": "object" - }, - { - "$ref": "#/definitions/Pagination" - } - ] - }, - "HealthcareResult": { - "type": "object", - "required": [ - "documents", - "errors", - "modelVersion" - ], - "properties": { - "documents": { - "type": "array", - "description": "Response by document", - "items": { - "$ref": "#/definitions/DocumentHealthcareEntities" - } - }, - "errors": { - "type": "array", - "description": "Errors by document id.", - "items": { - "$ref": "#/definitions/DocumentError" - } - }, - "statistics": { - "$ref": "#/definitions/RequestStatistics" - }, - "modelVersion": { - "type": "string", - "description": "This field indicates which model is used for scoring." - } - } - }, - "DocumentHealthcareEntities": { - "type": "object", - "required": [ - "id", - "entities", - "relations", - "warnings" - ], - "properties": { - "id": { - "type": "string", - "description": "Unique, non-empty document identifier." - }, - "entities": { - "description": "Healthcare entities.", - "type": "array", - "items": { - "$ref": "#/definitions/HealthcareEntity" - } - }, - "relations": { - "type": "array", - "description": "Healthcare entity relations.", - "items": { - "$ref": "#/definitions/HealthcareRelation" - } - }, - "warnings": { - "type": "array", - "description": "Warnings encountered while processing document.", - "items": { - "$ref": "#/definitions/TextAnalyticsWarning" - } - }, - "statistics": { - "description": "if showStats=true was specified in the request this field will contain information about the document payload.", - "$ref": "#/definitions/DocumentStatistics" - } - } - }, - "HealthcareEntity": { - "type": "object", - "allOf": [ - { - "$ref": "#/definitions/Entity" - }, - { - "required": [ - "isNegated" - ], - "properties": { - "isNegated": { - "type": "boolean" - }, - "links": { - "description": "Entity references in known data sources.", - "type": "array", - "items": { - "$ref": "#/definitions/HealthcareEntityLink" - } - } - } - } - ] - }, - "HealthcareRelation": { - "type": "object", - "required": [ - "relationType", - "bidirectional", - "source", - "target" - ], - "properties": { - "relationType": { - "description": "Type of relation. Examples include: `DosageOfMedication` or 'FrequencyOfMedication', etc.", - "type": "string" - }, - "bidirectional": { - "description": "If true the relation between the entities is bidirectional, otherwise directionality is source to target.", - "type": "boolean" - }, - "source": { - "description": "Reference link to the source entity.", - "type": "string" - }, - "target": { - "description": "Reference link to the target entity.", - "type": "string" - } - } - }, - "HealthcareEntityLink": { - "type": "object", - "required": [ - "dataSource", - "id" - ], - "properties": { - "dataSource": { - "description": "Entity Catalog. Examples include: UMLS, CHV, MSH, etc.", - "type": "string" - }, - "id": { - "description": "Entity id in the given source catalog.", - "type": "string" - } - } - }, - "LinkedEntity": { - "type": "object", - "required": [ - "name", - "matches", - "language", - "url", - "dataSource" - ], - "properties": { - "name": { - "type": "string", - "description": "Entity Linking formal name." - }, - "matches": { - "type": "array", - "description": "List of instances this entity appears in the text.", - "items": { - "$ref": "#/definitions/Match" - } - }, - "language": { - "type": "string", - "description": "Language used in the data source." - }, - "id": { - "type": "string", - "description": "Unique identifier of the recognized entity from the data source." - }, - "url": { - "type": "string", - "description": "URL for the entity's page from the data source." - }, - "dataSource": { - "type": "string", - "description": "Data source used to extract entity linking, such as Wiki/Bing etc." - }, - "bingId": { - "type": "string", - "description": "Bing Entity Search API unique identifier of the recognized entity." - } - } - }, - "Match": { - "type": "object", - "required": [ - "confidenceScore", - "text", - "offset", - "length" - ], - "properties": { - "confidenceScore": { - "type": "number", - "format": "double", - "description": "If a well-known item is recognized, a decimal number denoting the confidence level between 0 and 1 will be returned." - }, - "text": { - "type": "string", - "description": "Entity text as appears in the request." - }, - "offset": { - "type": "integer", - "format": "int32", - "description": "Start position for the entity match text." - }, - "length": { - "type": "integer", - "format": "int32", - "description": "Length for the entity match text." - } - } - }, - "JobDescriptor": { - "properties": { - "displayName": { - "description": "Optional display name for the analysis job.", - "type": "string" - } - }, - "type": "object" - }, - "JobMetadata": { - "properties": { - "createdDateTime": { - "format": "date-time", - "type": "string" - }, - "displayName": { - "type": "string" - }, - "expirationDateTime": { - "format": "date-time", - "type": "string" - }, - "jobId": { - "format": "uuid", - "type": "string" - }, - "lastUpdateDateTime": { - "format": "date-time", - "type": "string" - }, - "status": { - "enum": [ - "notstarted", - "running", - "succeeded", - "failed", - "cancelled", - "cancelling", - "partiallycompleted" - ], - "type": "string", - "x-ms-enum": { - "modelAsString": false, - "name": "State" - } - } - }, - "required": [ - "jobId", - "lastUpdateDateTime", - "createdDateTime", - "status" - ], - "type": "object" - }, - "KeyPhraseResult": { - "type": "object", - "required": [ - "documents", - "errors", - "modelVersion" - ], - "properties": { - "documents": { - "type": "array", - "description": "Response by document", - "items": { - "$ref": "#/definitions/DocumentKeyPhrases" - } - }, - "errors": { - "type": "array", - "description": "Errors by document id.", - "items": { - "$ref": "#/definitions/DocumentError" - } - }, - "statistics": { - "$ref": "#/definitions/RequestStatistics" - }, - "modelVersion": { - "type": "string", - "description": "This field indicates which model is used for scoring." - } - } - }, - "DocumentKeyPhrases": { - "type": "object", - "required": [ - "id", - "keyPhrases", - "warnings" - ], - "properties": { - "id": { - "type": "string", - "description": "Unique, non-empty document identifier." - }, - "keyPhrases": { - "type": "array", - "description": "A list of representative words or phrases. The number of key phrases returned is proportional to the number of words in the input document.", - "items": { - "type": "string" - } - }, - "warnings": { - "type": "array", - "description": "Warnings encountered while processing document.", - "items": { - "$ref": "#/definitions/TextAnalyticsWarning" - } - }, - "statistics": { - "description": "if showStats=true was specified in the request this field will contain information about the document payload.", - "$ref": "#/definitions/DocumentStatistics" - } - } - }, - "KeyPhrasesTask": { - "properties": { - "parameters": { - "properties": { - "model-version": { - "default": "latest", - "type": "string" - } - }, - "type": "object" - } - }, - "type": "object" - }, - "LanguageBatchInput": { - "type": "object", - "required": [ - "documents" - ], - "properties": { - "documents": { - "type": "array", - "items": { - "$ref": "#/definitions/LanguageInput" - } - } - } - }, - "LanguageInput": { - "type": "object", - "required": [ - "id", - "text" - ], - "properties": { - "id": { - "type": "string", - "description": "Unique, non-empty document identifier." - }, - "text": { - "type": "string" - }, - "countryHint": { - "type": "string" - } - } - }, - "Pagination": { - "properties": { - "@nextLink": { - "type": "string" - } - }, - "type": "object" - }, - "PiiResult": { - "type": "object", - "required": [ - "documents", - "errors", - "modelVersion" - ], - "properties": { - "documents": { - "type": "array", - "description": "Response by document", - "items": { - "$ref": "#/definitions/PiiDocumentEntities" - } - }, - "errors": { - "type": "array", - "description": "Errors by document id.", - "items": { - "$ref": "#/definitions/DocumentError" - } - }, - "statistics": { - "$ref": "#/definitions/RequestStatistics" - }, - "modelVersion": { - "type": "string", - "description": "This field indicates which model is used for scoring." - } - } - }, - "LanguageResult": { - "type": "object", - "required": [ - "documents", - "errors", - "modelVersion" - ], - "properties": { - "documents": { - "type": "array", - "description": "Response by document", - "items": { - "$ref": "#/definitions/DocumentLanguage" - } - }, - "errors": { - "type": "array", - "description": "Errors by document id.", - "items": { - "$ref": "#/definitions/DocumentError" - } - }, - "statistics": { - "$ref": "#/definitions/RequestStatistics" - }, - "modelVersion": { - "type": "string", - "description": "This field indicates which model is used for scoring." - } - } - }, - "DocumentLanguage": { - "type": "object", - "required": [ - "id", - "detectedLanguage", - "warnings" - ], - "properties": { - "id": { - "type": "string", - "description": "Unique, non-empty document identifier." - }, - "detectedLanguage": { - "description": "Detected Language.", - "$ref": "#/definitions/DetectedLanguage" - }, - "warnings": { - "type": "array", - "description": "Warnings encountered while processing document.", - "items": { - "$ref": "#/definitions/TextAnalyticsWarning" - } - }, - "statistics": { - "description": "if showStats=true was specified in the request this field will contain information about the document payload.", - "$ref": "#/definitions/DocumentStatistics" - } - } - }, - "DetectedLanguage": { - "type": "object", - "required": [ - "name", - "iso6391Name", - "confidenceScore" - ], - "properties": { - "name": { - "type": "string", - "description": "Long name of a detected language (e.g. English, French)." - }, - "iso6391Name": { - "type": "string", - "description": "A two letter representation of the detected language according to the ISO 639-1 standard (e.g. en, fr)." - }, - "confidenceScore": { - "type": "number", - "format": "double", - "description": "A confidence score between 0 and 1. Scores close to 1 indicate 100% certainty that the identified language is true." - } - } - }, - "StringIndexType": { - "default": "TextElements_v8", - "enum": [ - "TextElements_v8", - "UnicodeCodePoint", - "Utf16CodeUnit" - ], - "x-ms-enum": { - "name": "StringIndexTypeResponse", - "modelAsString": false, - "values": [ - { - "value": "TextElements_v8", - "description": "Returned offset and length values will correspond to TextElements (Graphemes and Grapheme clusters) confirming to the Unicode 8.0.0 standard. Use this option if your application is written in .Net Framework or .Net Core and you will be using StringInfo." - }, - { - "value": "UnicodeCodePoint", - "description": "Returned offset and length values will correspond to Unicode code points. Use this option if your application is written in a language that support Unicode, for example Python." - }, - { - "value": "Utf16CodeUnit", - "description": "Returned offset and length values will correspond to UTF-16 code units. Use this option if your application is written in a language that support Unicode, for example Java, JavaScript." - } - ] - }, - "type": "string" - } - }, - "parameters": { - "Endpoint": { - "name": "Endpoint", - "description": "Supported Cognitive Services endpoints (protocol and hostname, for example: https://westus.api.cognitive.microsoft.com).", - "x-ms-parameter-location": "client", - "required": true, - "type": "string", - "in": "path", - "x-ms-skip-url-encoding": true - }, - "StringIndexType": { - "name": "stringIndexType", - "in": "query", - "type": "string", - "description": "(Optional) Specifies the method used to interpret string offsets. Defaults to Text Elements (Graphemes) according to Unicode v8.0.0. For additional information see https://aka.ms/text-analytics-offsets", - "default": "TextElements_v8", - "enum": [ - "TextElements_v8", - "UnicodeCodePoint", - "Utf16CodeUnit" - ], - "x-ms-enum": { - "name": "StringIndexType", - "modelAsString": true, - "values": [ - { - "value": "TextElements_v8", - "description": "Returned offset and length values will correspond to TextElements (Graphemes and Grapheme clusters) confirming to the Unicode 8.0.0 standard. Use this option if your application is written in .Net Framework or .Net Core and you will be using StringInfo." - }, - { - "value": "UnicodeCodePoint", - "description": "Returned offset and length values will correspond to Unicode code points. Use this option if your application is written in a language that support Unicode, for example Python." - }, - { - "value": "Utf16CodeUnit", - "description": "Returned offset and length values will correspond to UTF-16 code units. Use this option if your application is written in a language that support Unicode, for example Java, JavaScript." - } - ] - }, - "x-ms-parameter-location": "method" - }, - "JobId": { - "description": "Job ID", - "format": "uuid", - "in": "path", - "name": "jobId", - "required": true, - "type": "string", - "x-ms-parameter-location": "method" - }, - "ShowStats": { - "name": "showStats", - "in": "query", - "description": "(Optional) if set to true, response will contain request and document level statistics.", - "type": "boolean", - "required": false, - "x-ms-parameter-location": "method" - }, - "ModelVersion": { - "name": "model-version", - "in": "query", - "description": "(Optional) This value indicates which model will be used for scoring. If a model-version is not specified, the API should default to the latest, non-preview version. ", - "type": "string", - "required": false, - "x-ms-parameter-location": "method" - }, - "MultiLanguageInput": { - "in": "body", - "name": "input", - "description": "Collection of documents to analyze.", - "required": true, - "schema": { - "$ref": "#/definitions/MultiLanguageBatchInput" - }, - "x-ms-parameter-location": "method" - }, - "LanguageInput": { - "in": "body", - "name": "input", - "description": "Collection of documents to analyze for language endpoint.", - "required": true, - "schema": { - "$ref": "#/definitions/LanguageBatchInput" - }, - "x-ms-parameter-location": "method" - } - } -} \ No newline at end of file From 6ce902d6da7fe3423e330943739bd26129b092a6 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Fri, 13 Nov 2020 14:33:46 -0800 Subject: [PATCH 52/58] update session records to remove top and skip --- .../src/AnalyzeOperation.cs | 4 +- .../AnalyzeOperationBatchWithPHIDomain.json | 3309 ++++++---- ...alyzeOperationBatchWithPHIDomainAsync.json | 3189 ++++++---- .../AnalyzeOperationTest.json | 208 +- .../AnalyzeOperationTestAsync.json | 125 +- .../AnalyzeOperationWithLanguageTest.json | 174 +- ...AnalyzeOperationWithLanguageTestAsync.json | 196 +- .../AnalyzeOperationWithMultipleTasks.json | 5311 +++++++++++------ ...nalyzeOperationWithMultipleTasksAsync.json | 3495 ++++++----- ...lyzeSentimentBatchConvenienceFullTest.json | 20 +- ...entimentBatchConvenienceFullTestAsync.json | 20 +- .../AnalyzeSentimentBatchConvenienceTest.json | 20 +- ...yzeSentimentBatchConvenienceTestAsync.json | 18 +- ...tBatchConvenienceWithCancellationTest.json | 20 +- ...hConvenienceWithCancellationTestAsync.json | 20 +- ...nienceWithLanguageAndCancellationTest.json | 20 +- ...eWithLanguageAndCancellationTestAsync.json | 20 +- ...venienceWithLanguageAndStatisticsTest.json | 20 +- ...nceWithLanguageAndStatisticsTestAsync.json | 20 +- ...imentBatchConvenienceWithLanguageTest.json | 20 +- ...BatchConvenienceWithLanguageTestAsync.json | 20 +- ...BatchConvenienceWithOpinionMiningTest.json | 20 +- ...ConvenienceWithOpinionMiningTestAsync.json | 18 +- ...enceWithStatisticsAndCancellationTest.json | 20 +- ...ithStatisticsAndCancellationTestAsync.json | 20 +- ...entBatchConvenienceWithStatisticsTest.json | 20 +- ...tchConvenienceWithStatisticsTestAsync.json | 20 +- .../AnalyzeSentimentBatchTest.json | 20 +- .../AnalyzeSentimentBatchTestAsync.json | 18 +- .../AnalyzeSentimentBatchWithErrorTest.json | 20 +- ...alyzeSentimentBatchWithErrorTestAsync.json | 20 +- .../AnalyzeSentimentBatchWithNullIdTest.json | 20 +- ...lyzeSentimentBatchWithNullIdTestAsync.json | 20 +- ...AnalyzeSentimentBatchWithNullTextTest.json | 20 +- ...zeSentimentBatchWithNullTextTestAsync.json | 18 +- ...zeSentimentBatchWithOpinionMiningTest.json | 20 +- ...timentBatchWithOpinionMiningTestAsync.json | 20 +- ...alyzeSentimentBatchWithStatisticsTest.json | 20 +- ...SentimentBatchWithStatisticsTestAsync.json | 20 +- .../AnalyzeSentimentTest.json | 20 +- .../AnalyzeSentimentTestAsync.json | 20 +- .../AnalyzeSentimentWithCancellationTest.json | 20 +- ...yzeSentimentWithCancellationTestAsync.json | 20 +- ...timentWithLanguageAndCancellationTest.json | 20 +- ...tWithLanguageAndCancellationTestAsync.json | 20 +- .../AnalyzeSentimentWithLanguageTest.json | 20 +- ...AnalyzeSentimentWithLanguageTestAsync.json | 18 +- .../AnalyzeSentimentWithOpinionMining.json | 20 +- ...nalyzeSentimentWithOpinionMiningAsync.json | 20 +- ...nalyzeSentimentWithOpinionMiningEmpty.json | 20 +- ...eSentimentWithOpinionMiningEmptyAsync.json | 20 +- ...lyzeSentimentWithOpinionMiningNegated.json | 20 +- ...entimentWithOpinionMiningNegatedAsync.json | 20 +- .../DetectLanguageBatchConvenienceTest.json | 20 +- ...tectLanguageBatchConvenienceTestAsync.json | 20 +- ...ageBatchConvenienceWithStatisticsTest.json | 20 +- ...tchConvenienceWithStatisticsTestAsync.json | 20 +- .../DetectLanguageBatchTest.json | 20 +- .../DetectLanguageBatchTestAsync.json | 18 +- .../DetectLanguageBatchWithErrorTest.json | 20 +- ...DetectLanguageBatchWithErrorTestAsync.json | 20 +- .../DetectLanguageBatchWithNullIdTest.json | 20 +- ...etectLanguageBatchWithNullIdTestAsync.json | 20 +- .../DetectLanguageBatchWithNullTextTest.json | 18 +- ...ectLanguageBatchWithNullTextTestAsync.json | 18 +- ...DetectLanguageBatchWithStatisticsTest.json | 20 +- ...tLanguageBatchWithStatisticsTestAsync.json | 20 +- .../DetectLanguageTest.json | 20 +- .../DetectLanguageTestAsync.json | 20 +- .../DetectLanguageWithCountryHintTest.json | 18 +- ...etectLanguageWithCountryHintTestAsync.json | 20 +- ...etectLanguageWithErrorCountryHintTest.json | 20 +- ...LanguageWithErrorCountryHintTestAsync.json | 20 +- ...DetectLanguageWithNoneCountryHintTest.json | 20 +- ...tLanguageWithNoneCountryHintTestAsync.json | 20 +- ...anguageWithNoneDefaultCountryHintTest.json | 20 +- ...geWithNoneDefaultCountryHintTestAsync.json | 18 +- ...ExtractKeyPhrasesBatchConvenienceTest.json | 20 +- ...ctKeyPhrasesBatchConvenienceTestAsync.json | 20 +- ...sesBatchConvenienceWithStatisticsTest.json | 20 +- ...tchConvenienceWithStatisticsTestAsync.json | 20 +- .../ExtractKeyPhrasesBatchTest.json | 18 +- .../ExtractKeyPhrasesBatchTestAsync.json | 18 +- .../ExtractKeyPhrasesBatchWithErrorTest.json | 20 +- ...ractKeyPhrasesBatchWithErrorTestAsync.json | 20 +- .../ExtractKeyPhrasesBatchWithNullIdTest.json | 20 +- ...actKeyPhrasesBatchWithNullIdTestAsync.json | 20 +- ...xtractKeyPhrasesBatchWithNullTextTest.json | 18 +- ...tKeyPhrasesBatchWithNullTextTestAsync.json | 20 +- ...tractKeyPhrasesBatchWithSatisticsTest.json | 20 +- ...KeyPhrasesBatchWithSatisticsTestAsync.json | 20 +- .../ExtractKeyPhrasesTest.json | 18 +- .../ExtractKeyPhrasesTestAsync.json | 20 +- .../ExtractKeyPhrasesWithLanguageTest.json | 20 +- ...xtractKeyPhrasesWithLanguageTestAsync.json | 18 +- .../ExtractKeyPhrasesWithWarningTest.json | 20 +- ...ExtractKeyPhrasesWithWarningTestAsync.json | 20 +- ...RecognizeEntitiesBatchConvenienceTest.json | 20 +- ...nizeEntitiesBatchConvenienceTestAsync.json | 20 +- ...iesBatchConvenienceWithStatisticsTest.json | 20 +- ...tchConvenienceWithStatisticsTestAsync.json | 20 +- .../RecognizeEntitiesBatchTest.json | 20 +- .../RecognizeEntitiesBatchTestAsync.json | 20 +- .../RecognizeEntitiesBatchWithErrorTest.json | 20 +- ...ognizeEntitiesBatchWithErrorTestAsync.json | 20 +- ...EntitiesBatchWithInvalidDocumentBatch.json | 20 +- ...iesBatchWithInvalidDocumentBatchAsync.json | 18 +- .../RecognizeEntitiesBatchWithNullIdTest.json | 20 +- ...gnizeEntitiesBatchWithNullIdTestAsync.json | 18 +- ...ecognizeEntitiesBatchWithNullTextTest.json | 18 +- ...izeEntitiesBatchWithNullTextTestAsync.json | 18 +- ...ognizeEntitiesBatchWithStatisticsTest.json | 20 +- ...eEntitiesBatchWithStatisticsTestAsync.json | 20 +- .../RecognizeEntitiesTest.json | 20 +- .../RecognizeEntitiesTestAsync.json | 20 +- .../RecognizeEntitiesWithLanguageTest.json | 20 +- ...ecognizeEntitiesWithLanguageTestAsync.json | 20 +- .../RecognizeEntitiesWithSubCategoryTest.json | 20 +- ...gnizeEntitiesWithSubCategoryTestAsync.json | 20 +- ...ealthcareEntitiesBatchConvenienceTest.json | 256 +- ...careEntitiesBatchConvenienceTestAsync.json | 164 +- ...iesBatchConvenienceWithStatisticsTest.json | 132 +- ...tchConvenienceWithStatisticsTestAsync.json | 134 +- .../RecognizeHealthcareEntitiesBatchTest.json | 164 +- ...gnizeHealthcareEntitiesBatchTestAsync.json | 160 +- ...eHealthcareEntitiesBatchWithErrorTest.json | 138 +- ...thcareEntitiesBatchWithErrorTestAsync.json | 170 +- ...HealthcareEntitiesBatchWithPagination.json | 294 +- ...hcareEntitiesBatchWithPaginationAsync.json | 284 +- ...thcareEntitiesBatchWithStatisticsTest.json | 108 +- ...eEntitiesBatchWithStatisticsTestAsync.json | 108 +- .../RecognizeHealthcareEntitiesTest.json | 164 +- .../RecognizeHealthcareEntitiesTestAsync.json | 168 +- ...izeHealthcareEntitiesWithLanguageTest.json | 140 +- ...althcareEntitiesWithLanguageTestAsync.json | 136 +- ...zeHealthcareEntitiesWithSkipParameter.json | 166 +- ...lthcareEntitiesWithSkipParameterAsync.json | 164 +- ...izeHealthcareEntitiesWithTopParameter.json | 138 +- ...althcareEntitiesWithTopParameterAsync.json | 142 +- ...izeLinkedEntitiesBatchConvenienceTest.json | 20 +- ...nkedEntitiesBatchConvenienceTestAsync.json | 20 +- ...iesBatchConvenienceWithStatisticsTest.json | 20 +- ...tchConvenienceWithStatisticsTestAsync.json | 20 +- .../RecognizeLinkedEntitiesBatchTest.json | 20 +- ...RecognizeLinkedEntitiesBatchTestAsync.json | 20 +- ...gnizeLinkedEntitiesBatchWithErrorTest.json | 18 +- ...LinkedEntitiesBatchWithErrorTestAsync.json | 20 +- ...EntitiesBatchWithInvalidDocumentBatch.json | 18 +- ...iesBatchWithInvalidDocumentBatchAsync.json | 20 +- ...nizeLinkedEntitiesBatchWithNullIdTest.json | 20 +- ...inkedEntitiesBatchWithNullIdTestAsync.json | 20 +- ...zeLinkedEntitiesBatchWithNullTextTest.json | 20 +- ...kedEntitiesBatchWithNullTextTestAsync.json | 18 +- ...LinkedEntitiesBatchWithStatisticsTest.json | 20 +- ...dEntitiesBatchWithStatisticsTestAsync.json | 20 +- .../RecognizeLinkedEntitiesTest.json | 20 +- .../RecognizeLinkedEntitiesTestAsync.json | 18 +- ...cognizeLinkedEntitiesWithLanguageTest.json | 20 +- ...zeLinkedEntitiesWithLanguageTestAsync.json | 20 +- ...ognizePiiEntitiesBatchConvenienceTest.json | 20 +- ...ePiiEntitiesBatchConvenienceTestAsync.json | 20 +- ...iesBatchConvenienceWithStatisticsTest.json | 20 +- ...tchConvenienceWithStatisticsTestAsync.json | 20 +- .../RecognizePiiEntitiesBatchTest.json | 20 +- .../RecognizePiiEntitiesBatchTestAsync.json | 20 +- ...ecognizePiiEntitiesBatchWithErrorTest.json | 20 +- ...izePiiEntitiesBatchWithErrorTestAsync.json | 20 +- ...izePiiEntitiesBatchWithStatisticsTest.json | 20 +- ...iEntitiesBatchWithStatisticsTestAsync.json | 20 +- .../RecognizePiiEntitiesTest.json | 20 +- .../RecognizePiiEntitiesTestAsync.json | 20 +- .../RecognizePiiEntitiesWithDomainTest.json | 20 +- ...cognizePiiEntitiesWithDomainTestAsync.json | 20 +- .../RecognizePiiEntitiesWithLanguageTest.json | 20 +- ...gnizePiiEntitiesWithLanguageTestAsync.json | 20 +- .../EntitiesCategories.json | 20 +- .../EntitiesCategoriesAsync.json | 20 +- .../RotateApiKey.json | 52 +- .../RotateApiKeyAsync.json | 54 +- .../TextInKoreanNFC.json | 20 +- .../TextInKoreanNFCAsync.json | 20 +- .../TextWithDiacriticsNFC.json | 20 +- .../TextWithDiacriticsNFCAsync.json | 20 +- .../TextWithEmoji.json | 20 +- .../TextWithEmojiAsync.json | 20 +- 185 files changed, 13554 insertions(+), 8927 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperation.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperation.cs index e737d79f5e6f4..4c6638f9b518d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperation.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/AnalyzeOperation.cs @@ -197,8 +197,8 @@ private async ValueTask UpdateStatusAsync(bool async, CancellationToke try { Response update = async - ? await _serviceClient.AnalyzeStatusAsync(Id, _showStats, _top, _skip, cancellationToken).ConfigureAwait(false) - : _serviceClient.AnalyzeStatus(Id, _showStats, _top, _skip, cancellationToken); + ? await _serviceClient.AnalyzeStatusAsync(Id, _showStats, null, null, cancellationToken).ConfigureAwait(false) + : _serviceClient.AnalyzeStatus(Id, _showStats, null, null, cancellationToken); _response = update.GetRawResponse(); diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json index 9c51ef1ba635a..9d4a0be9a7b98 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "311", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2263a60e96b26e4994f30a7c23bf6cc6-be4e7827ee9e2d4a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-5523eef104b44246ae1f18ff282add45-2d320cdbac1c9348-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "cfe8e2f8ee3911d883f149c5ba708a25", "x-ms-return-client-request-id": "true" }, @@ -37,49 +43,55 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "e7f408fe-6938-46a9-9fb7-3e5bc9ddfa9e", - "Date": "Thu, 12 Nov 2020 19:22:32 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", + "apim-request-id": "29596475-4146-468c-a76f-0408f92699d4", + "Date": "Fri, 13 Nov 2020 22:16:07 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "36" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "300" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "0af6547e6d21f99df5e133f9fb1abff6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "966d8773-94a0-47be-af59-d8560b8e6c0e", + "apim-request-id": "219d6f80-a546-46c2-9b59-31e2a261f2d5", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:22:32 GMT", + "Date": "Fri, 13 Nov 2020 22:16:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:32Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:07Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:32Z" + "lastUpdateDateTime": "2020-11-13T22:16:07Z" }, "completed": 0, "failed": 0, @@ -89,38 +101,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "1ffe04ae50f965a11f4bc1da8e14f022", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8c72eedc-3182-4b2e-9ecd-0a5b5573bcb0", + "apim-request-id": "c4e9b36c-e9a4-47b4-9e09-800945a37065", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:22:33 GMT", + "Date": "Fri, 13 Nov 2020 22:16:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "75" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "65" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", - "status": "notStarted", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", + "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -130,38 +148,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "1647a062e0a88b5844efda57badf1569", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "992198a7-8ff6-41f9-8b6c-65165ce669fa", + "apim-request-id": "e4fcb880-c30f-4b74-a8e0-b703ded5f751", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:22:34 GMT", + "Date": "Fri, 13 Nov 2020 22:16:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "47" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -171,38 +195,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b61653316b722e2cb391ead5abc26ae0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "29e5b92f-f5c4-449b-9268-2de26a4763f3", + "apim-request-id": "a845bec5-97dd-4885-b55d-de58195bde86", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:22:36 GMT", + "Date": "Fri, 13 Nov 2020 22:16:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "44" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -212,38 +242,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "5a9611f1a9d2cd4dab72da09754aaa40", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c72beac9-5e31-442f-8b8b-0fe094a5c6a0", + "apim-request-id": "7d736b56-42dd-4ed9-a29a-5c69b421efdd", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:22:37 GMT", + "Date": "Fri, 13 Nov 2020 22:16:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "63" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "89" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -253,38 +289,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "3ba9583539fdf7af74196317f682e081", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0a2abfc3-55cc-4c48-ac86-e21c3264fa45", + "apim-request-id": "64b50e6d-2a4c-4a65-a1d8-cc39d743f179", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:22:38 GMT", + "Date": "Fri, 13 Nov 2020 22:16:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "41" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -294,38 +336,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "a966f984bb48889605490aff9122b869", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a9709d87-8579-4c94-a0e6-45e820e6f7f3", + "apim-request-id": "3860e325-564e-43b1-a009-75ebcabdcb1e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:22:40 GMT", + "Date": "Fri, 13 Nov 2020 22:16:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "44" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -335,38 +383,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "52a0a9e62e19b7e3619fe5b94536d629", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6e820150-2941-489b-b83b-e2f4b8a39bc4", + "apim-request-id": "b06ded95-7e97-4195-b394-3272bd02620a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:22:41 GMT", + "Date": "Fri, 13 Nov 2020 22:16:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "45" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -376,38 +430,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "7c84589201e47af8c22036b42eb06652", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7b01c4c0-5424-4bc6-91ec-7a9a50d10855", + "apim-request-id": "09e85156-0446-4356-98a6-7bc622fd7a84", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:22:42 GMT", + "Date": "Fri, 13 Nov 2020 22:16:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "61" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -417,38 +477,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4c31fa618de2566816ae47a9d5dc42cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c7deace9-9662-4191-9a1b-5d15a8d5b690", + "apim-request-id": "eedb4f47-8372-47d4-8e71-fe7c8ecefe16", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:22:43 GMT", + "Date": "Fri, 13 Nov 2020 22:16:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "43" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -458,38 +524,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "386ce1723b9de485b12590f8f82e88b1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "faeed6d2-4aa0-4380-8f5e-6197032767cc", + "apim-request-id": "3f45e237-92aa-4f4a-a604-1853ceda9cde", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:22:44 GMT", + "Date": "Fri, 13 Nov 2020 22:16:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "39" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "62" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -499,38 +571,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4b5893388a040546f02e6635b94ea5e5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d4dc4948-3ba4-43ba-9483-c371d0ef8125", + "apim-request-id": "7fc2cc6d-1450-4b29-b8ff-fe899fd9cb18", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:22:45 GMT", + "Date": "Fri, 13 Nov 2020 22:16:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "36" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -540,38 +618,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4d4166de2e4325b5754c9abcfc6f5de7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "30b6de18-4a07-4704-bc2d-b924f349f5c0", + "apim-request-id": "33cb3776-2e2e-48af-a0a0-5191785aa356", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:22:47 GMT", + "Date": "Fri, 13 Nov 2020 22:16:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "37" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -581,38 +665,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "41709625f784e8cb9b67476ed54f2b62", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3db8d420-1f21-45e0-b884-7a1e18cfacb7", + "apim-request-id": "08437e54-70ef-4526-b0fa-528808acc0de", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:22:48 GMT", + "Date": "Fri, 13 Nov 2020 22:16:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "44" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -622,38 +712,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "921aaa803bed0a6edd33d6b7ef8a0880", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d91de1a4-ef52-4af8-bf28-09b96789a122", + "apim-request-id": "a5a37144-9ffc-472c-8e79-da5eecd83950", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:22:49 GMT", + "Date": "Fri, 13 Nov 2020 22:16:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "45" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -663,38 +759,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "220f7ed163dee7609b59b2dbe6464f25", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7407446f-ab9c-420e-a18a-b5c3077a58d6", + "apim-request-id": "9de2a918-1bd4-4ecb-9f9f-f7a23c6255f0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:22:51 GMT", + "Date": "Fri, 13 Nov 2020 22:16:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "55" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "68" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -704,38 +806,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "513b3721cb55eafa286564512013f810", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "52f13b29-62f3-4345-bab4-2050127b09ed", + "apim-request-id": "f37fe1c6-68cc-45fc-8406-224b2e942499", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:22:52 GMT", + "Date": "Fri, 13 Nov 2020 22:16:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "34" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -745,38 +853,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "569dc65e083f1d844a33f69389922497", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "33516755-e496-436e-ac0a-c36dfe4b9492", + "apim-request-id": "d6fc0458-c75a-426e-ab7c-bbda5398948c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:22:54 GMT", + "Date": "Fri, 13 Nov 2020 22:16:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "36" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -786,38 +900,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b795b0e3b74e062b8425fa78ff0fc687", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d432070f-4030-4275-8250-f7e234255ee9", + "apim-request-id": "e3a47dae-f4df-4dde-9dba-d44f85f08265", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:22:55 GMT", + "Date": "Fri, 13 Nov 2020 22:16:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "43" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -827,38 +947,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "1f7da160f8a919e6b31e0721d4676096", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8e6e13ac-609a-47d6-ab54-a032f3050776", + "apim-request-id": "f82c1aab-0d3e-4d3d-852d-a50d94bb94bd", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:22:56 GMT", + "Date": "Fri, 13 Nov 2020 22:16:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "59" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "53" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -868,38 +994,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "706dcc41417da7c29b97d2190d0c1e3a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c5f56b2b-2155-49b0-8e97-a24793977951", + "apim-request-id": "3b202fb9-ba13-44ef-b796-6411ea6343ae", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:22:57 GMT", + "Date": "Fri, 13 Nov 2020 22:16:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "43" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -909,38 +1041,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e8326f6d0514ebedca7c0430af09311d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b9b0b31f-cff6-41b5-b1cc-0528c834e781", + "apim-request-id": "aa752522-6ff3-483a-b85a-fe80b6834487", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:22:58 GMT", + "Date": "Fri, 13 Nov 2020 22:16:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "48" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "62" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -950,38 +1088,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "323763c556a21f09ded5841225cc0ba7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9143c7a1-ae98-43a4-859f-c8c72afb07fd", + "apim-request-id": "7191d879-f62f-4e25-9b26-2be9166c6b4c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:22:59 GMT", + "Date": "Fri, 13 Nov 2020 22:16:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "76" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "67" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -991,38 +1135,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "64b4cdff78343c81df81a6013c91f891", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0a056424-acd5-4265-973c-125a1fc00a96", + "apim-request-id": "b7d3cd31-225f-4504-baea-cefcabbf0542", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:01 GMT", + "Date": "Fri, 13 Nov 2020 22:16:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -1032,38 +1182,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "aa54b565ecd417976513093e80dbc5fd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f1f3d643-9d76-4dd4-b711-1ec1babf5a26", + "apim-request-id": "ec36e7ff-e2d7-4fc0-90cf-d7015bd1ba6c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:02 GMT", + "Date": "Fri, 13 Nov 2020 22:16:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "47" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "64" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -1073,38 +1229,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e2305d70cc544ce8e2fa5220af07e24c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "287af8ff-d42e-48db-8919-f1dfb27b0c48", + "apim-request-id": "6c0a4404-e323-4f32-bb7a-db7f3099c667", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:03 GMT", + "Date": "Fri, 13 Nov 2020 22:16:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "44" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -1114,38 +1276,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "70acf2dd617813d2359dff216e43bb04", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2f6cfe04-cab0-48a3-a31d-acbc79d9f56e", + "apim-request-id": "a6e3201b-83e4-48d3-bb51-0ccc5e8c01ce", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:04 GMT", + "Date": "Fri, 13 Nov 2020 22:16:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "36" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -1155,38 +1323,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "df91a9bb1561983ccc07c8da9977675d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ec43d539-20e9-4f8f-b3ea-faf347e8c649", + "apim-request-id": "e1253bcc-5ccb-4c9f-a1f1-a0a49209ebff", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:05 GMT", + "Date": "Fri, 13 Nov 2020 22:16:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "32" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -1196,38 +1370,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "8e60bc30552e0e848b1cacb7cdc7dd9f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "94d25942-7e4a-435e-ab7f-a09ee9eb69e8", + "apim-request-id": "67356597-2434-42da-aeab-9923951e7921", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:07 GMT", + "Date": "Fri, 13 Nov 2020 22:16:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "65" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "62" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -1237,38 +1417,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "06654e3f0376c7ebb614a37099f87abe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e95cd9cd-bfa2-46de-8fee-b14eb55c4657", + "apim-request-id": "af893cf2-6968-4756-9831-6b113e7011e2", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:08 GMT", + "Date": "Fri, 13 Nov 2020 22:16:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "63" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -1278,38 +1464,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b2f0a1362de265d5248254446985cb04", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c1cebe75-8e12-4944-859c-0734afdded07", + "apim-request-id": "c4d8c3ef-be08-4f0f-b145-4d1499cb1f51", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:09 GMT", + "Date": "Fri, 13 Nov 2020 22:16:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "40" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "53" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -1319,38 +1511,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4a9a282a60112de7d198d81ab1147592", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3ca23458-a05e-44e6-8df7-4857fd68a3dd", + "apim-request-id": "c4f90d09-88f3-4e07-96ed-8b692eb62e3e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:10 GMT", + "Date": "Fri, 13 Nov 2020 22:16:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "40" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "66" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -1360,38 +1558,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "2b80eea22bd612bc78ffe2f3aea65e30", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "12fcc078-e32e-41d6-93c5-443474f3bb64", + "apim-request-id": "7e0a6d3f-f429-40e5-a7f0-420ccf05abcb", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:11 GMT", + "Date": "Fri, 13 Nov 2020 22:16:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "61" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -1401,38 +1605,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "70459f492f5dd6acbac3e14954bbb40f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ef989b59-fa55-4d2d-8d09-d6f8bf40ab83", + "apim-request-id": "b22bb1a0-6edc-439d-8fe9-bdd6ddd139c0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:13 GMT", + "Date": "Fri, 13 Nov 2020 22:16:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "42" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -1442,38 +1652,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "7aa2c10d9f04ff2e6c88d2127df37e2a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b3cd6992-2393-4fe0-818c-5aa6c4370476", + "apim-request-id": "6d57631c-90db-4f8d-bca3-0d84abab5754", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:14 GMT", + "Date": "Fri, 13 Nov 2020 22:16:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "54" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -1483,38 +1699,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "12d1a73a04ce733541aa71124973bdbc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "95142b5e-10ea-4e72-948d-0e4b6cc28e56", + "apim-request-id": "a1b21712-762d-417f-baca-0cdc39307261", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:15 GMT", + "Date": "Fri, 13 Nov 2020 22:16:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "45" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "62" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -1524,38 +1746,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ede6d34be304a92c704604d55d9a58c6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "98601297-9232-4ff0-9b3e-9588f5de28b0", + "apim-request-id": "2b3a2879-babf-4f7a-a2ce-d76ca7aa5757", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:17 GMT", + "Date": "Fri, 13 Nov 2020 22:16:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "37" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "53" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -1565,38 +1793,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ad0eb645a1ea09408c2f395a2d1bb5f8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ff70bb47-422e-4e30-991d-989184a0452d", + "apim-request-id": "816bb7cb-6ae7-4cdd-9287-681d8cb42daa", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:18 GMT", + "Date": "Fri, 13 Nov 2020 22:16:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "34" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -1606,38 +1840,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "aac615ca910d56257b27a187ff5f15a7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0177dd59-1453-4fbf-bdfc-556d8d7c387f", + "apim-request-id": "2b46e8a6-f44f-447c-8a4b-ae7f4cbb6f01", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:19 GMT", + "Date": "Fri, 13 Nov 2020 22:16:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "55" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -1647,38 +1887,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "93cdab521065aad192dc60d5aad17c55", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5fa397f7-78f8-4b22-b2fe-e44c4162a4ea", + "apim-request-id": "96f2eb35-61a1-4347-88c1-5accc0c07ff3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:20 GMT", + "Date": "Fri, 13 Nov 2020 22:16:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "68" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -1688,38 +1934,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "470b0c91add3b4b891b832c3ffb8092c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "31133a7e-b850-4c57-a13e-5a6ab9aa03ad", + "apim-request-id": "ef6b2a9e-ae92-4551-8206-086fb4024c93", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:21 GMT", + "Date": "Fri, 13 Nov 2020 22:16:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "60" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -1729,38 +1981,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "82089119214eba93431c18303050aca9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "118e4d6b-038a-44dd-a379-ea1748635fe6", + "apim-request-id": "a8a5d9c6-73ac-47b3-aeb3-736128957936", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:22 GMT", + "Date": "Fri, 13 Nov 2020 22:16:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "55" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -1770,38 +2028,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f3f64caace54a4d3f21801addd0eabd9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7adf72f1-5d80-4436-bf1f-bf2bd8f9e5b7", + "apim-request-id": "a1b6f069-2ba6-47c1-8d67-d7d09d36004f", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:24 GMT", + "Date": "Fri, 13 Nov 2020 22:16:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "42" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -1811,38 +2075,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "18bc34d3fac96f07795003b695878341", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "06ee22b1-89aa-4eb5-a23c-8b690efc830a", + "apim-request-id": "bc875afe-339a-4acf-8f46-7cb7e0199b51", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:25 GMT", + "Date": "Fri, 13 Nov 2020 22:17:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "41" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -1852,38 +2122,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b218890b15c24ad7be638f3520e6dc35", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a74759c6-b99f-4a0a-a687-a035670ccee8", + "apim-request-id": "4e1a4f98-882b-4102-892d-2300ef3f2c5a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:26 GMT", + "Date": "Fri, 13 Nov 2020 22:17:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "41" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -1893,38 +2169,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "fc5d3e719393b0df45867a04ca1c0e6a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b26b3fc7-960c-4abd-b052-9bcb99dd6447", + "apim-request-id": "48aa285b-c3be-46d0-abc6-cee8fd1d4eec", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:27 GMT", + "Date": "Fri, 13 Nov 2020 22:17:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "43" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -1934,38 +2216,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "54a1c094f8f5be175c715a656ad14f92", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c664e003-f10f-44fa-b9f6-7a9605fffa69", + "apim-request-id": "e2d70afa-55c6-420a-8684-db3cab18ce11", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:28 GMT", + "Date": "Fri, 13 Nov 2020 22:17:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "42" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "66" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -1975,38 +2263,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "5745cd74872a78ada9676d3c9ad37fa1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "108dd02b-5b02-4a84-aff2-6cf463e4fccc", + "apim-request-id": "88be9043-c137-4097-8e3c-69f1b81b7082", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:30 GMT", + "Date": "Fri, 13 Nov 2020 22:17:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "38" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -2016,38 +2310,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "5fa0245588447940279e9f2239794674", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bb15c6b4-8b64-4f35-bfe6-4eca04288941", + "apim-request-id": "0d3b5631-7275-4f1a-9b23-79741166d521", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:31 GMT", + "Date": "Fri, 13 Nov 2020 22:17:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "41" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -2057,38 +2357,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "fd90e736b7d70d3f1329aa8d8bda2389", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "55b2111e-c5cc-4d9a-a0b0-b1bf1768c974", + "apim-request-id": "90721526-89b0-498e-be8f-285cb0108482", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:33 GMT", + "Date": "Fri, 13 Nov 2020 22:17:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "92" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "78" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -2098,38 +2404,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4510b9f1f030eb4d8dcc308be88b3e30", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9c416f4a-dd57-47a6-ac1f-a81e20ebfeb5", + "apim-request-id": "93f34cf7-9269-4c55-9d3e-0720e55c722f", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:34 GMT", + "Date": "Fri, 13 Nov 2020 22:17:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "60" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -2139,38 +2451,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b305f92182439dc9e4934b1bddb2ed4c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "037da80d-cd6e-4b33-9f63-e5aaa71f1ae7", + "apim-request-id": "59764a4b-ac9d-4fe8-8593-f85b6907995e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:35 GMT", + "Date": "Fri, 13 Nov 2020 22:17:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "39" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -2180,38 +2498,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "7f30167b0168464399a46f0b87b42488", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "33791ebe-4f0f-4eb3-90c8-47393eac3e7d", + "apim-request-id": "16d8c3f4-a2f1-4709-ba25-b64d88c8dae4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:36 GMT", + "Date": "Fri, 13 Nov 2020 22:17:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "42" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -2221,38 +2545,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "926c7aea70d56f45ef72609da4320edb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "18859763-26e4-406f-af17-4bbba06e6b75", + "apim-request-id": "cf4e13bf-1ea4-4bb2-9ad3-8d9b0bd9b192", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:37 GMT", + "Date": "Fri, 13 Nov 2020 22:17:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "45" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -2262,38 +2592,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "d210e3debe5b20c7b5bf199f13bd1630", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "04a2c94a-e952-4798-9205-f72b04b13293", + "apim-request-id": "a3c40fc6-6883-4622-b654-9db542836a59", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:39 GMT", + "Date": "Fri, 13 Nov 2020 22:17:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "46" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -2303,38 +2639,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "6331c36e5b460b76d0c190f6a0a5a167", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "37eea200-8998-485b-beee-78b174e57e89", + "apim-request-id": "d5b608fa-7426-4b3a-b4b0-328364a607d9", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:40 GMT", + "Date": "Fri, 13 Nov 2020 22:17:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "67" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -2344,38 +2686,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "a32d949552a32b2db24bdc1656a65b31", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3af4d0d4-9157-433e-99de-43320497d723", + "apim-request-id": "fd5ca136-a723-4761-a69e-07a1801815e6", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:41 GMT", + "Date": "Fri, 13 Nov 2020 22:17:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "46" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -2385,38 +2733,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e12e2f5caa0082946d05019a2ed17f10", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2a8e6b65-f73e-466f-b1cc-e44c61873038", + "apim-request-id": "1a0e3b13-653d-48af-a8d2-3b433a91e6ab", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:42 GMT", + "Date": "Fri, 13 Nov 2020 22:17:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "48" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -2426,38 +2780,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "7f09b11d72901c8d9606b0fa7e60b42a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2fcd598b-345f-403e-b0bb-0f19ec9c1632", + "apim-request-id": "b413c516-edff-4658-86dd-a540b17e2f20", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:43 GMT", + "Date": "Fri, 13 Nov 2020 22:17:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "41" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -2467,38 +2827,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "71995e65c077eb67ffaa369e5093fce1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d691a36f-3c83-43f8-8cbd-3ed78a023d13", + "apim-request-id": "ef5701a9-134f-430c-87fb-5b99627b5133", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:45 GMT", + "Date": "Fri, 13 Nov 2020 22:17:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "44" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "53" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -2508,38 +2874,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "a5f8ccccdc9ce9a1a1124bf9f99a040c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "14427930-461e-4072-97ad-e637bc287cd3", + "apim-request-id": "0d8210e7-0d95-4b82-a168-0ce9775a7846", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:46 GMT", + "Date": "Fri, 13 Nov 2020 22:17:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "62" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -2549,38 +2921,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "d034d7510e375d994a1e7fe63cefcb03", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5b94227d-9b44-4dbb-9819-02913cc5dd4a", + "apim-request-id": "f11861b0-59f4-4d66-8a4f-6ffffa4b0c7d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:47 GMT", + "Date": "Fri, 13 Nov 2020 22:17:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "39" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "77" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -2590,38 +2968,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b22ecf0a0e67888dbdb0cf65756df164", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7f0c6ea0-fed8-4507-ac6b-ef2f017e3bb3", + "apim-request-id": "f8229de1-5e11-4b26-b573-73afb74f645b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:49 GMT", + "Date": "Fri, 13 Nov 2020 22:17:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "33" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -2631,38 +3015,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "794d29a62c5ebda9339b5b7e5cbaacb2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "694bf664-dc80-4ab2-98a4-9c0d3cb952fb", + "apim-request-id": "c5965b74-34fe-4b67-8d3b-1cf91ff2f1a3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:50 GMT", + "Date": "Fri, 13 Nov 2020 22:17:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "77" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -2672,38 +3062,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "29ef4846516c42a549ac12863f33e8dc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "abe9605b-dc6a-4100-adee-e3aba054750c", + "apim-request-id": "d16ca38f-b557-4118-a770-7a4aa05e6e6e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:51 GMT", + "Date": "Fri, 13 Nov 2020 22:17:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "69" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -2713,38 +3109,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "12401b2c51a2dda425707fcbb30f2b02", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a1264816-31b2-4da9-bcc0-766402229a24", + "apim-request-id": "52a85b7a-ec16-4918-bfa1-04915885bc3a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:52 GMT", + "Date": "Fri, 13 Nov 2020 22:17:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "39" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -2754,38 +3156,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "2c1e1c03c77d54f8840a30b119237eff", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dcd542aa-0c8d-438e-be0d-1924976cd2a2", + "apim-request-id": "ea7e692b-aa79-4dd0-a0ec-0736e688e7fe", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:54 GMT", + "Date": "Fri, 13 Nov 2020 22:17:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "42" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -2795,38 +3203,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "41517eb39a7af410a31103fcd2d98e39", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "10db6814-1353-476c-8220-561273ea6ad3", + "apim-request-id": "375a34d2-4ad0-4e58-aa82-fce793ee6936", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:55 GMT", + "Date": "Fri, 13 Nov 2020 22:17:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "47" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -2836,38 +3250,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "22821080bb15655e22eb8e9721f2c402", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "82bd3564-0ce2-4bea-8730-d70c771e8150", + "apim-request-id": "10dc80f2-1bea-4a87-a22e-e60d93e91ab9", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:56 GMT", + "Date": "Fri, 13 Nov 2020 22:17:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "37" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -2877,38 +3297,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "341880f1eabe69880c29896cc3fc82aa", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e7ed4e82-12aa-41db-ab71-1ecdf88bf874", + "apim-request-id": "6a51ddc9-6f4d-4b56-8083-6b66b0a98d1b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:57 GMT", + "Date": "Fri, 13 Nov 2020 22:17:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "39" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -2918,38 +3344,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "0831f67c5ca0f7e920ec1e8e0b78d3b0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3545a6e7-6f49-4f98-aa7e-323e3bb73fe7", + "apim-request-id": "9407aed8-ce84-49d9-87e0-11e92302d3f1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:58 GMT", + "Date": "Fri, 13 Nov 2020 22:17:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "66" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -2959,38 +3391,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "520a014c59c1967b871815eb31f2a126", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "756dd0cb-aac9-4925-9e87-3565577eb31d", + "apim-request-id": "fb19604b-0e6e-4f1d-b9be-2d0ee1c4bba0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:23:59 GMT", + "Date": "Fri, 13 Nov 2020 22:17:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "42" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -3000,38 +3438,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "2b1ae469bbc19462962014d1cbfa5e93", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "15c659b4-6b30-443e-af5f-9b1d3935d7d3", + "apim-request-id": "f5d94cc3-be9c-4fb2-840f-4e1ea5e457cb", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:01 GMT", + "Date": "Fri, 13 Nov 2020 22:17:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "72" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -3041,38 +3485,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c21fd95630f122e97a9b818746fec62e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d948d66a-48be-4b62-b6dc-f8d2f119ba2e", + "apim-request-id": "4517363e-38c7-4ec1-991d-421a9573ef44", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:02 GMT", + "Date": "Fri, 13 Nov 2020 22:17:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "41" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -3082,38 +3532,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "2725f84aa75d91ef9e76bba045aaca8d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "193378ef-3d0d-41a3-aabf-fb6ff33075d6", + "apim-request-id": "05fd55a4-d3fc-4e77-addf-a86cef538b8a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:03 GMT", + "Date": "Fri, 13 Nov 2020 22:17:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "42" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "52" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -3123,38 +3579,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "589582baded33935faf8b0263ada4d98", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "72401350-7f2a-4a07-8859-e1bf9937b2ef", + "apim-request-id": "adac11c5-9a2f-4db5-a307-a4fa9e298640", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:04 GMT", + "Date": "Fri, 13 Nov 2020 22:17:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "44" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "57" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -3164,38 +3626,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "d386e55a36d4ae35e98e237b7449ddd0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f9c38d2a-3c03-4f24-9023-a31114a64491", + "apim-request-id": "a4878140-b33f-4865-be2c-bbafc9b6ec10", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:06 GMT", + "Date": "Fri, 13 Nov 2020 22:17:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "43" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -3205,38 +3673,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c4cdf3d06d686c5bc3ec2c65f7c956c3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cff086b4-86a5-43ec-938e-6929bd0ab3f7", + "apim-request-id": "aca42629-fed2-42b4-aa60-e825d69537df", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:07 GMT", + "Date": "Fri, 13 Nov 2020 22:17:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -3246,38 +3720,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "5f452328f72383b84ce66e44bab9c4b1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e421d7aa-9b24-424a-b64a-780a0ba4a8f2", + "apim-request-id": "9b2c54cb-faf2-4c5a-9b06-b6a0079746e7", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:08 GMT", + "Date": "Fri, 13 Nov 2020 22:17:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "38" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "73" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -3287,38 +3767,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4655e01b890ded2f8a1a0fe80acfb720", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8e8a7453-5e31-4d05-af16-80db3ed9ce6e", + "apim-request-id": "702343f9-6119-4aae-bbad-0c8d2be3f05e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:09 GMT", + "Date": "Fri, 13 Nov 2020 22:17:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "42" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -3328,38 +3814,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "505260377d03d8ad3b497782fe16b109", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "106d6f96-1681-40de-9cbb-b7bf58ab232a", + "apim-request-id": "9536c6e6-2be4-4ac0-8dad-6b23b0710631", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:10 GMT", + "Date": "Fri, 13 Nov 2020 22:17:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "47" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -3369,38 +3861,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "174a7b270f739fb5f458d508e7cf797c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8b3aad44-2f35-4d31-8b83-93b7b71d7a22", + "apim-request-id": "d96a9bf6-5748-450e-b26d-c7cbfb7ac39a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:12 GMT", + "Date": "Fri, 13 Nov 2020 22:17:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "42" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -3410,38 +3908,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "5a0d4d2f73679dae327c0bc411adee74", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3535b163-da36-4176-9c02-80da2a058efc", + "apim-request-id": "5559035e-3963-42a1-b399-6256f6fd9774", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:13 GMT", + "Date": "Fri, 13 Nov 2020 22:17:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "49" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -3451,38 +3955,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "8ec10668a08527adaab35caba8a4f16b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f96754c6-6f68-4120-bc45-f03a5df6ffaf", + "apim-request-id": "dc0b22d6-d2db-45e9-843b-71af6bf1f780", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:14 GMT", + "Date": "Fri, 13 Nov 2020 22:17:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "35" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -3492,38 +4002,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b052fbd05708b3a2cdade4f604f18d46", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4c65efc0-bd02-4011-bb86-f14ae4e0f9d3", + "apim-request-id": "47ad424d-d35e-435e-936e-d07b0c1d57fb", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:15 GMT", + "Date": "Fri, 13 Nov 2020 22:17:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "34" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -3533,38 +4049,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e19f6069ea0e8ff7a0e5b0b31702f58e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "776e2cdc-9090-4640-b3ec-5be0e878896a", + "apim-request-id": "7503881b-5091-4c5e-a9b5-d494d3024f14", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:17 GMT", + "Date": "Fri, 13 Nov 2020 22:17:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "41" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -3574,38 +4096,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "16f39f8b3d5a116b640dc1d8bbb623b8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9827d7b0-1723-4b45-9d8d-475f97c6ed2a", + "apim-request-id": "a347f4bb-d1c2-4b4f-8365-3f6a05671fbd", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:18 GMT", + "Date": "Fri, 13 Nov 2020 22:17:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "63" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -3615,38 +4143,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "474115251004e55c03c31023a6ee9cca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fd310cf5-46e3-4c6e-a141-867888ee6b73", + "apim-request-id": "c036ce2e-5622-4973-acfa-0a41d683a404", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:19 GMT", + "Date": "Fri, 13 Nov 2020 22:17:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "40" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "64" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -3656,38 +4190,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "646b55b777fd2cecf58e7c01291fd3e9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "322026ab-e7a4-4d03-8f81-54c469212c2a", + "apim-request-id": "ed9d1325-eac8-4bd3-bf1d-ec8828ce18aa", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:21 GMT", + "Date": "Fri, 13 Nov 2020 22:17:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "42" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -3697,38 +4237,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "018ef7c2adc17b89430e12972d486a75", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "16a882bb-cc0b-44fc-ad9e-caecbc76c252", + "apim-request-id": "8e65d04f-8438-4fab-8a14-bcc75e82319a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:22 GMT", + "Date": "Fri, 13 Nov 2020 22:17:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "47" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -3738,38 +4284,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "6520f670be4aadba29155276935bbbe3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8f6a65d4-1c2a-4299-b3de-0a91dcc4b16e", + "apim-request-id": "8ff4d4fc-6f7a-45c1-934d-648ad7d1dbef", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:23 GMT", + "Date": "Fri, 13 Nov 2020 22:17:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "59" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -3779,38 +4331,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "af6026ef9b600a08ccf021ef6454fead", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4fb05f72-d085-4fb9-9240-0afd63f68eb0", + "apim-request-id": "97f0c88e-ba25-434c-a89a-5729ee6f9b03", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:24 GMT", + "Date": "Fri, 13 Nov 2020 22:17:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "44" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -3820,38 +4378,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "329006236dff039f3de0d7ac5a13e8e8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fe7b7edb-8620-4d11-b297-8f68aa1bd157", + "apim-request-id": "980e9bbb-0d9e-4827-8095-c84b4b5e3bee", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:25 GMT", + "Date": "Fri, 13 Nov 2020 22:18:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "40" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -3861,38 +4425,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "06a72f52bbe7d515ee15995a9dcb49d5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a3cfc690-b5b2-4032-8f0d-931e04392083", + "apim-request-id": "7af582e4-459c-47ba-b4e8-e2787143f38b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:27 GMT", + "Date": "Fri, 13 Nov 2020 22:18:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "40" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -3902,38 +4472,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "8c53a51688ca81e4875d717fc45cafb8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c62dc247-b648-4584-aecf-1b6be018d823", + "apim-request-id": "a12bcd7c-a43e-434b-8680-48b8a367b162", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:28 GMT", + "Date": "Fri, 13 Nov 2020 22:18:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "72" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -3943,38 +4519,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "359c3808f8ad67c5f1bb44e9d4446572", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f9652289-9b8b-45e2-8623-b2177c8bd455", + "apim-request-id": "46f2b302-2f70-461b-a829-e69cdb76f709", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:29 GMT", + "Date": "Fri, 13 Nov 2020 22:18:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "37" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -3984,38 +4566,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b59602975bc0ca1d4a257f894a961191", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "67288d9a-8c7f-416b-923f-eea670247a32", + "apim-request-id": "8aeb56b7-e0b5-4fb2-84fb-18ead23ebeaf", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:30 GMT", + "Date": "Fri, 13 Nov 2020 22:18:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "49" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -4025,38 +4613,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "6552e166132e1d28dfeb9b0e44faad42", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c90211bb-c6d3-4d5f-b5b0-e381fc523727", + "apim-request-id": "f1d72ae9-8585-4eb8-9d49-84e14981191d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:31 GMT", + "Date": "Fri, 13 Nov 2020 22:18:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "44" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -4066,38 +4660,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c2e8fff7fac6acf81ad2ea87783c1d5a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "91287269-45d0-4d44-8dab-c17fb196b036", + "apim-request-id": "a0bef8e3-a725-471c-97f3-35426f265793", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:32 GMT", + "Date": "Fri, 13 Nov 2020 22:18:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "42" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -4107,38 +4707,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f283b3aa00f28343d978d6d4c00f8550", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1b6a2825-2fb3-4d9e-a8f1-3dbd31f3b53c", + "apim-request-id": "bdf91fd8-fcdd-4294-a070-31796cdd25f8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:33 GMT", + "Date": "Fri, 13 Nov 2020 22:18:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -4148,38 +4754,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4a913c774ead6bcbe9a54a5c28a0a4a3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e36ee1df-c9f6-4ee2-8108-fe01d1ca87a9", + "apim-request-id": "fa68e7f7-954f-413d-938e-4f20c1953862", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:35 GMT", + "Date": "Fri, 13 Nov 2020 22:18:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "33" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -4189,38 +4801,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "916440cebb76f74fbc64e84d2423eb0b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "14166027-a585-41f2-8627-43f480dc9be8", + "apim-request-id": "359df090-4ed7-4b51-859b-63b999567c3a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:36 GMT", + "Date": "Fri, 13 Nov 2020 22:18:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "44" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -4230,38 +4848,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "3b0f9a4cd2aa5bade717094db6e65a39", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4f201a31-51c7-4225-aeb3-b249603bf055", + "apim-request-id": "9144aefc-dc92-49c1-940d-c7ba6039c5c1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:38 GMT", + "Date": "Fri, 13 Nov 2020 22:18:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "45" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -4271,38 +4895,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "800532d3f4abbcd9ed9a8d48667d47c5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "10f5e8e3-e1c9-4dff-a905-ca9760841425", + "apim-request-id": "b4554935-8c23-4cca-8890-5ef5bc791b9c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:39 GMT", + "Date": "Fri, 13 Nov 2020 22:18:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "78" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 0, "failed": 0, @@ -4312,38 +4942,185 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "8d103eb96990fcf89308a95fb10240d6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a4cf3e85-3c96-4dfd-9d8b-8b4f82ce4ed8", + "apim-request-id": "a0677d00-31f6-4d8f-9b32-015af56e5fdb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 13 Nov 2020 22:18:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-13T22:16:08Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f17aae096b1e5760c1534e104464f469", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7961a00b-0d70-42a5-b7a3-330685405566", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 13 Nov 2020 22:18:17 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-13T22:16:08Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "779344d0cdd56aa93a09eda24b790bea", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "045c5698-2579-4415-88d1-c9b68811faf4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 13 Nov 2020 22:18:18 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "45" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-13T22:16:08Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b73eb75956034ea6deb9cb3d1ae8b72e", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "963c2d88-0f80-48f5-a60f-8948fa5959fb", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:40 GMT", + "Date": "Fri, 13 Nov 2020 22:18:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "80" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "105" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "a545d6c1-2b58-4db1-9064-b3834cbb6486_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:22:33Z", - "createdDateTime": "2020-11-12T19:22:32Z", - "expirationDateTime": "2020-11-13T19:22:32Z", + "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:16:08Z", + "createdDateTime": "2020-11-13T22:16:07Z", + "expirationDateTime": "2020-11-14T22:16:07Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33Z" + "lastUpdateDateTime": "2020-11-13T22:16:08Z" }, "completed": 1, "failed": 0, @@ -4352,7 +5129,7 @@ "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:22:33.287778Z", + "lastUpdateDateTime": "2020-11-13T22:16:08.2716535Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomainAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomainAsync.json index 1bf8a66a8745d..5111223d986cd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomainAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomainAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "311", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8ed614973e830842a91c19fe73037192-bde101e91998ba4b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-a89cecf1bd66c14c8a8f558649d4bb1c-6deba77d112ad145-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "dbcf75b1d6cb24fdb41d742a5d142b0a", "x-ms-return-client-request-id": "true" }, @@ -37,49 +43,55 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "a04689f6-c6e0-43b3-96c9-9a787e651cda", - "Date": "Thu, 12 Nov 2020 19:27:10 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", + "apim-request-id": "3dae3757-55fb-4c62-bf9b-40da8a15438f", + "Date": "Fri, 13 Nov 2020 22:20:37 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "126" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "214" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4c8042efa9b72511ebff89e389aea38e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "302c871f-dbe4-4758-81b2-23a7e8593958", + "apim-request-id": "a44a378e-c31f-40cb-bc4c-e5814b58bff5", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:11 GMT", + "Date": "Fri, 13 Nov 2020 22:20:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -89,38 +101,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "d874985d95266ebb9878278edaa670b9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "841d4aa5-c3d5-4563-89fa-6f6f7d410ff2", + "apim-request-id": "786f028e-6678-4361-8b96-4bd2ca502fd3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:12 GMT", + "Date": "Fri, 13 Nov 2020 22:20:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "40" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", - "status": "running", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", + "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -130,38 +148,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "75458861a56107e864a9f0cb4c199a06", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "66f7f709-01d0-4c5e-adfc-aa5111070bde", + "apim-request-id": "8e90cde5-bb62-4ddd-b602-b3a6ce0cae28", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:13 GMT", + "Date": "Fri, 13 Nov 2020 22:20:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "37" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -171,38 +195,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c4cce67952a059e38711b33f82834b45", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "62573c67-936f-4c3b-bc16-4df3bbb91dae", + "apim-request-id": "48c2c604-ab00-41b2-92e1-09b801cfe54c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:15 GMT", + "Date": "Fri, 13 Nov 2020 22:20:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "41" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -212,38 +242,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "0182d08f2e68b82daf6c747ca5ef217e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bba3a2ef-12e9-481a-ae2e-7bc2295d1c8b", + "apim-request-id": "b9ee03ae-0e46-402c-865a-fbbcdb818995", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:16 GMT", + "Date": "Fri, 13 Nov 2020 22:20:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "39" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -253,38 +289,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f31420deabd90f18a4ecee4ff1a985e1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8fc04440-c745-4801-a57a-3e75b2dddad5", + "apim-request-id": "ff058a01-32c3-4a5d-b0cf-2fb8de3179a5", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:17 GMT", + "Date": "Fri, 13 Nov 2020 22:20:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "40" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "64" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -294,38 +336,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "7c3cab5e99974b9db9141433dd67b397", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d8a4b86d-ff44-459f-818d-ae5c9e797e11", + "apim-request-id": "97780943-08ca-4a34-b907-636560a8d645", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:18 GMT", + "Date": "Fri, 13 Nov 2020 22:20:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "37" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "67" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -335,38 +383,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "616034ef576ee36bb7725c7c40ddc605", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9b856313-65ff-4354-b3d6-f682bc8865e5", + "apim-request-id": "2f0e74c8-542d-437d-a535-7e81db01670a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:19 GMT", + "Date": "Fri, 13 Nov 2020 22:20:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "46" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -376,38 +430,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "fa1e93e7a5b345e782c93ac496e4323d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "73796eae-1c9a-4b8c-b3a7-fb97eb4e3ce7", + "apim-request-id": "f5098e5e-98de-4046-b967-e9777d764556", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:20 GMT", + "Date": "Fri, 13 Nov 2020 22:20:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "47" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -417,38 +477,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "bc5f5738234907723f58c4243c200bdb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4d186407-debf-46a7-b5b6-de07587ec768", + "apim-request-id": "cb738336-48ce-4aed-8187-75548e997500", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:22 GMT", + "Date": "Fri, 13 Nov 2020 22:20:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "36" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -458,38 +524,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "494c0e4db9494ae34d1bdea41ca64cd2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "57f110f5-78a8-483a-8977-8d2479ace066", + "apim-request-id": "2c91bbf1-9c5e-49e2-9cce-83fdcc2f64f1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:23 GMT", + "Date": "Fri, 13 Nov 2020 22:20:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "59" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -499,38 +571,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e8441e400a7ec3bc2017ba5be0c20861", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ec2827b6-6558-412b-9ec6-ac6a754ce850", + "apim-request-id": "dfd2621b-bf94-437f-9efb-2e96e110a768", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:24 GMT", + "Date": "Fri, 13 Nov 2020 22:20:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "55" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -540,38 +618,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "88775fbee8987ff473156e2e45cdea98", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "745293e2-3c3e-4a15-987f-ace3e40432cb", + "apim-request-id": "b343f2e2-4a07-43a8-a539-5b17f631cab1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:26 GMT", + "Date": "Fri, 13 Nov 2020 22:20:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "43" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "70" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -581,38 +665,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "1de4f20b22dc435d52892831fe88698a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "54f013d8-66cf-4067-a71f-c70de0c48ce6", + "apim-request-id": "5eee1967-fee2-4c5b-b78b-e0bb1dbadd11", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:27 GMT", + "Date": "Fri, 13 Nov 2020 22:20:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "46" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -622,38 +712,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "bce67c12c42f583a2ac475689b8e7e53", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e0fea2f4-5c67-4089-adba-c329bca34c2b", + "apim-request-id": "5422aa1b-cb7a-4a0a-be5d-cd0441361895", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:28 GMT", + "Date": "Fri, 13 Nov 2020 22:20:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "45" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -663,38 +759,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ee4f222cebde9c850234350ebfc281ea", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6476fbcc-b7bd-4acc-891e-f3515dc663af", + "apim-request-id": "88f7f582-fc3a-4c9e-bd4e-8069f1d1d948", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:29 GMT", + "Date": "Fri, 13 Nov 2020 22:20:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "59" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -704,38 +806,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c81ce4ab2de74668b78bf218acf4a7c3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e964ccda-3083-4f97-8445-ea0272b483ce", + "apim-request-id": "8cefe35f-df21-4081-b2bc-4b1ede2a2c31", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:30 GMT", + "Date": "Fri, 13 Nov 2020 22:20:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "38" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -745,38 +853,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "db05d50a7b3926acf74abafb8f2b9868", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0101c452-2b26-4701-bd64-f5c4cbbd5cf7", + "apim-request-id": "44f9850f-68eb-49cc-900d-2f6a4129f3da", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:31 GMT", + "Date": "Fri, 13 Nov 2020 22:20:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "38" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -786,38 +900,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b7bd8a43b672fe6bb9083652f86cef0e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d8adaed9-d5f0-4f27-a57a-8e7156b4e60a", + "apim-request-id": "b8ec0f40-50d7-4fa7-9034-5d7fc90fd329", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:33 GMT", + "Date": "Fri, 13 Nov 2020 22:20:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "47" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -827,38 +947,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e903718ca5bc2fb137f5d09d736db78b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3c89c88d-3ce3-417c-a223-eacf8c3cf097", + "apim-request-id": "cc0b1405-9dc8-4a1a-bb8a-8583cd90429e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:34 GMT", + "Date": "Fri, 13 Nov 2020 22:21:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "46" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -868,38 +994,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "21d58af3ef3754516a06223045592e8a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b87e817d-9bd5-403f-bdac-97f60e5905d1", + "apim-request-id": "c5ef2485-ece2-4156-bf49-b5aeb1a1defe", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:35 GMT", + "Date": "Fri, 13 Nov 2020 22:21:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "38" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "62" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -909,38 +1041,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "1d6fac5aaf289dabd98d7f7de5ce8b4c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b3450542-99c5-4f54-a178-66bd9c420237", + "apim-request-id": "45518e76-1d15-452f-8d36-48d47b12bd0d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:37 GMT", + "Date": "Fri, 13 Nov 2020 22:21:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "45" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -950,38 +1088,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "6d5faa51cd979cd620ae7fb58381eadd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "466db0ea-0a44-41f0-a939-8dc9eee126f0", + "apim-request-id": "40f6cd6d-2c31-4d14-b38b-4a612a6ec9ac", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:38 GMT", + "Date": "Fri, 13 Nov 2020 22:21:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "46" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -991,38 +1135,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c74245c69afd4363df3748a970d46f9b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4186f626-ad06-408c-8f9b-30e2f7adf8fc", + "apim-request-id": "1758747a-00ba-4529-9704-139f1970720f", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:39 GMT", + "Date": "Fri, 13 Nov 2020 22:21:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "41" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -1032,38 +1182,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9aded57bc1fa8df3d5d2fc792ff51a58", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ff1c847c-d0a1-4c73-871e-2c9df34fdd8a", + "apim-request-id": "54f9aea0-0219-47b5-b397-9f8f13a55f5f", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:40 GMT", + "Date": "Fri, 13 Nov 2020 22:21:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "69" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -1073,38 +1229,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9fb6a1a2c38cb74e461b8e60852d2c4c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a213c17a-7d74-4e69-9b77-4c8c89375da2", + "apim-request-id": "198179c6-ab8a-4d6e-ba95-a0f5fb992be5", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:42 GMT", + "Date": "Fri, 13 Nov 2020 22:21:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "39" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -1114,38 +1276,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ad3ae33f4fa205e352b5f12b9dea13ea", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7b9813a5-e793-4321-842d-27e939f5b8fb", + "apim-request-id": "1793536f-c66c-4cf4-95b2-511077621a6b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:43 GMT", + "Date": "Fri, 13 Nov 2020 22:21:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "46" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -1155,38 +1323,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ce06f01cd01db70f872753de339208a8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "700d06c2-248d-4b2b-8c8e-59ba3c9da3f1", + "apim-request-id": "9fefe89c-f578-45c3-a896-c1ae0601c8e5", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:44 GMT", + "Date": "Fri, 13 Nov 2020 22:21:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "67" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -1196,38 +1370,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4c39b0a66dbb52b5beb14cd6d2231a5b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0704f615-b55b-48a6-b314-c29ef6f59b1c", + "apim-request-id": "392623b2-39c7-48a0-87ba-2e6f3c90b3ed", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:45 GMT", + "Date": "Fri, 13 Nov 2020 22:21:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "55" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -1237,38 +1417,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9444a3075d266f2ed382257bfc04d2c0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7843d94a-c6d9-4061-be19-bd8f0beeb0b3", + "apim-request-id": "5deaaf25-8769-480a-882c-967ff33ee47b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:46 GMT", + "Date": "Fri, 13 Nov 2020 22:21:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "47" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "53" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -1278,38 +1464,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ec8449adc7b1ae2f3bb3106c8338e564", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1d1cccfb-2b8b-48aa-884a-193ae3193618", + "apim-request-id": "6b1fd6eb-3554-4651-bae0-08e37b6bc106", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:48 GMT", + "Date": "Fri, 13 Nov 2020 22:21:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "49" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -1319,38 +1511,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "8fd6f80d734e488181c97838483956b9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fb3d3df6-4172-4282-aaf6-8a5fa93288d8", + "apim-request-id": "ec5e4207-e0b8-461d-99af-c7f8277afcfa", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:49 GMT", + "Date": "Fri, 13 Nov 2020 22:21:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "45" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -1360,38 +1558,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "88298cde2d9e40aa749559724dc2eb9b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e0ea7d9b-8c35-4907-b58a-d82cc6038fbd", + "apim-request-id": "2cb4c80d-8597-4d62-95c6-cce4c5fd2756", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:50 GMT", + "Date": "Fri, 13 Nov 2020 22:21:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "45" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -1401,38 +1605,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "046ec19c432d3971c73c6be74ef66601", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a994b909-4f3a-4637-bd42-18cf0ad3f622", + "apim-request-id": "2bf06388-913a-4d82-929c-310aa681693f", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:51 GMT", + "Date": "Fri, 13 Nov 2020 22:21:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "65" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "58" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -1442,38 +1652,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f78d565c5d0edfc54d961ab91a0ffbbf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "84f45a2e-b394-4438-9923-98643e732278", + "apim-request-id": "b73e9693-d413-481b-a758-5e2ecc53e057", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:52 GMT", + "Date": "Fri, 13 Nov 2020 22:21:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "44" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -1483,38 +1699,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "869bddde52cb9b8b1af0c061c2c3f17e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "101a5842-70ed-4eb0-9155-be91e0718bfe", + "apim-request-id": "ca525441-bd3e-4bd0-b6f6-2d7c6fa8d937", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:53 GMT", + "Date": "Fri, 13 Nov 2020 22:21:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "38" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -1524,38 +1746,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f615582ef4353f8cfb8eb69728b81fb8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9e6ed8b2-0c9c-4f25-80f8-6ff0b67857b0", + "apim-request-id": "21a4afdc-9c8c-4b4f-9dca-d7b555a77ced", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:54 GMT", + "Date": "Fri, 13 Nov 2020 22:21:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "39" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "56" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -1565,38 +1793,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "7109ac41e05a0a35cbf1dd1e9c631d8a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f7d3da25-8b89-4019-b5fe-4d47c00159cd", + "apim-request-id": "90faa8bd-b893-4866-a65c-816a01854cac", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:55 GMT", + "Date": "Fri, 13 Nov 2020 22:21:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "42" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "64" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -1606,38 +1840,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c18a9ba404f9e989505c8a3c9cf37261", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "caa01591-e770-46ce-ad38-380b2e9a7840", + "apim-request-id": "376cbbdd-c039-4674-bf11-9c41336f88a0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:57 GMT", + "Date": "Fri, 13 Nov 2020 22:21:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "70" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -1647,38 +1887,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "162008d080b94e23220b2a44176da397", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a0a2bd27-ef69-4f04-aee3-582ab5abd096", + "apim-request-id": "c90c0af3-41c2-4f2d-86d0-5da378c1ca1f", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:58 GMT", + "Date": "Fri, 13 Nov 2020 22:21:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "66" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -1688,38 +1934,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "8df32c715d2d3cbf221f20fe55f86dd7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "702fa390-f92d-420c-a2e1-d7a89e3834b6", + "apim-request-id": "ecbaa579-91ea-4b28-ba84-417c52a84c14", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:59 GMT", + "Date": "Fri, 13 Nov 2020 22:21:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "33" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -1729,38 +1981,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "944d7b7e074324d0783c9fedd945d2e2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b5106583-fa41-4e12-85ba-dce671859f73", + "apim-request-id": "cf5a180a-db46-49f5-aa37-92d1c800732d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:00 GMT", + "Date": "Fri, 13 Nov 2020 22:21:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "49" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -1770,38 +2028,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "70cbf3b8e500723348e3f3995f25f929", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6026d617-9857-4c69-ad4a-309741daca92", + "apim-request-id": "6c8f6959-b2d6-49f8-a810-3fb9eec564e3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:02 GMT", + "Date": "Fri, 13 Nov 2020 22:21:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "40" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -1811,38 +2075,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9bc5539d0f1f6a545bce14f1bed163dd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ea76532a-85c8-4817-b9d9-f549bd6812f7", + "apim-request-id": "3bee8b14-f30a-42e2-884f-74e9b3397fa6", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:03 GMT", + "Date": "Fri, 13 Nov 2020 22:21:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "36" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -1852,38 +2122,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "62463d4dfd2d98d748db4b5f1336c453", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d66a4368-4e1e-4b79-9ad7-24a65133e895", + "apim-request-id": "486ef43f-e5ab-46e3-84aa-9c6330747bab", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:04 GMT", + "Date": "Fri, 13 Nov 2020 22:21:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "45" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -1893,38 +2169,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "86507643377fa9c39e611431d142b477", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dfc7786c-491a-42fe-bd92-49345393053b", + "apim-request-id": "1cca62c5-3516-4c89-be94-054e7b4930ec", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:06 GMT", + "Date": "Fri, 13 Nov 2020 22:21:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "45" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -1934,38 +2216,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "214c168097de9ffc7b2d5244c4f55624", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "90be9ad3-8616-4801-855f-918b335d9b9b", + "apim-request-id": "bfe71724-a592-49b8-9d4d-5031fe86ce7a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:07 GMT", + "Date": "Fri, 13 Nov 2020 22:21:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "34" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "55" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -1975,38 +2263,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "48aec109dc81165e7a9dc3cbe8a5c706", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6f2c2bfc-1ba1-4839-8c1e-50119fcd649e", + "apim-request-id": "f4ca7310-47bd-4a21-8bc6-db047cf44426", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:08 GMT", + "Date": "Fri, 13 Nov 2020 22:21:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "44" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "56" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -2016,38 +2310,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "fdded326a3eaab747ab00a52e47ee4a9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "22b5c4dd-686a-415b-a3a9-fa6233c59fa4", + "apim-request-id": "f62b8345-3289-410b-9180-38bc114a1f73", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:10 GMT", + "Date": "Fri, 13 Nov 2020 22:21:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "44" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -2057,38 +2357,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "0f27f00a6c93a3f5b736a641d330b7d5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e23fb583-78e8-4079-aa4a-6794e5dcc9c9", + "apim-request-id": "a912a2b2-7685-40b7-8d9e-305849f66e18", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:11 GMT", + "Date": "Fri, 13 Nov 2020 22:21:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "82" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -2098,38 +2404,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f01e4c655916663a4d02ced1d10c31fc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a35d6660-911a-4bec-a63a-23dd895efe5f", + "apim-request-id": "6cbe037e-a6e7-4b07-8848-d7e05d5118fa", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:12 GMT", + "Date": "Fri, 13 Nov 2020 22:21:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "53" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -2139,38 +2451,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f8c11ab8b87eba72dd3a45b4fc32d849", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dee5be66-61c4-4909-bfb1-1393c15b63e5", + "apim-request-id": "19b6f579-6354-44dd-98f0-3f4f2465c8dd", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:13 GMT", + "Date": "Fri, 13 Nov 2020 22:21:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "35" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -2180,38 +2498,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "98ec34f9f460b192b6c1c2919e24d2ab", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3a78ac9e-f6d9-4ef9-8679-041ef1ef63b0", + "apim-request-id": "80a18541-6d7c-4d80-8afc-c56f25d51aff", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:14 GMT", + "Date": "Fri, 13 Nov 2020 22:21:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "42" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -2221,38 +2545,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b889aa04be6ead57d96312db1385691a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1edfd6f3-dd66-4304-b19f-9d33e7d2b838", + "apim-request-id": "a9e129ed-4c5c-499a-9185-e283ab45e474", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:15 GMT", + "Date": "Fri, 13 Nov 2020 22:21:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "64" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -2262,38 +2592,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9dd88429991fc49b870f42bdf5e11bb9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5054a520-65e3-4d56-b698-e4f1a9988bd0", + "apim-request-id": "644d2c33-f3e0-437a-98a9-fc7a4e34e744", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:17 GMT", + "Date": "Fri, 13 Nov 2020 22:21:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "57" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -2303,38 +2639,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "52af9a681fa93adadd3fbefce1b79d30", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "72206510-b589-4f1f-ae3d-3d8732d3cdf6", + "apim-request-id": "72db237a-f2f5-4e01-8218-5833e5527e8a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:18 GMT", + "Date": "Fri, 13 Nov 2020 22:21:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "45" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -2344,38 +2686,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "1a67a757344c6b8b0ec5315f7b9ab7f7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f16bee72-1d88-4876-9fd9-96b08ca3cdf9", + "apim-request-id": "f9efb377-ce9f-4a17-b651-a81903b8036b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:19 GMT", + "Date": "Fri, 13 Nov 2020 22:21:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "35" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -2385,38 +2733,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "7972594717d60a71a99dbfdfda9fe2d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "06b89389-96fd-44a9-b9ef-fb5da2a6b802", + "apim-request-id": "11856bc3-55f5-4e84-864d-cc4459c1c334", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:20 GMT", + "Date": "Fri, 13 Nov 2020 22:21:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "61" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -2426,38 +2780,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4e651271017a346c0e4444e3ee7bbf42", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6b92ac23-f796-47ba-bc9d-79d3926415d3", + "apim-request-id": "d406a318-814d-43f6-8618-fe1d4e7b6a03", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:22 GMT", + "Date": "Fri, 13 Nov 2020 22:21:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "44" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -2467,38 +2827,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "87b4c6882444405a365d71ae74ac906f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "93572e14-2eef-46ab-b8a9-d1f54aaa11c1", + "apim-request-id": "f89b54ac-e068-4250-8068-0318447f3941", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:23 GMT", + "Date": "Fri, 13 Nov 2020 22:21:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "42" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -2508,38 +2874,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "69ed61e26934467dec3e6a91d38d1b2d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4b4be307-a197-46d1-a4ad-092134ed58b2", + "apim-request-id": "2bf875aa-e99b-4d06-91fd-f9f826e04ee7", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:24 GMT", + "Date": "Fri, 13 Nov 2020 22:21:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "43" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "53" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -2549,38 +2921,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "14567dde5bea4d8bb825171d90bebf62", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0bfc607e-e802-4cef-8678-a39a216e466e", + "apim-request-id": "b4a98972-0bf4-44f9-81f2-8674f10b8da6", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:25 GMT", + "Date": "Fri, 13 Nov 2020 22:21:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "35" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -2590,38 +2968,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "8d01d5b4558e1f0e496e9a06b9c86da8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "67418283-28a3-4202-bed2-0809e954fbf4", + "apim-request-id": "8a7ae557-87b7-443b-bad1-9d4a2f1bd9a4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:27 GMT", + "Date": "Fri, 13 Nov 2020 22:21:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "66" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -2631,38 +3015,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f7d043417c558784d5a0b10f5160b52e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6f5119dd-894b-4b03-bd13-78b9db937412", + "apim-request-id": "939778f1-68e3-46e0-b6c7-a2f2af3e9267", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:28 GMT", + "Date": "Fri, 13 Nov 2020 22:21:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "42" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -2672,38 +3062,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "fedd087f8e8c889f6f37cb7cc08593ef", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a0d9bdf1-8110-418e-a20c-6dbe79920c2a", + "apim-request-id": "77274928-dc4e-4156-802b-9ab11f48f4a4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:29 GMT", + "Date": "Fri, 13 Nov 2020 22:21:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "50" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -2713,38 +3109,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4cdb6eb7c7ee380c5079b7eea4fecee8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7a55da0b-59d0-4531-b96d-d14c37074f6b", + "apim-request-id": "94970a7d-a639-4589-870f-2c9d0d2badee", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:30 GMT", + "Date": "Fri, 13 Nov 2020 22:21:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "64" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -2754,38 +3156,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b1866cb86feab31ca447881eb008c650", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "77a1726c-9bcf-449a-8b89-aca4b777ff8c", + "apim-request-id": "3661f2b6-e86d-40a5-93e0-89d18c56dbcd", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:31 GMT", + "Date": "Fri, 13 Nov 2020 22:21:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "38" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -2795,38 +3203,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e257c10c6985b840fca5ad12d6b0e470", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a0cc4854-59fa-4c58-8c15-7a66a637e854", + "apim-request-id": "6e91a451-f1fd-43e6-822a-7b464d8ce20f", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:33 GMT", + "Date": "Fri, 13 Nov 2020 22:21:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "45" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -2836,38 +3250,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "54c3e269e2fe48045228a7a63eee8748", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "91458ebe-28a7-4b24-a2d6-9fd5e7ffc345", + "apim-request-id": "98691952-e10e-49ea-8ef5-c044844a3ea3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:34 GMT", + "Date": "Fri, 13 Nov 2020 22:22:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "63" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "71" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -2877,38 +3297,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e2e167b2eba74f632bceb445c109ddf3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "049adc32-e9e8-4c1e-a733-9b845a7acba6", + "apim-request-id": "71796c67-94d9-4494-8460-3b1ccb1c6b92", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:35 GMT", + "Date": "Fri, 13 Nov 2020 22:22:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -2918,38 +3344,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ceb4186272442a51bd0e905dc199790d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dc1c9b9f-c3f5-4944-82c1-25a207e08d88", + "apim-request-id": "211d38ef-d8de-4013-a553-df4836854a26", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:37 GMT", + "Date": "Fri, 13 Nov 2020 22:22:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "41" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -2959,38 +3391,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "6e5f651e02cf7dc97f7328302dbf8648", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eab10533-61be-4efe-bb9c-8cc5a2ed5923", + "apim-request-id": "d7d2458d-20b1-42a1-82bc-976367ef8412", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:38 GMT", + "Date": "Fri, 13 Nov 2020 22:22:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "33" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -3000,38 +3438,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "2644b34ab839400316b625985b068e92", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "51b7d7d0-eeed-4fc0-8fa0-1f12dddb7ba7", + "apim-request-id": "b9505254-e9ac-483d-8559-36e5dbf1fbe8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:39 GMT", + "Date": "Fri, 13 Nov 2020 22:22:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "36" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -3041,38 +3485,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "5c26a7556ea95f244f374ed14921fcfd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "226325f6-8b3b-403d-8f66-8c4058614ca2", + "apim-request-id": "397ac66f-0f66-479d-bf20-f5d7b7360ffc", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:40 GMT", + "Date": "Fri, 13 Nov 2020 22:22:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "48" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -3082,38 +3532,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "0d124788525465d3611f5718dd312279", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "438500dc-b978-46f7-9096-1e9c568eaeb4", + "apim-request-id": "c7884a52-61b9-4f98-b6d5-2754ad903028", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:42 GMT", + "Date": "Fri, 13 Nov 2020 22:22:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "66" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "54" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -3123,38 +3579,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "86da96e52998dc9e8fe5d7026a32f6f5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fcdeb51d-45f2-44f9-bea1-21344b00d3a7", + "apim-request-id": "d32fb9f4-25f9-4bca-a98c-32fd73cc51ea", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:43 GMT", + "Date": "Fri, 13 Nov 2020 22:22:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "48" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -3164,38 +3626,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "131027b980f3023dd3c1fb8a160b811d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "02eb4806-2b37-4b0a-a646-6937347766a0", + "apim-request-id": "c591902b-c636-47fb-bf6e-d87dbb5ca281", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:44 GMT", + "Date": "Fri, 13 Nov 2020 22:22:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "78" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -3205,38 +3673,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b2ebd51576465e64a9367d6f7bd1fa2f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b571886a-f026-4d43-b49f-e9cf9aa6d424", + "apim-request-id": "a00b0e3f-4d5a-4598-bc0a-71cc8e73f694", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:45 GMT", + "Date": "Fri, 13 Nov 2020 22:22:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "35" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -3246,38 +3720,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b55f62280e21658559d8b2d72e13c584", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "545dcd86-f039-49d4-bf6a-6df64b64feb1", + "apim-request-id": "3f962fcf-e2cb-497b-aa4c-83d46c7b4f8e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:46 GMT", + "Date": "Fri, 13 Nov 2020 22:22:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "44" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -3287,38 +3767,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "95edb963434743afc2b16abd02ce8701", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "45e7b557-f457-43de-a9c6-13815f2dc33b", + "apim-request-id": "cedd65f2-b604-4493-a35b-2a9af2192f0a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:47 GMT", + "Date": "Fri, 13 Nov 2020 22:22:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "41" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -3328,38 +3814,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b461ccc6cbac06fc4f86596ec38d2f95", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e38a26f5-bed9-4c17-ad7d-5b4b33556322", + "apim-request-id": "d4a8c0d8-7b24-434d-a6f0-615446b9433a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:49 GMT", + "Date": "Fri, 13 Nov 2020 22:22:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "62" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -3369,38 +3861,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c10bf97065e4e4e8b31bf36fa3c7628b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a54ffaf5-ff39-4ea7-ae75-e5f6fafb1ede", + "apim-request-id": "9379d3b2-1fbf-402d-9446-32e653c71d1c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:50 GMT", + "Date": "Fri, 13 Nov 2020 22:22:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -3410,38 +3908,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "6210b15010b298d8bce645c0ea417f35", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1ac954b3-54ed-4e96-b5c6-33e1c0963d62", + "apim-request-id": "27fbf9c2-7e15-4403-82b3-80daaf30a5f3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:51 GMT", + "Date": "Fri, 13 Nov 2020 22:22:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "37" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "64" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -3451,38 +3955,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "094dd581c5c2601de47d0090d88d6287", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f46e45bd-522c-45fa-bec5-a130d3c50f4d", + "apim-request-id": "68759c5d-e3a7-407e-9731-46cb9f50cfcd", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:52 GMT", + "Date": "Fri, 13 Nov 2020 22:22:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "44" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "58" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -3492,38 +4002,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "121dce24cd7c5fe3207304fe1f27fa72", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "764b9f6f-cada-42c5-98c5-5dce139aa382", + "apim-request-id": "7b3599db-9acc-4977-8489-d23682a1e261", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:53 GMT", + "Date": "Fri, 13 Nov 2020 22:22:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "63" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -3533,38 +4049,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ceedbd9c587a8ac893af7e341048bf2f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "62320cd7-5601-4305-873f-c6c5fdc3043b", + "apim-request-id": "4a54d4ae-95a6-492c-bb6c-935b47c8ce2f", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:55 GMT", + "Date": "Fri, 13 Nov 2020 22:22:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "45" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -3574,38 +4096,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "1c9cbe836c23b4b8f2ede94fc01e41bc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0c5e9ef5-f3c8-489d-9be4-211724e5963c", + "apim-request-id": "0f0c628f-64a8-4498-9b7a-cf95fa1e3324", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:56 GMT", + "Date": "Fri, 13 Nov 2020 22:22:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "63" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -3615,38 +4143,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "1bf38e8394a0cb0d05927ecc4fae4fd8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fd9f0a15-64ff-461a-a163-7c3dfc9ab2b6", + "apim-request-id": "54ef7185-4ca5-428c-8156-15e0bb19909f", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:57 GMT", + "Date": "Fri, 13 Nov 2020 22:22:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "41" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -3656,38 +4190,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "617ad5b3dd8a304e0439db8d6f78ca75", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ed00e1ed-c89b-4c18-8049-7bcade6b89f9", + "apim-request-id": "e21afc38-a483-4ae6-9867-11ac889bcbd1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:28:58 GMT", + "Date": "Fri, 13 Nov 2020 22:22:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "41" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -3697,38 +4237,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "81b1c16ea454ee8fb1d01691edeb6544", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "83da070b-d4db-498b-8fe6-d34bb9cf0234", + "apim-request-id": "6c19f4d4-fd44-49f8-8e61-20757f257dae", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:00 GMT", + "Date": "Fri, 13 Nov 2020 22:22:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "48" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -3738,38 +4284,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "eb9b109ddfa4a5313fc31666b87f5c8c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "da2a0658-6f0a-443c-ab00-23cfe7cec780", + "apim-request-id": "2146e677-925b-4020-bc4a-7960fafd9952", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:01 GMT", + "Date": "Fri, 13 Nov 2020 22:22:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "50" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -3779,38 +4331,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "8d5d09c8cefc0f84468bb0b9c6bd4219", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b2404733-4a84-475a-931f-a8ee1b52bee0", + "apim-request-id": "cc738272-0529-465a-9773-704d842a60a8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:02 GMT", + "Date": "Fri, 13 Nov 2020 22:22:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "63" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "68" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -3820,38 +4378,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "5eef97d4dedc8fd08f0c41918e283631", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7a0418b4-830a-4ee1-aee7-c38938d1112c", + "apim-request-id": "36057ab6-1678-4498-8745-d270f25add30", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:03 GMT", + "Date": "Fri, 13 Nov 2020 22:22:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "36" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -3861,38 +4425,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e3c98974d78dcf478c8ca4182e77de82", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f2acd49f-81ca-4b06-976c-671ac4551ce8", + "apim-request-id": "2a018797-ab17-4a5e-b2fa-6986f2e99a1d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:05 GMT", + "Date": "Fri, 13 Nov 2020 22:22:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "46" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "58" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -3902,38 +4472,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "2092fc80fd8fe9b038cefdf08cf2811e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7f88cc1d-61fb-48e8-a141-81e5ba9abebb", + "apim-request-id": "cd15dea1-1136-461b-8279-84ba5774ac83", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:06 GMT", + "Date": "Fri, 13 Nov 2020 22:22:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "67" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -3943,38 +4519,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "3d457f555ef3fc8b5020d2503ab86018", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e8835cf0-9acb-46ba-bd81-ea7b72c2e47f", + "apim-request-id": "5d591d46-12d0-41f9-bef5-da0054ca9fcd", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:07 GMT", + "Date": "Fri, 13 Nov 2020 22:22:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "56" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -3984,38 +4566,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9110bf2d159576a1d9dfabbfda574399", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "42a07114-8023-4bea-b94f-2759cc4289b5", + "apim-request-id": "efcc8935-af82-409c-8f42-e668207f2281", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:08 GMT", + "Date": "Fri, 13 Nov 2020 22:22:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "47" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -4025,38 +4613,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "afc3850aa132228e7196d06f2b5fae80", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c1da2600-b419-4c85-b827-47e7eeae0927", + "apim-request-id": "e055373c-48a9-4a33-ac0f-7ece94c9a414", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:10 GMT", + "Date": "Fri, 13 Nov 2020 22:22:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "48" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -4066,38 +4660,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ccc2e56ef0e23f88ddcf6313b3cc22f9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c1cbdd7d-d2a9-4df2-abce-e425f6e4e693", + "apim-request-id": "f1eaaa33-8370-49cf-b53a-abedde0d93c3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:11 GMT", + "Date": "Fri, 13 Nov 2020 22:22:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "35" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -4107,38 +4707,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b54638ddb0f58ce530ee1fff45324b7a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e73a066b-6ca0-4c2e-bef6-c894d181b694", + "apim-request-id": "50336e10-0e91-4e69-9f35-c9c9ce8f6943", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:12 GMT", + "Date": "Fri, 13 Nov 2020 22:22:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "44" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -4148,38 +4754,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f4512a3176941ab7fc83d2633e7a6ea5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c0764e05-4e19-43c0-8769-170211e1b4fc", + "apim-request-id": "dcde9eb4-6213-4e3d-a27f-1877be495afe", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:13 GMT", + "Date": "Fri, 13 Nov 2020 22:22:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "84" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -4189,38 +4801,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f292d774f919bd8bff369cf3d089f9ab", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e838d1c2-2a1a-4044-b9e3-2ef17980ce56", + "apim-request-id": "3a9ba6ef-ccfb-40c3-8906-0f78a69b69a0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:14 GMT", + "Date": "Fri, 13 Nov 2020 22:22:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "79" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "67" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -4230,38 +4848,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "88e2e8842d7b6665812bb871de824db6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "84f17f7b-193e-4d62-8566-3602e07e7327", + "apim-request-id": "3e780dfd-4b5e-4443-9089-7269278ed826", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:16 GMT", + "Date": "Fri, 13 Nov 2020 22:22:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "41" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 0, "failed": 0, @@ -4271,38 +4895,91 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "6e8b797f589f37619f93f55ddac34973", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "30ec7373-0a49-4cf2-95f4-015fe4e2208c", + "apim-request-id": "5fd21f21-8876-4e08-915d-513224d65cf4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:17 GMT", + "Date": "Fri, 13 Nov 2020 22:22:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "98" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithPHIDomain", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithPHIDomain", + "lastUpdateDateTime": "2020-11-13T22:20:37Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "55de2689e598462a712b71ed4119de7c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "f9de7ad2-21f7-452a-a7b1-2d2922cf4b38", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 13 Nov 2020 22:22:44 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "79" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "193d81a7-d9c4-44b7-9494-4094beaa4db0_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:27:11Z", - "createdDateTime": "2020-11-12T19:27:11Z", - "expirationDateTime": "2020-11-13T19:27:11Z", + "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:20:37Z", + "createdDateTime": "2020-11-13T22:20:37Z", + "expirationDateTime": "2020-11-14T22:20:37Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11Z" + "lastUpdateDateTime": "2020-11-13T22:20:37Z" }, "completed": 1, "failed": 0, @@ -4311,7 +4988,7 @@ "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-12T19:27:11.6265621Z", + "lastUpdateDateTime": "2020-11-13T22:20:37.7572598Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json index 7872efef941e7..587e2ec7ebb14 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "265", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8fed2b92b92a7f45ab3016f60a6fb939-4187e8478bf84141-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-505112d7537f11409db7b134fa5c0e5f-2451c6e5cef4634c-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "bc10ae4f3809e9b40d4f6b783fc973c7", "x-ms-return-client-request-id": "true" }, @@ -40,86 +46,98 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "d2b22176-0cc2-4ea8-926c-a6b488a3f395", - "Date": "Thu, 12 Nov 2020 19:24:41 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/1971736b-44d3-4965-9b03-4966911ff5d9_637407360000000000", + "apim-request-id": "6ae9efc7-6d62-44bf-a6af-7c1ba22f6798", + "Date": "Fri, 13 Nov 2020 22:18:19 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/aa1e2514-7dfa-44fe-b462-2e98f1b44c14_637408224000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "121" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "222" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/1971736b-44d3-4965-9b03-4966911ff5d9_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/aa1e2514-7dfa-44fe-b462-2e98f1b44c14_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e45290396662ad6e1e38f63536f933b4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a8ccdf69-cc9b-4217-9179-04c30a5f4e1d", + "apim-request-id": "513165d4-a4b0-4298-a108-e5bd4353be6c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:41 GMT", + "Date": "Fri, 13 Nov 2020 22:18:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "13" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { - "jobId": "1971736b-44d3-4965-9b03-4966911ff5d9_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:41Z", - "createdDateTime": "2020-11-12T19:24:41Z", - "expirationDateTime": "2020-11-13T19:24:41Z", + "jobId": "aa1e2514-7dfa-44fe-b462-2e98f1b44c14_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:20Z", + "createdDateTime": "2020-11-13T22:18:20Z", + "expirationDateTime": "2020-11-14T22:18:20Z", "status": "notStarted", "errors": [], "tasks": { "details": { - "lastUpdateDateTime": "2020-11-12T19:24:41Z" + "lastUpdateDateTime": "2020-11-13T22:18:20Z" }, "completed": 0, "failed": 0, - "inProgress": 0, - "total": 0 + "inProgress": 1, + "total": 1 } } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/1971736b-44d3-4965-9b03-4966911ff5d9_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/aa1e2514-7dfa-44fe-b462-2e98f1b44c14_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "026f5447158ee5d664682b08d83e8d91", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "89c6a63b-0f4e-4750-bbb0-941b555b0707", + "apim-request-id": "826e1df2-639b-4e44-9732-bd3641c53dec", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:42 GMT", + "Date": "Fri, 13 Nov 2020 22:18:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "38" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "53" }, "ResponseBody": { - "jobId": "1971736b-44d3-4965-9b03-4966911ff5d9_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:41Z", - "createdDateTime": "2020-11-12T19:24:41Z", - "expirationDateTime": "2020-11-13T19:24:41Z", + "jobId": "aa1e2514-7dfa-44fe-b462-2e98f1b44c14_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:20Z", + "createdDateTime": "2020-11-13T22:18:20Z", + "expirationDateTime": "2020-11-14T22:18:20Z", "status": "notStarted", "errors": [], "tasks": { "details": { - "lastUpdateDateTime": "2020-11-12T19:24:41Z" + "lastUpdateDateTime": "2020-11-13T22:18:20Z" }, "completed": 0, "failed": 0, @@ -129,36 +147,132 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/1971736b-44d3-4965-9b03-4966911ff5d9_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/aa1e2514-7dfa-44fe-b462-2e98f1b44c14_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "3f2ab8555934e81b40639ed1417fb313", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "39e96c8f-0d81-4976-b0e4-9885b4e5dc11", + "apim-request-id": "ee13b82a-3d9e-4978-8ab5-1e0c20f45397", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 13 Nov 2020 22:18:22 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" + }, + "ResponseBody": { + "jobId": "aa1e2514-7dfa-44fe-b462-2e98f1b44c14_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:20Z", + "createdDateTime": "2020-11-13T22:18:20Z", + "expirationDateTime": "2020-11-14T22:18:20Z", + "status": "notStarted", + "errors": [], + "tasks": { + "details": { + "lastUpdateDateTime": "2020-11-13T22:18:20Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/aa1e2514-7dfa-44fe-b462-2e98f1b44c14_637408224000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ea31b61c715a2439ba6d7ff93a66d4df", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c4cd34c2-b73b-4ee5-a9df-c75f12c1030c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 13 Nov 2020 22:18:23 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" + }, + "ResponseBody": { + "jobId": "aa1e2514-7dfa-44fe-b462-2e98f1b44c14_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:20Z", + "createdDateTime": "2020-11-13T22:18:20Z", + "expirationDateTime": "2020-11-14T22:18:20Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "lastUpdateDateTime": "2020-11-13T22:18:20Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 1, + "total": 1 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/aa1e2514-7dfa-44fe-b462-2e98f1b44c14_637408224000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7edf65aaf3ceed7f3986c12a7704a3e5", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d8b835dd-8a52-4fca-b476-cf8e6355bc32", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:43 GMT", + "Date": "Fri, 13 Nov 2020 22:18:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "73" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "84" }, "ResponseBody": { - "jobId": "1971736b-44d3-4965-9b03-4966911ff5d9_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:41Z", - "createdDateTime": "2020-11-12T19:24:41Z", - "expirationDateTime": "2020-11-13T19:24:41Z", + "jobId": "aa1e2514-7dfa-44fe-b462-2e98f1b44c14_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:20Z", + "createdDateTime": "2020-11-13T22:18:20Z", + "expirationDateTime": "2020-11-14T22:18:20Z", "status": "succeeded", "errors": [], "tasks": { "details": { - "lastUpdateDateTime": "2020-11-12T19:24:41Z" + "lastUpdateDateTime": "2020-11-13T22:18:20Z" }, "completed": 1, "failed": 0, @@ -166,7 +280,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2020-11-12T19:24:41.4780298Z", + "lastUpdateDateTime": "2020-11-13T22:18:20.4112222Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTestAsync.json index 7c3edc072badf..bc2f0b23d391c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "265", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-84188035c5b05e42b5ce1c1adc79f163-35742b4d74097e45-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-7195132f6272644ebe7e61bf799c3f41-c6f109cda6dc7049-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f64d021068f23b47239dc64d32ac0d55", "x-ms-return-client-request-id": "true" }, @@ -40,86 +46,53 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "453820ac-4833-48c0-9bbc-cfbc2d8b11c6", - "Date": "Thu, 12 Nov 2020 19:29:18 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/356334f1-471e-4ae8-93e4-4099155a2426_637407360000000000", + "apim-request-id": "45a144ef-7a4c-4eb3-bb91-10c56c32f8d1", + "Date": "Fri, 13 Nov 2020 22:22:44 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/00584754-5738-4f79-b409-1dea92872274_637408224000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "33" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "261" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/356334f1-471e-4ae8-93e4-4099155a2426_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/00584754-5738-4f79-b409-1dea92872274_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "326f6a53ce870c398bb9ee51f13f5560", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2ac4c14a-72de-49b4-826c-ae2078dfe6e4", + "apim-request-id": "cb5763f3-b115-4a40-9987-0ee1434c0825", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:18 GMT", + "Date": "Fri, 13 Nov 2020 22:22:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "14" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { - "jobId": "356334f1-471e-4ae8-93e4-4099155a2426_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:18Z", - "createdDateTime": "2020-11-12T19:29:18Z", - "expirationDateTime": "2020-11-13T19:29:18Z", + "jobId": "00584754-5738-4f79-b409-1dea92872274_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:45Z", + "createdDateTime": "2020-11-13T22:22:45Z", + "expirationDateTime": "2020-11-14T22:22:45Z", "status": "notStarted", "errors": [], "tasks": { "details": { - "lastUpdateDateTime": "2020-11-12T19:29:18Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 0, - "total": 0 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/356334f1-471e-4ae8-93e4-4099155a2426_637407360000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "4d2db5835d6ee56b0a068d1cd4f24286", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2b09c022-742a-47a8-842b-7682f7e85200", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:19 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "38" - }, - "ResponseBody": { - "jobId": "356334f1-471e-4ae8-93e4-4099155a2426_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:18Z", - "createdDateTime": "2020-11-12T19:29:18Z", - "expirationDateTime": "2020-11-13T19:29:18Z", - "status": "notStarted", - "errors": [], - "tasks": { - "details": { - "lastUpdateDateTime": "2020-11-12T19:29:18Z" + "lastUpdateDateTime": "2020-11-13T22:22:45Z" }, "completed": 0, "failed": 0, @@ -129,36 +102,42 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/356334f1-471e-4ae8-93e4-4099155a2426_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/00584754-5738-4f79-b409-1dea92872274_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "84470c68f8b742c6c8406a3979f549e3", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4d2db5835d6ee56b0a068d1cd4f24286", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a6ab372f-8fd4-4001-95e8-0ecbb3a218e8", + "apim-request-id": "97c9420f-0a99-4631-b5d1-db9372eb0cae", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:20 GMT", + "Date": "Fri, 13 Nov 2020 22:22:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "72" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "81" }, "ResponseBody": { - "jobId": "356334f1-471e-4ae8-93e4-4099155a2426_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:18Z", - "createdDateTime": "2020-11-12T19:29:18Z", - "expirationDateTime": "2020-11-13T19:29:18Z", + "jobId": "00584754-5738-4f79-b409-1dea92872274_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:45Z", + "createdDateTime": "2020-11-13T22:22:45Z", + "expirationDateTime": "2020-11-14T22:22:45Z", "status": "succeeded", "errors": [], "tasks": { "details": { - "lastUpdateDateTime": "2020-11-12T19:29:18Z" + "lastUpdateDateTime": "2020-11-13T22:22:45Z" }, "completed": 1, "failed": 0, @@ -166,7 +145,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2020-11-12T19:29:18.6446235Z", + "lastUpdateDateTime": "2020-11-13T22:22:45.8720855Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json index 6fc1dd7fc28e6..bffecd603401b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "336", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ded078b042fc5e4e82bddae41e696ecc-c7dc6107e9be1143-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-d1c60f4f71809b4e82b07ac482bb5457-cbd11ca98ec1904b-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "a87cf6cc9d26e81e4ad3c40561433cdc", "x-ms-return-client-request-id": "true" }, @@ -41,49 +47,55 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "df9d5210-7341-4a04-9d10-bed255d5a0fc", - "Date": "Thu, 12 Nov 2020 19:24:43 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b1f7b1a0-ee71-48fe-909e-0028444f192b_637407360000000000", + "apim-request-id": "e1c2491c-8171-4191-be87-4c0c1f1046f2", + "Date": "Fri, 13 Nov 2020 22:18:25 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e809a9b4-5507-4355-b6d8-deb7ee48011c_637408224000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "36" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "172" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b1f7b1a0-ee71-48fe-909e-0028444f192b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e809a9b4-5507-4355-b6d8-deb7ee48011c_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "829f189700a91102b7313377687a2cfe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9ddd4046-7261-4b38-9711-09d38c735212", + "apim-request-id": "d7b93495-7c66-4adb-a259-5af6b39ff011", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:43 GMT", + "Date": "Fri, 13 Nov 2020 22:18:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "displayName": "AnalyzeOperationWithLanguageTest", - "jobId": "b1f7b1a0-ee71-48fe-909e-0028444f192b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:44Z", - "createdDateTime": "2020-11-12T19:24:44Z", - "expirationDateTime": "2020-11-13T19:24:44Z", + "jobId": "e809a9b4-5507-4355-b6d8-deb7ee48011c_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:25Z", + "createdDateTime": "2020-11-13T22:18:25Z", + "expirationDateTime": "2020-11-14T22:18:25Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2020-11-12T19:24:44Z" + "lastUpdateDateTime": "2020-11-13T22:18:25Z" }, "completed": 0, "failed": 0, @@ -93,38 +105,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b1f7b1a0-ee71-48fe-909e-0028444f192b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e809a9b4-5507-4355-b6d8-deb7ee48011c_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "84565c5816eeba49622c1ac1b6d8c94c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "80ea87d5-34b3-41d6-ab91-e5a4e3a7b197", + "apim-request-id": "aad40c7a-ed49-4a83-a189-6554b53691fb", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:45 GMT", + "Date": "Fri, 13 Nov 2020 22:18:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "46" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "displayName": "AnalyzeOperationWithLanguageTest", - "jobId": "b1f7b1a0-ee71-48fe-909e-0028444f192b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:44Z", - "createdDateTime": "2020-11-12T19:24:44Z", - "expirationDateTime": "2020-11-13T19:24:44Z", + "jobId": "e809a9b4-5507-4355-b6d8-deb7ee48011c_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:25Z", + "createdDateTime": "2020-11-13T22:18:25Z", + "expirationDateTime": "2020-11-14T22:18:25Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2020-11-12T19:24:44Z" + "lastUpdateDateTime": "2020-11-13T22:18:25Z" }, "completed": 0, "failed": 0, @@ -134,38 +152,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b1f7b1a0-ee71-48fe-909e-0028444f192b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e809a9b4-5507-4355-b6d8-deb7ee48011c_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e6dbb519b5b4cb28f46af0f469a680d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b2644bee-1549-4472-81ac-6e7a5c287039", + "apim-request-id": "2de78c07-3d0e-463c-af0c-07e3514fa147", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:46 GMT", + "Date": "Fri, 13 Nov 2020 22:18:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "42" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { "displayName": "AnalyzeOperationWithLanguageTest", - "jobId": "b1f7b1a0-ee71-48fe-909e-0028444f192b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:44Z", - "createdDateTime": "2020-11-12T19:24:44Z", - "expirationDateTime": "2020-11-13T19:24:44Z", + "jobId": "e809a9b4-5507-4355-b6d8-deb7ee48011c_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:25Z", + "createdDateTime": "2020-11-13T22:18:25Z", + "expirationDateTime": "2020-11-14T22:18:25Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2020-11-12T19:24:44Z" + "lastUpdateDateTime": "2020-11-13T22:18:25Z" }, "completed": 0, "failed": 0, @@ -175,38 +199,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b1f7b1a0-ee71-48fe-909e-0028444f192b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e809a9b4-5507-4355-b6d8-deb7ee48011c_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "05acc6a6b8ec80eecfe5207de6405bde", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ff2d7b5a-ab20-4370-8fa1-483ab7fa1316", + "apim-request-id": "e3175b77-02f7-409b-a391-882191dd6fc7", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:47 GMT", + "Date": "Fri, 13 Nov 2020 22:18:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "40" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "displayName": "AnalyzeOperationWithLanguageTest", - "jobId": "b1f7b1a0-ee71-48fe-909e-0028444f192b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:44Z", - "createdDateTime": "2020-11-12T19:24:44Z", - "expirationDateTime": "2020-11-13T19:24:44Z", - "status": "notStarted", + "jobId": "e809a9b4-5507-4355-b6d8-deb7ee48011c_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:25Z", + "createdDateTime": "2020-11-13T22:18:25Z", + "expirationDateTime": "2020-11-14T22:18:25Z", + "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2020-11-12T19:24:44Z" + "lastUpdateDateTime": "2020-11-13T22:18:25Z" }, "completed": 0, "failed": 0, @@ -216,38 +246,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/b1f7b1a0-ee71-48fe-909e-0028444f192b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e809a9b4-5507-4355-b6d8-deb7ee48011c_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b25ee768459fa349338b9083255450bb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "33d1dcf1-34ff-4ef8-9317-def67ea9cfa3", + "apim-request-id": "a5926de6-68dd-4f82-aed9-4667a2e4e15c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:49 GMT", + "Date": "Fri, 13 Nov 2020 22:18:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "84" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "82" }, "ResponseBody": { "displayName": "AnalyzeOperationWithLanguageTest", - "jobId": "b1f7b1a0-ee71-48fe-909e-0028444f192b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:44Z", - "createdDateTime": "2020-11-12T19:24:44Z", - "expirationDateTime": "2020-11-13T19:24:44Z", + "jobId": "e809a9b4-5507-4355-b6d8-deb7ee48011c_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:25Z", + "createdDateTime": "2020-11-13T22:18:25Z", + "expirationDateTime": "2020-11-14T22:18:25Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2020-11-12T19:24:44Z" + "lastUpdateDateTime": "2020-11-13T22:18:25Z" }, "completed": 1, "failed": 0, @@ -256,7 +292,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2020-11-12T19:24:44.5786667Z", + "lastUpdateDateTime": "2020-11-13T22:18:25.9578135Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTestAsync.json index f98e8867ee7a1..87e6eda432faf 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "336", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4530c849a783b54a8554a015ee1c2917-959439da27547d48-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-d679df6c7266a54d9bfd8f93e827fee3-34f016c267087f49-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ff1f44cf0b7d52519f4611a53ca09dbe", "x-ms-return-client-request-id": "true" }, @@ -41,49 +47,55 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "0a9de4de-a963-4724-b27f-ea2ae0211552", - "Date": "Thu, 12 Nov 2020 19:29:20 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a493a7ba-0875-4f8a-b556-520c5a69f75d_637407360000000000", + "apim-request-id": "551dd8ac-77f0-4610-b541-3fdb3638a1cf", + "Date": "Fri, 13 Nov 2020 22:22:47 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2b4805e1-9b6b-4d27-ab76-4a843f6940e8_637408224000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "220" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "184" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a493a7ba-0875-4f8a-b556-520c5a69f75d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2b4805e1-9b6b-4d27-ab76-4a843f6940e8_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e5fe6af6690f6491194fc0223b355da1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2124d6e6-0eb0-4f01-bbae-5b14d3c5d4cd", + "apim-request-id": "aac0ab1d-6035-4124-a413-084aeba7a216", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:20 GMT", + "Date": "Fri, 13 Nov 2020 22:22:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "56" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "displayName": "AnalyzeOperationWithLanguageTest", - "jobId": "a493a7ba-0875-4f8a-b556-520c5a69f75d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:21Z", - "createdDateTime": "2020-11-12T19:29:21Z", - "expirationDateTime": "2020-11-13T19:29:21Z", + "jobId": "2b4805e1-9b6b-4d27-ab76-4a843f6940e8_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:47Z", + "createdDateTime": "2020-11-13T22:22:47Z", + "expirationDateTime": "2020-11-14T22:22:47Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2020-11-12T19:29:21Z" + "lastUpdateDateTime": "2020-11-13T22:22:47Z" }, "completed": 0, "failed": 0, @@ -93,38 +105,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a493a7ba-0875-4f8a-b556-520c5a69f75d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2b4805e1-9b6b-4d27-ab76-4a843f6940e8_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c22721a113540c5c7d4db56795b725e8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a6a6a0c6-5f59-49dd-b49c-be8a80b725b4", + "apim-request-id": "846d532b-faa2-4c63-91dc-8f7932a2c53a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:23 GMT", + "Date": "Fri, 13 Nov 2020 22:22:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "60" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "1824" }, "ResponseBody": { "displayName": "AnalyzeOperationWithLanguageTest", - "jobId": "a493a7ba-0875-4f8a-b556-520c5a69f75d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:21Z", - "createdDateTime": "2020-11-12T19:29:21Z", - "expirationDateTime": "2020-11-13T19:29:21Z", + "jobId": "2b4805e1-9b6b-4d27-ab76-4a843f6940e8_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:47Z", + "createdDateTime": "2020-11-13T22:22:47Z", + "expirationDateTime": "2020-11-14T22:22:47Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2020-11-12T19:29:21Z" + "lastUpdateDateTime": "2020-11-13T22:22:47Z" }, "completed": 0, "failed": 0, @@ -134,120 +152,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a493a7ba-0875-4f8a-b556-520c5a69f75d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2b4805e1-9b6b-4d27-ab76-4a843f6940e8_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c5f8bf9fc78e66c8b2bbe62e4a2e1669", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e3e779db-a4a1-4e8e-8fe6-fccb64c2d258", + "apim-request-id": "8eeecc7f-8fab-4b4a-8b71-c77404f27e47", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:24 GMT", + "Date": "Fri, 13 Nov 2020 22:22:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "39" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "90" }, "ResponseBody": { "displayName": "AnalyzeOperationWithLanguageTest", - "jobId": "a493a7ba-0875-4f8a-b556-520c5a69f75d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:21Z", - "createdDateTime": "2020-11-12T19:29:21Z", - "expirationDateTime": "2020-11-13T19:29:21Z", - "status": "notStarted", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2020-11-12T19:29:21Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a493a7ba-0875-4f8a-b556-520c5a69f75d_637407360000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "1b036fe8da78e36a0df268c1b329cf61", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b3d823d3-0325-4651-88b0-f4442b302c66", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:25 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "38" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithLanguageTest", - "jobId": "a493a7ba-0875-4f8a-b556-520c5a69f75d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:21Z", - "createdDateTime": "2020-11-12T19:29:21Z", - "expirationDateTime": "2020-11-13T19:29:21Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2020-11-12T19:29:21Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/a493a7ba-0875-4f8a-b556-520c5a69f75d_637407360000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "7c83d729973dd91359c00f992c2ec14e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "abb5b8a3-694d-4a36-9500-e95d9d089e73", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:26 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "77" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithLanguageTest", - "jobId": "a493a7ba-0875-4f8a-b556-520c5a69f75d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:21Z", - "createdDateTime": "2020-11-12T19:29:21Z", - "expirationDateTime": "2020-11-13T19:29:21Z", + "jobId": "2b4805e1-9b6b-4d27-ab76-4a843f6940e8_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:47Z", + "createdDateTime": "2020-11-13T22:22:47Z", + "expirationDateTime": "2020-11-14T22:22:47Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2020-11-12T19:29:21Z" + "lastUpdateDateTime": "2020-11-13T22:22:47Z" }, "completed": 1, "failed": 0, @@ -256,7 +198,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2020-11-12T19:29:21.6691666Z", + "lastUpdateDateTime": "2020-11-13T22:22:47.7416575Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasks.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasks.json index 9fd75886012a6..7411221fc3364 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasks.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasks.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "478", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f5898dbba6f17d408daf4039494668a8-c34acaf175d97c4f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-40ece2322dfa7c488c2aab90d925dd05-14f3daa3b3f18640-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "36d74cae0543ad22b4752e104a677574", "x-ms-return-client-request-id": "true" }, @@ -55,49 +61,55 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "c46cc714-fceb-42b6-83c3-c526581b7e7c", - "Date": "Thu, 12 Nov 2020 19:24:49 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", + "apim-request-id": "5ed37af0-6d42-4c60-ba64-2c4704fbe036", + "Date": "Fri, 13 Nov 2020 22:18:30 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "143" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "46" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "360f939000899016ea2d36ca05142466", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b3a8cc58-d1b3-4d47-833e-7ee4d2414887", + "apim-request-id": "106d8b38-8d1e-4c61-a75a-4718070a9c66", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:49 GMT", + "Date": "Fri, 13 Nov 2020 22:18:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:49Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:49Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 0, "failed": 0, @@ -107,38 +119,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "32033b4d84a2f3a2ac913141d710299b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "be39dd18-da6a-43aa-8deb-d941a6168839", + "apim-request-id": "ef50a774-7bdd-4e62-b8a5-f4502a2d1ff2", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:50 GMT", + "Date": "Fri, 13 Nov 2020 22:18:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "101" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", - "status": "running", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", + "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 0, "failed": 0, @@ -148,38 +166,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f287b823979aae6e35464c16cf57a89f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "997a979e-aa28-4be6-8efe-a94781b8ca92", + "apim-request-id": "824427f2-ccd8-44e5-a765-7ca1303ad148", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:51 GMT", + "Date": "Fri, 13 Nov 2020 22:18:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "102" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "101" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", - "status": "running", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", + "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 0, "failed": 0, @@ -189,38 +213,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "0fc2c75142640bd1f11c89f7cfd5b8da", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5f7fe393-c69e-48bd-8ca7-8681f411d45e", + "apim-request-id": "aab56389-58b9-4bb2-9f53-fd078dde9c29", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:53 GMT", + "Date": "Fri, 13 Nov 2020 22:18:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "143" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "150" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -229,7 +259,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -261,38 +291,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4da79a03318db6cbcc54fd5b388b2454", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1ae88010-db99-4e8d-ac15-08138cc135c9", + "apim-request-id": "2bcaefb2-2289-42cc-a6d1-75d60bb061ce", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:54 GMT", + "Date": "Fri, 13 Nov 2020 22:18:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "108" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "117" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -301,7 +337,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -333,38 +369,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "10ef92e91a4de036e67c017e0d76df5f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "659fc8a4-bd50-4983-9506-30bfebe9e89a", + "apim-request-id": "23402ccc-4df1-4a0f-9d90-af8d387e9e4a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:55 GMT", + "Date": "Fri, 13 Nov 2020 22:18:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "111" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "151" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -373,7 +415,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -405,38 +447,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "3412728d5bb02012fb0c420f4575d365", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d8c38107-8c1c-423d-a853-591c80e1a531", + "apim-request-id": "6fa4e0b3-3ee0-45b8-881e-daddf663810f", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:57 GMT", + "Date": "Fri, 13 Nov 2020 22:18:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "140" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "221" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -445,7 +493,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -477,38 +525,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "3d0e35f7a8e5e98c63c76610304da856", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4fc83645-60f4-48d1-a79e-f7d6305532eb", + "apim-request-id": "bcc24ef9-44aa-4ea3-9ba4-8e8c06e9fe2b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:24:58 GMT", + "Date": "Fri, 13 Nov 2020 22:18:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "147" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "123" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -517,7 +571,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -549,38 +603,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c5cd9d75ef798da47fcf1441d8269b70", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "588d5083-35f2-4d2c-a681-7f9b416e7b59", + "apim-request-id": "387ce6ab-948d-4a91-b2c7-b2af86684b60", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:00 GMT", + "Date": "Fri, 13 Nov 2020 22:18:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "192" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "128" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -589,7 +649,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -621,38 +681,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "d8869ca8a267e579e629d0e8f401f0ae", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "168f9d4f-2f27-4a65-9ab4-86cc811b7a89", + "apim-request-id": "c6204f04-12eb-4657-9748-bc9272c34f71", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:01 GMT", + "Date": "Fri, 13 Nov 2020 22:18:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "135" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "147" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -661,7 +727,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -693,38 +759,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "a79aeb630da808eb9080bd16944a103c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3f9f2826-ba32-401f-b123-f91546e55667", + "apim-request-id": "94a3c1f8-cb08-4d18-b75a-433d94a0194b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:02 GMT", + "Date": "Fri, 13 Nov 2020 22:18:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "121" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -733,7 +805,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -765,38 +837,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9368f62bd0c6d3ee23e8df501fbb997e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "066f531c-7c14-4e25-bdca-a32e19df1031", + "apim-request-id": "de533b31-8010-4c19-b97a-02bd0b50abe7", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:04 GMT", + "Date": "Fri, 13 Nov 2020 22:18:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "145" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "141" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -805,7 +883,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -837,38 +915,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ecde66dff38c9bc8b17e47e7e563509b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "85f266ab-e4f6-4938-8f3f-9e6943080a1e", + "apim-request-id": "7ec011bd-04b4-41a7-b9a9-6c94032f435c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:05 GMT", + "Date": "Fri, 13 Nov 2020 22:18:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "128" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "164" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -877,7 +961,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -909,38 +993,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "febd93185c9993e7fdc784bf2d9ae8d4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a54f057a-260c-4f35-8170-8ace5dfbf3c9", + "apim-request-id": "0c469923-dc3f-41eb-8537-da49cb8c3ad4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:06 GMT", + "Date": "Fri, 13 Nov 2020 22:18:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "116" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "130" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -949,7 +1039,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -981,38 +1071,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "2e363ee7236b38b02ecce2488807edc0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c474e66f-909b-49a7-b4d8-939fc017029b", + "apim-request-id": "aaf8eee3-bdd4-484b-80e7-61abffeafe8b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:07 GMT", + "Date": "Fri, 13 Nov 2020 22:18:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "138" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "123" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -1021,7 +1117,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -1053,38 +1149,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "8b3844989bfe83e57f4befc46f086d16", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6fea5a84-a1b8-4240-99e0-4cc52dc36aa0", + "apim-request-id": "20ee0a78-89e2-49d9-b751-f5bc54631211", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:08 GMT", + "Date": "Fri, 13 Nov 2020 22:18:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "139" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "142" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -1093,7 +1195,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -1125,38 +1227,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "a6ff7395222cf430e384cfcc7a9e0af5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6cdcb6e0-f49e-4b11-a222-5b9a8c706c1d", + "apim-request-id": "b3f9e808-19c5-42fd-a6d5-38ce78ed14e6", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:10 GMT", + "Date": "Fri, 13 Nov 2020 22:18:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "131" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "181" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -1165,7 +1273,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -1197,38 +1305,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e927c4d95d624cd658b3af2033ebc925", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9d6ebf0d-8c64-4a69-a85d-8bfc47c69c3b", + "apim-request-id": "0cf05654-9fd8-4804-afe5-232f9ea44e76", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:11 GMT", + "Date": "Fri, 13 Nov 2020 22:18:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "132" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "150" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -1237,7 +1351,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -1269,38 +1383,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "15b2cc5e470775931443a779cb1908e0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "678430c0-cdad-4a4c-8e29-c7f5742961c4", + "apim-request-id": "0d65bdce-a467-49d0-9536-6a567feeaf50", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:13 GMT", + "Date": "Fri, 13 Nov 2020 22:18:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "171" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "136" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -1309,7 +1429,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -1341,38 +1461,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "aaeaf94084e038b39db34d79720fc1f7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3816a5fb-c771-4e2f-a86f-df98b7bd9dd6", + "apim-request-id": "79df2cad-47ab-4067-be5b-289af79fad30", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:14 GMT", + "Date": "Fri, 13 Nov 2020 22:18:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "128" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "143" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -1381,7 +1507,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -1413,38 +1539,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ae6daabbf5eb92ee30b1d51fb55c813f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d5d7c2d1-e919-4c53-a59b-2b5fc402115b", + "apim-request-id": "854e2a58-6d58-4aea-be3b-42c70abf5fb0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:15 GMT", + "Date": "Fri, 13 Nov 2020 22:18:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "167" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "160" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -1453,7 +1585,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -1485,38 +1617,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "3adfceaa1e00da44187a7854f91a0204", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "38471082-ef8c-43e2-bb9e-70d6016cbcf7", + "apim-request-id": "40816a58-99d8-426b-89d0-c4eac3072d6c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:17 GMT", + "Date": "Fri, 13 Nov 2020 22:18:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "121" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "118" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -1525,7 +1663,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -1557,38 +1695,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "20beb0825aab4af40b58792fae948240", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5e4ebbb2-813d-4b9c-99d3-d43523f8fc42", + "apim-request-id": "9898fc42-a207-42c9-8032-069d6a319351", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:18 GMT", + "Date": "Fri, 13 Nov 2020 22:18:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "130" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -1597,7 +1741,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -1629,38 +1773,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "a3ce0e3286309cf6659295717d9a9916", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "925a0a33-0542-4a75-ab88-3f0cf9eed1b5", + "apim-request-id": "db414e29-b7ce-4ea9-92da-a497c5e49d5e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:19 GMT", + "Date": "Fri, 13 Nov 2020 22:19:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "172" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "140" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -1669,7 +1819,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -1701,38 +1851,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "059dd1ae609d4f93da942ea8a4152b84", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5d44e9ef-9145-433c-8bf3-c50a84a10a05", + "apim-request-id": "56066cf6-193e-4c77-b83d-0f171ff9fd0d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:20 GMT", + "Date": "Fri, 13 Nov 2020 22:19:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "200" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "122" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -1741,7 +1897,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -1773,38 +1929,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ea2137f85e4bfbd4b922bb18c583cc71", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a8c8ae66-37c7-4363-b76b-febddc21e2ed", + "apim-request-id": "0ec7fc6b-8faa-4273-87f9-23a96d7ff411", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:22 GMT", + "Date": "Fri, 13 Nov 2020 22:19:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "138" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "136" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -1813,7 +1975,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -1845,38 +2007,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "dd8063bf7df6d2a37a7ec99b584ef74f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3ff72a0e-5b5a-412f-8e63-272f54de9681", + "apim-request-id": "ed7a4c10-11df-44a6-a708-4b563ef5d28d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:23 GMT", + "Date": "Fri, 13 Nov 2020 22:19:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "128" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "137" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -1885,7 +2053,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -1917,38 +2085,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "46791167ae784fcafca14b7ba47b8a57", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ab3bb705-7916-4212-b018-7ff5c2d10493", + "apim-request-id": "12b4726b-7778-4b72-b4a2-2d36aea7a1ec", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:24 GMT", + "Date": "Fri, 13 Nov 2020 22:19:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "125" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "158" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -1957,7 +2131,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -1989,38 +2163,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "41e9bdc74d957a8d934f70cd9539a36b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "90a0b0c8-8542-4551-a0bd-4eff10f57907", + "apim-request-id": "34ebdff6-8d39-489a-8b32-9b2ae9edca6e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:26 GMT", + "Date": "Fri, 13 Nov 2020 22:19:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "128" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "146" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -2029,7 +2209,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -2061,38 +2241,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b3b16b2a860a10f99830e15432272dff", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8e3a1a81-30fd-4e9e-9121-5500e103bbad", + "apim-request-id": "bbd9ddc1-7ec8-4b72-ad87-0cb879a119fa", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:27 GMT", + "Date": "Fri, 13 Nov 2020 22:19:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "139" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "160" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -2101,7 +2287,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -2133,38 +2319,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9ad372f3b66519ba84feb2283dfdbac3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "42d74995-9b99-4b0a-8a04-2639caf949f3", + "apim-request-id": "7c62cc18-f3cd-4230-8545-8c879dbc7c10", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:28 GMT", + "Date": "Fri, 13 Nov 2020 22:19:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "135" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "132" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -2173,7 +2365,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -2205,38 +2397,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "3851dffed7c9414cc4d8a9646c38486b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "086ae6f2-478f-4525-868b-eb99f2729a63", + "apim-request-id": "d26c96e2-79ae-49ba-938c-036d9b8af916", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:30 GMT", + "Date": "Fri, 13 Nov 2020 22:19:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "115" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "137" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -2245,7 +2443,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -2277,38 +2475,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "22d9702208667306b1982f0bd3d1d29a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e495e1b0-802d-4c57-8ecd-515c5e67010c", + "apim-request-id": "d5f9bceb-0370-4089-892e-1f6ea27937c7", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:31 GMT", + "Date": "Fri, 13 Nov 2020 22:19:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "133" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "143" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -2317,7 +2521,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -2349,38 +2553,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "52561d75f4d61c352591d68d0d55ac4c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0c226230-7a16-4679-9b98-8ad3e76b3315", + "apim-request-id": "8ed38a72-d372-4fc7-ad10-3bf3f36e5315", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:33 GMT", + "Date": "Fri, 13 Nov 2020 22:19:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "135" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "133" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -2389,7 +2599,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -2421,38 +2631,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "cd0546b59724f55dd9dd8731a7416df3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "180026d5-c0cc-49da-ac1c-5f669d791426", + "apim-request-id": "04e1f9a6-7961-49e0-b5a7-f0cdbaa338b6", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:34 GMT", + "Date": "Fri, 13 Nov 2020 22:19:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "160" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "121" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -2461,7 +2677,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -2493,38 +2709,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4fee0e05f6e12d953abcfdd43278665b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f267f956-e501-4872-99c0-6b278bc8351b", + "apim-request-id": "d24d8bbd-d937-4331-80b2-b672f843d209", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:35 GMT", + "Date": "Fri, 13 Nov 2020 22:19:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "136" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "152" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -2533,7 +2755,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -2565,38 +2787,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "8c55e2eb05cbde76c06078f86c0475e4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ac1047ac-9359-4a04-94c8-beed85e2488c", + "apim-request-id": "bd4dab7d-380b-40df-bb16-38ca91e11464", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:37 GMT", + "Date": "Fri, 13 Nov 2020 22:19:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "150" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "179" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -2605,7 +2833,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -2637,38 +2865,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ff87e3235d67bf6ab1d892679a88c360", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3509ebc2-0e64-4e90-a192-a19253c02933", + "apim-request-id": "fecc09cd-379f-44bf-955c-45dc5cf8222b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:38 GMT", + "Date": "Fri, 13 Nov 2020 22:19:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "161" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "147" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -2677,7 +2911,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -2709,38 +2943,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c4462c77e1ebff2897108e817d9cc036", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e95109ca-1ad8-411c-b67e-ccb162b6051c", + "apim-request-id": "5507f077-3578-4345-96b4-b76b141950fb", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:39 GMT", + "Date": "Fri, 13 Nov 2020 22:19:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "146" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "137" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -2749,7 +2989,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -2781,38 +3021,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4eb1184767f18df47896dbf2730f4437", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "adeb442a-aaad-4877-97aa-037850c31639", + "apim-request-id": "3440858f-9d18-4446-b97d-fd975fe672f8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:40 GMT", + "Date": "Fri, 13 Nov 2020 22:19:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "133" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "142" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -2821,7 +3067,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -2853,38 +3099,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4081179cb0be42f9bb886756cfe84114", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9410c243-4505-4a97-b402-ad3a933047e8", + "apim-request-id": "4fea66ed-b79c-46c5-88af-f139af4d43c3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:42 GMT", + "Date": "Fri, 13 Nov 2020 22:19:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "134" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "138" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -2893,7 +3145,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -2925,38 +3177,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "81205b1774d7106f38b84c5505358b88", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6ad905ce-85d0-4b77-817a-ee538fdbdfa4", + "apim-request-id": "83a0b597-3598-4bd5-b8c6-4387d983d269", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:43 GMT", + "Date": "Fri, 13 Nov 2020 22:19:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "167" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "120" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -2965,7 +3223,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -2997,38 +3255,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "66e556cc801b97781f6e9368ff9dbe90", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5f06da69-0384-4a3c-aba3-0876d4d5fe96", + "apim-request-id": "2d98e638-14a9-4594-9465-9090a2110032", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:44 GMT", + "Date": "Fri, 13 Nov 2020 22:19:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "156" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "114" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -3037,7 +3301,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -3069,38 +3333,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "17dbc754c2ee2760a770070563a43d85", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "141e1b36-cadc-44fa-a473-a62b901b8cf9", + "apim-request-id": "58e608e8-ca6f-4f85-b5b6-e7462d83d2f8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:46 GMT", + "Date": "Fri, 13 Nov 2020 22:19:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "151" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "145" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -3109,7 +3379,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -3141,38 +3411,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "788adefcdb0397f8e3886169e107109b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0808a145-6255-48a3-a8f2-2ebd6e1b6473", + "apim-request-id": "e66d7633-e814-47af-a2df-694b4317bbfb", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:47 GMT", + "Date": "Fri, 13 Nov 2020 22:19:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "195" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "140" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -3181,7 +3457,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -3213,38 +3489,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "3e00bcfa73590999f6bdbeab7872337b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ed45312b-4019-44f2-bd21-a6a5f754c523", + "apim-request-id": "118aef29-d25e-4c00-ad3a-969751427645", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:48 GMT", + "Date": "Fri, 13 Nov 2020 22:19:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "158" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "126" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -3253,7 +3535,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -3285,38 +3567,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "206b0d314612788cce44346561f646a0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "96963404-f55a-4a0b-b8b5-95861f3f1263", + "apim-request-id": "2e953b2c-e29e-488a-9922-a842e8d3134b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:49 GMT", + "Date": "Fri, 13 Nov 2020 22:19:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "168" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "204" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -3325,7 +3613,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -3357,38 +3645,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "a70a6c5ffea3892b458081461d4d1e71", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d80d3a74-cfc4-41f7-bebe-f83110b41e70", + "apim-request-id": "71a02d65-f592-4cac-8827-18c5a7661468", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:52 GMT", + "Date": "Fri, 13 Nov 2020 22:19:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "150" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "139" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -3397,7 +3691,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -3429,38 +3723,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "d337e555ef9bb4882f8770153f33a8ff", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3089fb46-5afb-4ad0-ad5b-503a443bb71a", + "apim-request-id": "153b37c6-2b9d-4fcf-8198-4cd231fd68e4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:53 GMT", + "Date": "Fri, 13 Nov 2020 22:19:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "104" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "137" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -3469,7 +3769,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -3501,38 +3801,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "0b4b1d768b6732d8e1e2db92c4465b80", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "79d6d229-9014-4d06-86c1-25e83f06bf72", + "apim-request-id": "d9726177-275a-4326-8f3e-1ca7035d1995", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:54 GMT", + "Date": "Fri, 13 Nov 2020 22:19:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "180" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "127" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -3541,7 +3847,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -3573,38 +3879,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "7b10c32573be7005e456781b8e164911", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e24b310c-6c1d-4194-beb9-2ec4e35657a9", + "apim-request-id": "571462c6-4b40-4eb1-a27c-8c05eb1dffb3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:55 GMT", + "Date": "Fri, 13 Nov 2020 22:19:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "151" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "140" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -3613,7 +3925,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -3645,38 +3957,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ffcf81d81202c9090d05f1b814f6efe8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d5a3533d-7368-4083-85dc-6daa051fbef4", + "apim-request-id": "28a8c800-7720-4032-942c-8bfef5e07a70", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:56 GMT", + "Date": "Fri, 13 Nov 2020 22:19:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "151" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "135" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -3685,7 +4003,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -3717,38 +4035,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "7cf0ef2c2c23034018db271113bca3cb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "30c30e7c-c177-4f2b-a97f-a6d05747ff98", + "apim-request-id": "e3365b96-2b57-45a3-8141-50ad4c782d9e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:25:57 GMT", + "Date": "Fri, 13 Nov 2020 22:19:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "155" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "163" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 1, "failed": 0, @@ -3757,7 +4081,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -3789,47 +4113,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "43b9ca985b77127db9476db9814c5bee", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "badafcb3-11e6-4eb6-87ca-eb1b79ea6cd5", + "apim-request-id": "cb9eff68-03fc-4618-bf64-f92908a13c8d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:00 GMT", + "Date": "Fri, 13 Nov 2020 22:19:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "203" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "190" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -3861,47 +4240,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9eef8f66cd25aced40cbe727ebf8b551", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "74acb889-4c8d-4cdf-bf8b-c96be7e84831", + "apim-request-id": "7913bc5e-d757-4608-a8bb-e3c6f3c9a92b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:01 GMT", + "Date": "Fri, 13 Nov 2020 22:19:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "127" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "203" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -3933,47 +4367,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4a202662ac3cd07172ddc2dcbe8782cc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "11733ad8-7edd-4032-bbc2-769fa70a625e", + "apim-request-id": "cf05224b-7dd5-47eb-9f55-5e653a95e3f9", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:02 GMT", + "Date": "Fri, 13 Nov 2020 22:19:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "155" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "205" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -4005,119 +4494,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "84aa387f04cccba5dc0d02ab745526c1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6c8990c9-6c46-40de-827d-7a69225a9ef5", + "apim-request-id": "85fbfd83-2422-4a5e-999a-9b122f500151", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:03 GMT", + "Date": "Fri, 13 Nov 2020 22:19:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "154" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "249" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ { + "redactedText": "********* was founded by ********** and **********.", "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" - ], - "warnings": [] - }, - { - "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" - ], + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], "warnings": [] } ], - "errors": [], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], "modelVersion": "2020-07-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "5b571c91112cbab11d1f2c480b11edb8", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "f185eb66-4e27-4417-8e77-e54420de27df", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:05 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "131" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -4149,47 +4621,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "b3a81b49314e5d8580546d2fa9c65b1c", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "5b571c91112cbab11d1f2c480b11edb8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ebb3c6ac-1aa0-41cd-bb12-2bfb4b56dea7", + "apim-request-id": "c4dcc82e-b81a-46c0-9a63-4aa073304002", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:06 GMT", + "Date": "Fri, 13 Nov 2020 22:19:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "127" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "157" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -4221,47 +4748,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "a24a00b726306da086ef66add75dc0ca", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b3a81b49314e5d8580546d2fa9c65b1c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3f5d9061-7ba1-44f5-94b7-a7d3a97d457c", + "apim-request-id": "54cd0668-5657-4a0e-8f64-2f322127a38c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:07 GMT", + "Date": "Fri, 13 Nov 2020 22:19:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "134" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "166" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -4293,47 +4875,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "59614a1f73ad5f7397f9dad7a4811156", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "a24a00b726306da086ef66add75dc0ca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "59ff303c-1ce3-4ff8-bbf3-c840715161bf", + "apim-request-id": "30c01fc7-07a3-4636-9ef5-5ae5b6a31e77", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:08 GMT", + "Date": "Fri, 13 Nov 2020 22:19:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "164" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "319" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -4365,47 +5002,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "0a9110c34ac623887a3a2c5ecad88522", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "59614a1f73ad5f7397f9dad7a4811156", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dd272027-20f6-48c9-bbf3-d6086713f4d5", + "apim-request-id": "29fe6ebd-5661-40d5-b4d1-64e44c435e57", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:09 GMT", + "Date": "Fri, 13 Nov 2020 22:19:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "157" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "234" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -4437,47 +5129,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "5f10a2940265436f8deb0b364bc8c905", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0a9110c34ac623887a3a2c5ecad88522", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "23ef09e4-92ee-4991-b453-20b647469766", + "apim-request-id": "d371afe2-1643-4e3c-8cc1-decc12fca5cb", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:11 GMT", + "Date": "Fri, 13 Nov 2020 22:19:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "165" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "154" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -4509,47 +5256,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "c7e910deb5ccd404c13ede72461494bf", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "5f10a2940265436f8deb0b364bc8c905", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "889fab59-25cd-477f-9d11-d14e62b45b01", + "apim-request-id": "8134a2b7-54d9-46a9-8df9-650f1c8eadcd", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:12 GMT", + "Date": "Fri, 13 Nov 2020 22:19:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "133" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "189" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -4581,47 +5383,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "0142b773b171c1f1a14d7ddb3f51d7b2", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c7e910deb5ccd404c13ede72461494bf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ab921ecd-7772-42a6-aa57-e1db384e3090", + "apim-request-id": "c8a207eb-943b-474b-b133-1d0fa2b089cb", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:13 GMT", + "Date": "Fri, 13 Nov 2020 22:19:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "129" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "187" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -4653,47 +5510,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "ba802770beeedf569e3b9d2723fcfd78", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "0142b773b171c1f1a14d7ddb3f51d7b2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3fc5fbc5-64e7-4add-ae47-b4c2d79cbb80", + "apim-request-id": "1a466676-9936-449e-98cf-a567441f34bf", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:15 GMT", + "Date": "Fri, 13 Nov 2020 22:19:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "121" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "190" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -4725,119 +5637,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "93c24c56c8852c931f27267f37289570", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ba802770beeedf569e3b9d2723fcfd78", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "20073f94-4be1-4f71-8479-9c1a27daa95a", + "apim-request-id": "27857572-6822-4655-8965-b773fc8a19a1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:17 GMT", + "Date": "Fri, 13 Nov 2020 22:19:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "177" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "190" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ { + "redactedText": "********* was founded by ********** and **********.", "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } ], "warnings": [] - }, + } + ], + "errors": [ { "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" - ], - "warnings": [] + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } } ], - "errors": [], "modelVersion": "2020-07-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "1f012c66da94b5d06163633614c99da4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "bbc04ea8-2865-41ef-ba87-b65033207bf1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:18 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "173" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -4869,47 +5764,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "f3850550438ea82c94539bc698d7a775", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "93c24c56c8852c931f27267f37289570", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9bfab835-4483-4c19-9c1a-64c34dedc84b", + "apim-request-id": "df789d3e-0429-49b2-ac3a-f00bd5f2e684", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:19 GMT", + "Date": "Fri, 13 Nov 2020 22:19:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "160" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "172" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -4941,47 +5891,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "f7c02da6defa7be37b0d3222655d1855", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "1f012c66da94b5d06163633614c99da4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a5a72dc7-3046-4c79-a9ec-8b200e33f347", + "apim-request-id": "6ea10490-cdeb-42db-9440-819092bfcf83", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:20 GMT", + "Date": "Fri, 13 Nov 2020 22:19:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "118" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "246" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -5013,47 +6018,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "322e818aa1a323e1ff598b413e091d8a", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f3850550438ea82c94539bc698d7a775", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7e47d5b5-990f-4d56-b7ab-5d81aabceeaa", + "apim-request-id": "1ed8adfd-bdb5-475e-b5bd-e402d23267a5", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:22 GMT", + "Date": "Fri, 13 Nov 2020 22:20:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "131" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "285" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -5085,119 +6145,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "e68fedbba60972a921097881110a4336", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f7c02da6defa7be37b0d3222655d1855", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f56a1e01-80d9-4662-a7a6-550ba69183bb", + "apim-request-id": "7d347692-17aa-41d8-b539-cd3ec938fb07", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:23 GMT", + "Date": "Fri, 13 Nov 2020 22:20:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "157" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "237" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ { + "redactedText": "********* was founded by ********** and **********.", "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } ], "warnings": [] - }, + } + ], + "errors": [ { "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" - ], - "warnings": [] + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } } ], - "errors": [], "modelVersion": "2020-07-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "163c463b75a804d14b9cf7a152a23c71", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c6e54e2e-1239-429d-ab65-2686d89d7402", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:24 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "158" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -5229,47 +6272,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "7766a8ef31cde44bd7bc109a296012f5", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "322e818aa1a323e1ff598b413e091d8a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5a47e77a-db19-4830-ad3e-270c1bc6be8d", + "apim-request-id": "4ce9767b-fbc6-4391-a1f4-de0c8a79797c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:26 GMT", + "Date": "Fri, 13 Nov 2020 22:20:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "159" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "184" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -5301,47 +6399,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "f806541507cc46e11c8a9b6cae071f7f", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e68fedbba60972a921097881110a4336", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7f060353-43cc-47c0-a44e-66de372a1738", + "apim-request-id": "8d727a4a-ff01-4dca-9ec9-ea04db102fa5", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:27 GMT", + "Date": "Fri, 13 Nov 2020 22:20:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "148" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "237" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -5373,47 +6526,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "689106cccca30969fa583eeb6536dbeb", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "163c463b75a804d14b9cf7a152a23c71", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dec6ae1d-b3ef-4703-a638-ce2f01bd170c", + "apim-request-id": "a8a5ec21-d637-44b7-b81d-efea76dc2245", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:28 GMT", + "Date": "Fri, 13 Nov 2020 22:20:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "143" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "329" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -5445,47 +6653,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "fe8c028a449be8a4c6205a4295df35cf", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7766a8ef31cde44bd7bc109a296012f5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "98bfd664-d8d1-46c9-8412-a214d162e397", + "apim-request-id": "4dec4138-e044-485f-817a-2199ebda3674", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:29 GMT", + "Date": "Fri, 13 Nov 2020 22:20:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "128" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "220" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -5517,47 +6780,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "23ce909da9cf4952ebfcfe74c8f5e1e5", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "f806541507cc46e11c8a9b6cae071f7f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d8bd5eda-2385-4a25-8388-1a92ca45a0cd", + "apim-request-id": "5cfbb405-77de-4208-a721-e0a3bb7683ec", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:30 GMT", + "Date": "Fri, 13 Nov 2020 22:20:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "172" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "181" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -5589,47 +6907,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "ace2b0af207b87e361a8a2837126731b", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "689106cccca30969fa583eeb6536dbeb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "840295cb-d475-4395-a6e8-ead0d3b567bb", + "apim-request-id": "79a2e658-af4f-4324-8158-875dd6032bf3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:32 GMT", + "Date": "Fri, 13 Nov 2020 22:20:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "142" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "202" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -5661,47 +7034,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "d44e6e22b868e11baf42139f463020d0", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "fe8c028a449be8a4c6205a4295df35cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9bd310c0-e100-4c43-bb19-4f4c187a9ea1", + "apim-request-id": "19b27b01-3ddc-4b6b-a6ee-8e178481caa8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:33 GMT", + "Date": "Fri, 13 Nov 2020 22:20:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "118" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "177" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -5733,47 +7161,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "e593743e89fc7d54ac46c12607ced8c5", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "23ce909da9cf4952ebfcfe74c8f5e1e5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fc4a255d-6172-46e8-95ac-823b6d87684b", + "apim-request-id": "1f86e380-f101-416e-9cde-a73716e99d09", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:35 GMT", + "Date": "Fri, 13 Nov 2020 22:20:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "142" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "251" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -5805,119 +7288,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "5951e2890ca7f67d9401fc390d444130", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ace2b0af207b87e361a8a2837126731b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5f044304-da98-4c85-a0e1-5de52765acd5", + "apim-request-id": "9b82b442-7ab3-4176-8187-32625c6be41e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:37 GMT", + "Date": "Fri, 13 Nov 2020 22:20:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "137" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "180" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ { + "redactedText": "********* was founded by ********** and **********.", "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } ], "warnings": [] - }, + } + ], + "errors": [ { "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" - ], - "warnings": [] + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } } ], - "errors": [], "modelVersion": "2020-07-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "fc44d1888e92981e1ad12821f6f5d9e1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "6b95e3e4-733b-4cff-ac06-9ce80bcd3df8", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:38 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "158" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -5949,47 +7415,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "63164e6ac6de3128f79d51fb8d1b7067", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d44e6e22b868e11baf42139f463020d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aab3ca90-7697-41db-af6a-b5e982096bbe", + "apim-request-id": "6b0f1e64-e4bb-4db8-bbf1-c1e298c29fbb", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:39 GMT", + "Date": "Fri, 13 Nov 2020 22:20:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "136" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "225" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -6021,47 +7542,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "359d9105db89fa32c3b93fd6e45cff9e", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e593743e89fc7d54ac46c12607ced8c5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b008e865-41fa-464b-a833-34fc3380a5e5", + "apim-request-id": "f6551a4f-e7f4-40d5-9e75-41cd4a4b2208", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:41 GMT", + "Date": "Fri, 13 Nov 2020 22:20:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "138" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "167" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -6093,47 +7669,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "bece1a27dd2ec151a81305f43d220aff", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "5951e2890ca7f67d9401fc390d444130", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "854c116e-2f46-4c96-95a8-f7ed4c243679", + "apim-request-id": "cf7cce74-4a69-4000-a27d-0520f95e6414", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:42 GMT", + "Date": "Fri, 13 Nov 2020 22:20:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "177" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "231" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -6165,119 +7796,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "651bc061a4578e571b1b9f2587514d9a", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "fc44d1888e92981e1ad12821f6f5d9e1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2324406b-4609-44d7-9d0c-87cd20b48162", + "apim-request-id": "2b7bb752-4dc1-49fc-856f-1ab135018248", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:43 GMT", + "Date": "Fri, 13 Nov 2020 22:20:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "136" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "205" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ { + "redactedText": "********* was founded by ********** and **********.", "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } ], "warnings": [] - }, + } + ], + "errors": [ { "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" - ], - "warnings": [] + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } } ], - "errors": [], "modelVersion": "2020-07-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "73d4b29db14c27393fdc8c76d63ebda1", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ba7a55fa-357c-41d4-983d-35eb5f87c1a3", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:44 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "165" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -6309,47 +7923,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "24753fae9a408347c33fa2133d2c3956", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "63164e6ac6de3128f79d51fb8d1b7067", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f510e01d-cd5e-4b19-b349-84888a25d21e", + "apim-request-id": "c9193eb4-ff46-44bc-9330-d9407d34ff70", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:45 GMT", + "Date": "Fri, 13 Nov 2020 22:20:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "142" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "173" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -6381,47 +8050,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "8a566ac5974eafb387f4267b17e1b8dd", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "359d9105db89fa32c3b93fd6e45cff9e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "61ae0a68-962f-429f-bbf4-63a61ed3595a", + "apim-request-id": "b5d946c5-5d6e-43b5-b776-2fabbf4fa4df", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:47 GMT", + "Date": "Fri, 13 Nov 2020 22:20:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "136" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "175" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -6453,47 +8177,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "4877fe5d28dc03596b51b00c0e26e912", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "bece1a27dd2ec151a81305f43d220aff", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8aec04da-79bb-4ee6-9696-a795574598e7", + "apim-request-id": "2c80e345-7ca2-45a1-a372-478d919ab89b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:48 GMT", + "Date": "Fri, 13 Nov 2020 22:20:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "142" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "251" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -6525,47 +8304,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "6bb035a232e716528cc69d4c73cb6ce1", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "651bc061a4578e571b1b9f2587514d9a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e0f93013-c200-429f-a69f-efe31944f922", + "apim-request-id": "1faaf53a-84fe-4019-9f9d-1603cf953d0e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:50 GMT", + "Date": "Fri, 13 Nov 2020 22:20:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "170" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "189" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -6597,47 +8431,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "3eb5c587f1b49c7a11531ffde7a6a061", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "73d4b29db14c27393fdc8c76d63ebda1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9d94c73d-0621-4d4a-ae81-f0c8f92ae9a1", + "apim-request-id": "bf04b34f-6419-4758-9601-fa6349d9b0f2", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:51 GMT", + "Date": "Fri, 13 Nov 2020 22:20:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "124" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "190" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -6669,119 +8558,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "e1d8130a4c302af6ac61bb158b0d8f9f", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "24753fae9a408347c33fa2133d2c3956", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4acd5421-008c-48c2-a404-499e02faf519", + "apim-request-id": "b70593a0-be24-4fce-8ca0-ba829ce736da", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:52 GMT", + "Date": "Fri, 13 Nov 2020 22:20:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "189" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ { + "redactedText": "********* was founded by ********** and **********.", "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } ], "warnings": [] - }, + } + ], + "errors": [ { "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" - ], - "warnings": [] + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } } ], - "errors": [], "modelVersion": "2020-07-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "4985cee5ab70b05ebb135a9313552ee5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1a03ba31-6525-4af4-8648-f009959c26f5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:53 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "152" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -6813,47 +8685,102 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "60413b258af23ab1cf8b925335651103", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "8a566ac5974eafb387f4267b17e1b8dd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3c5574e3-f681-4a72-92db-a835e27d3bec", + "apim-request-id": "38964b30-0ae2-4405-a9db-5e585ed8426b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:55 GMT", + "Date": "Fri, 13 Nov 2020 22:20:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "123" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "208" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, + "entityRecognitionPiiTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "redactedText": "********* was founded by ********** and **********.", + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + } + ], + "errors": [ + { + "id": "2", + "error": { + "code": "InvalidArgument", + "message": "Invalid language code. Supported languages: en" + } + } + ], + "modelVersion": "2020-07-01" + } + } + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -6885,38 +8812,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "191880c357215ff0b528261cf2621756", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4877fe5d28dc03596b51b00c0e26e912", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "241fa6f2-0965-47dd-93b8-8c78de501d8a", + "apim-request-id": "eec9cec1-8704-4528-b9f0-537135f7ef54", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:57 GMT", + "Date": "Fri, 13 Nov 2020 22:20:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "207" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "187" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 2, "failed": 0, @@ -6925,7 +8858,7 @@ "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -6974,7 +8907,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -7006,38 +8939,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "4ff0d6332fcb5aac1c4a7ae5180b7a56", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "6bb035a232e716528cc69d4c73cb6ce1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d044a780-3997-45f0-aa9e-a963a62948ca", + "apim-request-id": "2606ceca-395f-4f39-b0f5-07baf12fb2ad", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:58 GMT", + "Date": "Fri, 13 Nov 2020 22:20:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "161" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "197" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 2, "failed": 0, @@ -7046,7 +8985,7 @@ "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -7095,7 +9034,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -7127,38 +9066,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "92cf5602143dcdc44be2abca6494486c", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "3eb5c587f1b49c7a11531ffde7a6a061", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bec83e66-952a-46d4-a3c8-b02325beffa3", + "apim-request-id": "c0047e5a-0028-4c3d-a2f6-2543b9271421", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:26:59 GMT", + "Date": "Fri, 13 Nov 2020 22:20:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "354" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "167" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 2, "failed": 0, @@ -7167,7 +9112,7 @@ "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -7216,7 +9161,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -7248,38 +9193,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "5f203c73c1749438d4bdfcd7dd0b47aa", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "e1d8130a4c302af6ac61bb158b0d8f9f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4d036db2-51a9-48a7-bbb9-95dc4e7478b9", + "apim-request-id": "864b8cf7-0b2c-4f16-ad19-c4e3bb261b85", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:27:00 GMT", + "Date": "Fri, 13 Nov 2020 22:20:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "251" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "254" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "fc0248ed-6cb0-4870-8d72-d748725d712b_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:24:50Z", - "createdDateTime": "2020-11-12T19:24:49Z", - "expirationDateTime": "2020-11-13T19:24:49Z", + "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:18:31Z", + "createdDateTime": "2020-11-13T22:18:31Z", + "expirationDateTime": "2020-11-14T22:18:31Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50Z" + "lastUpdateDateTime": "2020-11-13T22:18:31Z" }, "completed": 3, "failed": 0, @@ -7288,7 +9239,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -7357,7 +9308,7 @@ "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ @@ -7406,7 +9357,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:24:50.352098Z", + "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasksAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasksAsync.json index b22af42056892..5786ca4023586 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasksAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasksAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "478", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-df92f90391e95b4788aed3b005a83a1f-9dbde162cae83c49-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-fc89b09ef447a94eb076eaa994fc0f04-b553dda66426334f-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "84b09b92aaeab256574bef378bac8fd4", "x-ms-return-client-request-id": "true" }, @@ -55,49 +61,55 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "329d1bff-7f32-4d27-8884-5ce135886cd9", - "Date": "Thu, 12 Nov 2020 19:29:26 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", + "apim-request-id": "717ec56b-8425-4d91-81b8-f31605a48233", + "Date": "Fri, 13 Nov 2020 22:22:51 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "156" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "28fe54c562f9429f154e7e8cbd24fdd6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "122041da-319a-4d4d-8bd6-e0e6a2316c3d", + "apim-request-id": "7af3dd77-d35f-490b-b380-59751bc4ac01", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:26 GMT", + "Date": "Fri, 13 Nov 2020 22:22:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 0, "failed": 0, @@ -107,38 +119,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "d5a26188dff6bc6bb1f8fa159c08c192", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "46bc1419-6cc8-4994-a5cf-c74bc2b80323", + "apim-request-id": "e0bd72c9-6f29-4686-a1d5-1ae4b644b443", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:27 GMT", + "Date": "Fri, 13 Nov 2020 22:22:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "126" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "85" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", - "status": "running", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", + "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 0, "failed": 0, @@ -148,38 +166,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "d5de44db1316307dfb6e6e9b2cc9f433", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3096d957-1de0-42d8-b566-0b365543e6d9", + "apim-request-id": "da898494-3bed-4905-8fd9-a618e070963e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:29 GMT", + "Date": "Fri, 13 Nov 2020 22:22:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "108" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "80" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 0, "failed": 0, @@ -189,110 +213,91 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "2aae184eb909e6dee94276006789a50d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9f12591a-6969-4ff5-b7f8-537c4a13f2a6", + "apim-request-id": "2f42a85c-2f8e-4d75-8652-335c394ca705", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:31 GMT", + "Date": "Fri, 13 Nov 2020 22:22:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "133" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "116" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, - "completed": 1, + "completed": 0, "failed": 0, - "inProgress": 2, - "total": 3, - "keyPhraseExtractionTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" - ], - "warnings": [] - }, - { - "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-07-01" - } - } - ] + "inProgress": 3, + "total": 3 } } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "79b1eb8c274575c0e472da8870cf8fe8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5ce7d7ae-bf5b-4321-9439-cd667e759a02", + "apim-request-id": "99765a66-cb0c-491b-a854-47b06740037b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:32 GMT", + "Date": "Fri, 13 Nov 2020 22:22:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "138" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "160" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -301,7 +306,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -333,38 +338,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "83c6c7049759218966f8ecd39c7cc871", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c91145f9-c32f-4c85-8f34-61eeb965bab9", + "apim-request-id": "de2b5161-65e9-43b6-9f45-ec4a26e80983", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:33 GMT", + "Date": "Fri, 13 Nov 2020 22:22:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "161" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "156" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -373,7 +384,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -405,38 +416,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "400e61c97b1727ed58394696df567619", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "47361c88-63dc-45bb-b7ec-b6f154a647a2", + "apim-request-id": "065b86c2-dfed-42e8-ac03-8a2cd9daadcf", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:34 GMT", + "Date": "Fri, 13 Nov 2020 22:22:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "304" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "130" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -445,7 +462,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -477,38 +494,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9ffc8eb221c3f5b3628f124d3aecd867", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "81914218-f5fe-424d-8fa2-b748ebf2be92", + "apim-request-id": "e6bcb805-e80f-455f-b208-1276ec1bfeb3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:36 GMT", + "Date": "Fri, 13 Nov 2020 22:23:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "223" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "147" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -517,7 +540,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -549,38 +572,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "0fbf68a94fc088d0da9f2b2051f24210", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "37fdb0a8-1bf0-4a6c-8aeb-9a0a56b6af70", + "apim-request-id": "266f310d-72c2-4771-85bc-404722ecdf8a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:37 GMT", + "Date": "Fri, 13 Nov 2020 22:23:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "126" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "163" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -589,7 +618,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -621,38 +650,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "0e20d3822980a7aeae19de88689fec6c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7548122b-5bf5-4b8b-a02c-666dd5fe6dd1", + "apim-request-id": "30227049-ab80-4e17-a221-b2b6f7f08efd", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:39 GMT", + "Date": "Fri, 13 Nov 2020 22:23:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "141" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "154" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -661,7 +696,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -693,38 +728,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "77edde6166976358be73c523f693a470", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5b6ca7d2-0ecc-41ab-b1f9-9a1dec213437", + "apim-request-id": "b7844ea9-db63-46a7-a6e3-2809bc022007", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:40 GMT", + "Date": "Fri, 13 Nov 2020 22:23:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "171" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "222" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -733,7 +774,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -765,38 +806,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "67cb024dcacb80e6b91761a771471f3a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "be8071e3-a9f4-49e6-a216-3284599a597c", + "apim-request-id": "4dd6e8b4-9ed8-447e-88a4-30ebfd77f0c4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:41 GMT", + "Date": "Fri, 13 Nov 2020 22:23:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "133" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "123" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -805,7 +852,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -837,38 +884,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "72bebeb3ca051b787abd4f0c638bb11a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4a31e1e8-9931-45f5-b5db-0797e2b939af", + "apim-request-id": "890d5b7a-dd13-42da-b816-1e17e6a7180a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:42 GMT", + "Date": "Fri, 13 Nov 2020 22:23:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "135" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "126" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -877,7 +930,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -909,38 +962,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "663a6d7584d496a0f86cbd7f05b0f176", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "434f9f97-9215-4c07-be0c-91b049811343", + "apim-request-id": "f5193ea2-023f-4079-956b-edc5c110fe3b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:43 GMT", + "Date": "Fri, 13 Nov 2020 22:23:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "152" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "140" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -949,7 +1008,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -981,38 +1040,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "37708b5432d4826a8ab0ed0e7ad91c2e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "411149be-0669-4578-97bd-95be4ea07203", + "apim-request-id": "2400f333-076a-448f-951d-8ac67267b281", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:45 GMT", + "Date": "Fri, 13 Nov 2020 22:23:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "173" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "135" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -1021,7 +1086,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -1053,38 +1118,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "03324666b90d2e661e2879980cf815c9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0e77e9b4-d0aa-4138-8187-a43bdf12d744", + "apim-request-id": "e796f12d-da2c-4a5a-a34d-318ab158494b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:46 GMT", + "Date": "Fri, 13 Nov 2020 22:23:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "163" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "117" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -1093,7 +1164,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -1125,38 +1196,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "d8b8d8cb791a424603b7db2397911b1e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ce91b924-66c7-48bf-8128-3846412ee301", + "apim-request-id": "50857bb1-040b-4471-aed1-319d7eb8c40b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:48 GMT", + "Date": "Fri, 13 Nov 2020 22:23:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "123" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "119" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -1165,7 +1242,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -1197,38 +1274,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "bf198f4fee7e9a69244218abb8d27691", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0f43f4ad-4cbc-462d-9ca3-387dc1aca6e9", + "apim-request-id": "5c516d2c-4066-48ac-a949-8478f63ce738", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:49 GMT", + "Date": "Fri, 13 Nov 2020 22:23:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "131" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "133" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -1237,7 +1320,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -1269,38 +1352,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "a142239a4421ec13ffef0055dd42968c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "58263b93-b75d-473b-80e3-b9e1a188cd19", + "apim-request-id": "80dd54f7-a495-4e11-b21b-42695e9d74c0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:50 GMT", + "Date": "Fri, 13 Nov 2020 22:23:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "130" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "140" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -1309,7 +1398,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -1341,38 +1430,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "7d485b0c56dfdd4b6f1db3d8609a8a30", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b8ce0265-36de-4f18-8466-ace2ebb85f1e", + "apim-request-id": "2152d607-bf95-4810-9688-77654737a140", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:52 GMT", + "Date": "Fri, 13 Nov 2020 22:23:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "129" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "161" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -1381,7 +1476,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -1413,38 +1508,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "74894a41794e0bfd7b2cbf8eee13bde2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1b0ef34f-8fbd-4e82-bc43-63ed6718ceaf", + "apim-request-id": "0a13a4c1-0185-4c4e-8250-205ad52d2ad3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:53 GMT", + "Date": "Fri, 13 Nov 2020 22:23:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "173" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "163" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -1453,7 +1554,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -1485,38 +1586,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "5d9f8babf88943b1d7653203903a8c64", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b5af3b11-f62b-4d56-b84c-e96bcd5a7386", + "apim-request-id": "743bf462-35cf-43b6-b244-0ced3eb7d1ed", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:55 GMT", + "Date": "Fri, 13 Nov 2020 22:23:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "171" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "163" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -1525,7 +1632,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -1557,38 +1664,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9214cf6522b9923d5e3d01b297bdee5b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fb75467d-132a-4bf3-98ad-85db9b069185", + "apim-request-id": "4d8224a4-ac0a-4445-a185-7bcbc0408c6c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:56 GMT", + "Date": "Fri, 13 Nov 2020 22:23:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "117" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "144" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -1597,7 +1710,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -1629,38 +1742,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "d42dd15f2cfb48a798459ce947f97a40", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "56561702-6271-4c9f-8146-36f0ae84f611", + "apim-request-id": "6449db66-3a12-418a-a234-5173e76c2aea", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:57 GMT", + "Date": "Fri, 13 Nov 2020 22:23:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "130" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "122" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -1669,7 +1788,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -1701,38 +1820,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "1e285aa02aff88284d0cff4cf7feac1a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d4012cd3-e0c6-4160-b96a-ed28b79f4daf", + "apim-request-id": "46fcd1be-fc40-435d-9979-1e9a35697493", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:58 GMT", + "Date": "Fri, 13 Nov 2020 22:23:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "143" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "144" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -1741,7 +1866,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -1773,38 +1898,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "bfa4d676b70d386928cbf97385544b64", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7b42d587-1478-4a87-9e3b-9c4f761b7905", + "apim-request-id": "6ecd1a76-c62c-4ee5-90bb-7201bf4f14ee", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:29:59 GMT", + "Date": "Fri, 13 Nov 2020 22:23:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "140" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "147" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -1813,7 +1944,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -1845,38 +1976,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "3c12c0c2d094355ba8a586ee2d5b5199", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f4a5c9fb-a722-47e9-9231-9f15187cb030", + "apim-request-id": "923510b8-92f2-4ad4-b975-2d051c30dff6", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:01 GMT", + "Date": "Fri, 13 Nov 2020 22:23:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "160" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "156" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -1885,7 +2022,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -1917,38 +2054,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "70728299bb55e933f1f0f63430b502f9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "be68b461-5325-4929-97e1-e6b2a1eca0fd", + "apim-request-id": "4b7c0b47-6a90-4213-bdfe-81a8455f85e0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:02 GMT", + "Date": "Fri, 13 Nov 2020 22:23:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "130" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "121" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -1957,7 +2100,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -1989,38 +2132,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "36899ac16feca6857a6e1668307a0acd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "561eb8b8-ff15-4274-a412-fccf1d05cc10", + "apim-request-id": "2fe05da6-fbf1-436b-84c1-598e7f3dd3be", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:04 GMT", + "Date": "Fri, 13 Nov 2020 22:23:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "141" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "128" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -2029,7 +2178,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -2061,38 +2210,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "03da6079dae2070f8d294ba4d92704f3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "776ce7c7-2688-4f98-b426-77db15d25176", + "apim-request-id": "5dbe07f6-941f-4155-949e-905d774af978", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:05 GMT", + "Date": "Fri, 13 Nov 2020 22:23:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "128" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "145" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -2101,7 +2256,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -2133,38 +2288,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "932d8da21ad129adfccbf6e6a4cbb876", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "16d7cefd-f7d1-4ba9-8831-40e4ab85630f", + "apim-request-id": "e7c1feaa-0423-48b0-882c-ef398234c3ee", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:06 GMT", + "Date": "Fri, 13 Nov 2020 22:23:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "187" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "152" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -2173,7 +2334,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -2205,38 +2366,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "d0ba29e5ffdbe7168a81a9c323e1cd53", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "54228e3b-c35d-438a-a562-a986a72746ea", + "apim-request-id": "034d13f8-afb8-4d80-a9e1-7c5819dddef8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:07 GMT", + "Date": "Fri, 13 Nov 2020 22:23:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "150" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "149" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -2245,7 +2412,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -2277,38 +2444,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "a2c6236a774d5efbb2b00617e32962c2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6da777fc-13c8-4887-bce3-1f7da9eb2a11", + "apim-request-id": "95908b47-db96-435a-88b8-7fa6b507e965", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:09 GMT", + "Date": "Fri, 13 Nov 2020 22:23:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "325" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "157" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -2317,7 +2490,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -2349,38 +2522,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b0bed470336ca2177745095071e9061a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "caa798ef-8e01-4944-ba84-bb8b0ecc2392", + "apim-request-id": "1c4935e5-130b-4ae9-b7fe-2aad4e1a8639", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:11 GMT", + "Date": "Fri, 13 Nov 2020 22:23:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "122" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "136" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -2389,7 +2568,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -2421,38 +2600,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "817ba2fe16046e292d5c1d2bf8fe0360", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f2b47437-a4b2-4e62-96bd-84514ee07f04", + "apim-request-id": "30371437-2c24-48cd-bfd0-0cd127fc3c87", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:12 GMT", + "Date": "Fri, 13 Nov 2020 22:23:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "136" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "127" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -2461,7 +2646,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -2493,38 +2678,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4f53e71e1c2336e70b232b076dabedc9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "03b8183c-f8bc-4eb0-a966-e2a1c34b6182", + "apim-request-id": "aee9e5ba-9e54-4594-9826-72f714b30ba9", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:13 GMT", + "Date": "Fri, 13 Nov 2020 22:23:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "334" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "138" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -2533,7 +2724,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -2565,38 +2756,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4119ebaae1ad59bdaa50821016eca978", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2a77ae3c-661d-4770-99fb-6a59fe1fe63b", + "apim-request-id": "46825d65-89aa-4614-beb3-047f6b26c78e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:15 GMT", + "Date": "Fri, 13 Nov 2020 22:23:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "175" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "125" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -2605,7 +2802,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -2637,38 +2834,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "8a31a842b696e1f7bb4575e1eb220082", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4c344131-0dba-4953-9c6b-7fb4913552ba", + "apim-request-id": "28ee54ca-939a-4e05-8824-506816205de6", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:16 GMT", + "Date": "Fri, 13 Nov 2020 22:23:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "169" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "153" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -2677,7 +2880,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -2709,38 +2912,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "0c81546ec2e53db229f9a4d29ad61f1f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8ca893df-cf7a-40b6-ae17-ab29fe6ab772", + "apim-request-id": "1f81c6ad-9960-4323-a40b-843dc6e0e988", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:17 GMT", + "Date": "Fri, 13 Nov 2020 22:23:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "151" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "128" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -2749,7 +2958,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -2781,38 +2990,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c4c4b2796279f332f43885686cdb6e88", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "93a47f92-3259-4a4e-b531-b1b014c6c421", + "apim-request-id": "e07b707f-4167-4e95-ad88-f3b4fb003a3b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:18 GMT", + "Date": "Fri, 13 Nov 2020 22:23:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "135" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "164" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -2821,7 +3036,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -2853,38 +3068,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c2a1004f9c6a8093f6f4609d122446e5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e925df2b-2f7b-4606-840f-beb235d7944e", + "apim-request-id": "2e0152d7-49ce-49ea-af89-a5a9e141b3ed", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:19 GMT", + "Date": "Fri, 13 Nov 2020 22:23:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "137" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "124" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -2893,7 +3114,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -2925,38 +3146,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "386755253c5e0c08218d18ad3c4ad04d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1d7dcc29-f14f-4b1c-a59a-0dbf73e30a84", + "apim-request-id": "16052050-6da8-4127-b132-95e656560af0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:22 GMT", + "Date": "Fri, 13 Nov 2020 22:23:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "152" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "151" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -2965,7 +3192,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -2997,38 +3224,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9a831c8a5d35dcb41f44ce850195e1cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "69ee725c-b093-46f8-905c-65904e682c13", + "apim-request-id": "705f6b1e-5d77-4d85-a43b-6861e6cbbe8b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:23 GMT", + "Date": "Fri, 13 Nov 2020 22:23:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "184" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "142" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -3037,7 +3270,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -3069,38 +3302,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "1642a0f13674122af795a0dc84e643ab", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9680a1ba-d205-4884-9d5a-f884e6267d13", + "apim-request-id": "5644cf96-26fa-4233-8a9c-f521104924bf", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:24 GMT", + "Date": "Fri, 13 Nov 2020 22:23:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "117" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "166" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -3109,7 +3348,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -3141,38 +3380,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f5121223aca1c7b0a08b19196e820a8b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "05edba92-f84a-4178-a7e1-c204cceba9b0", + "apim-request-id": "54597260-f182-4755-a347-b8b5b51fcd7e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:25 GMT", + "Date": "Fri, 13 Nov 2020 22:23:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "159" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "166" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -3181,7 +3426,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -3213,38 +3458,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9cbb49acba0854d9f270a29fbdd75839", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1210ae97-fccd-4b8a-b5df-f7d8da39ecad", + "apim-request-id": "53ad6d03-73d2-49df-a1ef-8e05328d7084", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:26 GMT", + "Date": "Fri, 13 Nov 2020 22:23:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "191" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "132" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -3253,7 +3504,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -3285,38 +3536,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ef622300eb83442df07a75e81c10a474", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "08276532-9b1d-49a6-b836-1c1c2abc6328", + "apim-request-id": "25da48c5-1257-42b4-8288-619e088c64c6", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:28 GMT", + "Date": "Fri, 13 Nov 2020 22:23:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "163" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "136" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -3325,7 +3582,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -3357,38 +3614,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "3a30148ba62a69a239bd03310a100ac9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1c118eda-0abd-45a2-bdb6-fed4e799f029", + "apim-request-id": "4209dcc4-21f9-4943-98fa-34394f4b2251", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:30 GMT", + "Date": "Fri, 13 Nov 2020 22:23:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "167" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "132" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -3397,7 +3660,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -3429,38 +3692,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4b19e0321b20c0081b77ac8d44f038e2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a271dd9d-817b-452e-a246-3811b805449e", + "apim-request-id": "c735a17f-4386-4797-9134-efbeed4c1f4c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:31 GMT", + "Date": "Fri, 13 Nov 2020 22:23:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "136" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "148" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -3469,7 +3738,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -3501,38 +3770,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "a8142ecc1da7590f80f8b5c5e8fc3adf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ac40810e-c34c-40de-a13f-f7f6c14fa4dc", + "apim-request-id": "f3833091-1187-4aa4-9542-f782b12e9f72", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:32 GMT", + "Date": "Fri, 13 Nov 2020 22:23:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "158" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "173" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -3541,7 +3816,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -3573,38 +3848,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "3cb6ac7059f770540b6f1eb2fa152548", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "66d6a629-9ffb-4449-9bb7-3f9ae2cd1b03", + "apim-request-id": "b95550aa-4e81-4991-ae8c-2dc98027b6e6", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:33 GMT", + "Date": "Fri, 13 Nov 2020 22:23:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "146" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "149" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -3613,7 +3894,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -3645,38 +3926,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "db64218561fc1421d1bfca276543d81f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9c7b3256-2330-47aa-a871-aa97b192ea8b", + "apim-request-id": "15880705-a5d8-4fc8-ba01-9575b3eeed30", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:35 GMT", + "Date": "Fri, 13 Nov 2020 22:23:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "148" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "156" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 1, "failed": 0, @@ -3685,7 +3972,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -3717,38 +4004,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "971dcc3dfb3a72ebd9a39c37ff5c5f6b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b7002f56-77f2-43c8-959b-7ddd768c7209", + "apim-request-id": "4b9e8574-9fd9-4a93-8f2f-b5264c77151d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:36 GMT", + "Date": "Fri, 13 Nov 2020 22:24:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "212" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "171" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -3757,7 +4050,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -3826,7 +4119,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -3858,38 +4151,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c73f6dd35e970fe38ba16a378e2c0bc8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "952a995b-22c3-4cd6-84d7-e20ddb18b26e", + "apim-request-id": "899af6db-889b-45b1-bea3-050ff34ae897", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:37 GMT", + "Date": "Fri, 13 Nov 2020 22:24:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "192" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "185" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -3898,7 +4197,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -3967,7 +4266,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -3999,38 +4298,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "2d75ff978df78a0e36f20158c4e91574", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f26912be-123f-4a9f-83e8-aed08b4a6a49", + "apim-request-id": "9bab0c91-088c-463a-9d59-4ebf5004ced1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:39 GMT", + "Date": "Fri, 13 Nov 2020 22:24:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "152" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "177" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -4039,7 +4344,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -4108,7 +4413,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -4140,38 +4445,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f8535f601104de87e90e0c9890b3e4ad", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7c481c2e-df2b-4ffc-ae92-afd4896c5ff7", + "apim-request-id": "1e09203e-f2f2-49df-aa5d-40dda3b29774", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:40 GMT", + "Date": "Fri, 13 Nov 2020 22:24:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "200" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "212" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -4180,7 +4491,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -4249,7 +4560,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -4281,38 +4592,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ffa0d49831e646735fb591a55c8a4aa1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3880ef99-3590-4b3a-a16c-5b24fb6f12be", + "apim-request-id": "cb8f151d-4feb-408c-a12a-e62265dd7e2e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:42 GMT", + "Date": "Fri, 13 Nov 2020 22:24:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "189" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "201" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -4321,7 +4638,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -4390,7 +4707,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -4422,38 +4739,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "2fd7f68c13d986c4779743e98175f982", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "af29e6bb-b8dd-44b6-9744-23df5c247551", + "apim-request-id": "dc5fde9d-09c1-465f-9279-56e42413256e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:43 GMT", + "Date": "Fri, 13 Nov 2020 22:24:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "308" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "169" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -4462,7 +4785,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -4531,7 +4854,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -4563,38 +4886,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "efc0540e15492e8eec0d984f7fe2815f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bf3291fc-4cff-456d-a762-dbd5117d724e", + "apim-request-id": "984b8f91-06e5-45f2-a990-6b747126e17e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:44 GMT", + "Date": "Fri, 13 Nov 2020 22:24:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "172" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "178" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -4603,7 +4932,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -4672,7 +5001,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -4704,38 +5033,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9a0c6ac3b4dc85d4101a884fed89c4e9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0e2ad7fc-c84b-47f5-bcdb-69b8adb7ff57", + "apim-request-id": "a5f8671d-9419-442d-b461-2cdd7dcfeedb", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:46 GMT", + "Date": "Fri, 13 Nov 2020 22:24:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "176" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "167" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -4744,7 +5079,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -4813,7 +5148,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -4845,38 +5180,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "08960ebb5bc9765867a843cb7a750695", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d652e5d9-2a5e-4517-9d40-d609aea045c6", + "apim-request-id": "9a708001-7274-4c67-9116-3a6ff63c8b8f", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:47 GMT", + "Date": "Fri, 13 Nov 2020 22:24:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "237" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "224" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -4885,7 +5226,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -4954,7 +5295,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -4986,38 +5327,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "1626e4155e6959a6803bdf2e8d3e4162", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d63814f9-3687-4262-8cd3-fe4664af3bff", + "apim-request-id": "394be47e-5dd2-459e-b02b-7fdde1127308", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:49 GMT", + "Date": "Fri, 13 Nov 2020 22:24:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "221" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "253" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -5026,7 +5373,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -5095,7 +5442,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -5127,38 +5474,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "7193af48794b67961295323371080b9b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "50dc84d8-a421-4ccb-b6c7-0cd3f806bc71", + "apim-request-id": "edd19e27-a92d-4a8c-b24c-ddb9051299a9", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:50 GMT", + "Date": "Fri, 13 Nov 2020 22:24:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "182" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "190" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -5167,7 +5520,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -5236,7 +5589,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -5268,38 +5621,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "0939f213ad635c80683d878e7b29e928", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a77094e3-85ac-4cba-a61d-ffe3e279a650", + "apim-request-id": "36b570e2-0f05-4c54-ba6c-4edc567bc104", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:51 GMT", + "Date": "Fri, 13 Nov 2020 22:24:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "157" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "200" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -5308,7 +5667,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -5377,7 +5736,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -5409,38 +5768,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ca82e06795e19b4a4ebe04d32b72e777", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a3e7125f-ab70-465c-a523-54ef5c96609f", + "apim-request-id": "642a804e-fed5-4a2a-8d8a-093dcdb16366", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:53 GMT", + "Date": "Fri, 13 Nov 2020 22:24:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "179" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "168" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -5449,7 +5814,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -5518,7 +5883,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -5550,38 +5915,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9a1a443037049bff2e36080df107ece8", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d833bf50-5f78-4ac7-b4ce-565df7449944", + "apim-request-id": "a539ccbd-f74b-4fdc-8b82-fda3362746d6", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:54 GMT", + "Date": "Fri, 13 Nov 2020 22:24:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "183" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "184" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -5590,7 +5961,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -5659,7 +6030,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -5691,38 +6062,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "91cc09ab40867eb9a89ebba4a8ac30f5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "444b2a8e-daf6-4b11-b618-b17cc6e23c37", + "apim-request-id": "5584b4b2-b826-4dac-a96d-f9184054bd24", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:55 GMT", + "Date": "Fri, 13 Nov 2020 22:24:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "227" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "205" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -5731,7 +6108,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -5800,7 +6177,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -5832,38 +6209,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "375e10564e0f2f24e1e79caa8c3ca946", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "46897929-d37e-418d-8e1f-8c68606cd4de", + "apim-request-id": "235f9a5f-76b9-4400-a6b5-d0491f587649", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:56 GMT", + "Date": "Fri, 13 Nov 2020 22:24:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "152" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "235" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -5872,7 +6255,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -5941,7 +6324,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -5973,38 +6356,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "21281cd256a6eff18a9cf2667c5af282", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "475a0d87-83a2-4c74-80c0-254236cc64cc", + "apim-request-id": "3f9e35e3-09d5-45cc-86bc-cafe08a38c7f", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:30:58 GMT", + "Date": "Fri, 13 Nov 2020 22:24:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "187" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "209" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -6013,7 +6402,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -6082,7 +6471,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -6114,38 +6503,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e1b71306b4a95cd9e59caf9ea30ff26c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7df29ed2-c14b-4b7b-9fbf-c497e00a29eb", + "apim-request-id": "1f141bb7-073b-4862-9c62-6be1c41c5aaf", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:00 GMT", + "Date": "Fri, 13 Nov 2020 22:24:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "178" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "158" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -6154,7 +6549,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -6223,7 +6618,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -6255,38 +6650,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "8bd274f40e84ff4f1e6ead735cbdb387", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d894f088-43c7-43ff-9330-822b6f10d3c2", + "apim-request-id": "678d6d27-59fc-4f5b-9186-3091cbb77d49", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:01 GMT", + "Date": "Fri, 13 Nov 2020 22:24:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "194" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "160" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -6295,7 +6696,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -6364,7 +6765,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -6396,38 +6797,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "79a419f4c8841d9c43cb3c0aa7524c7a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2a498815-d776-4bb8-a348-b15d6f61ddda", + "apim-request-id": "0adb2a48-42b7-473d-9823-034a6443fdc5", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:02 GMT", + "Date": "Fri, 13 Nov 2020 22:24:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "238" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "170" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -6436,7 +6843,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -6505,7 +6912,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -6537,38 +6944,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "077285a96688f7fec4b7c23b07660028", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "39d482e9-eb7f-42bc-a7d7-e99d54274549", + "apim-request-id": "4fda38d9-78ec-4887-8bca-049f4e09f4c1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:03 GMT", + "Date": "Fri, 13 Nov 2020 22:24:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "216" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "220" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -6577,7 +6990,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -6646,7 +7059,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -6678,38 +7091,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "8aaa27e8796b2ce7d8b448b8d24458cc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b1d1c0bf-906f-44c3-8387-95fafda6db6b", + "apim-request-id": "31cf4284-ed5f-42b3-bc77-33938ad349fe", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:05 GMT", + "Date": "Fri, 13 Nov 2020 22:24:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "162" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "190" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -6718,7 +7137,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -6787,7 +7206,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -6819,38 +7238,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "d6c93222ab4b8dfe1badb4cc056116dd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "313bf58c-5cb1-4ba8-aad7-bc6d391dd2f4", + "apim-request-id": "9ccdd859-8d1a-4258-a268-e0e46171f18b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:06 GMT", + "Date": "Fri, 13 Nov 2020 22:24:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "175" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "219" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -6859,7 +7284,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -6928,7 +7353,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -6960,38 +7385,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "7f2113cbc1a7300f9e462fd41e45247f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b3140bb8-3475-4ee1-ad3a-8f667694d2d2", + "apim-request-id": "61e34f49-537d-423f-9a8a-2f9ebc0f7a57", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:08 GMT", + "Date": "Fri, 13 Nov 2020 22:24:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "210" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "196" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -7000,7 +7431,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -7069,7 +7500,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -7101,38 +7532,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "d419f65f299c3ddd281c6ebec41a2777", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c32f5904-97dd-4e2c-a60d-33e0d701cc3c", + "apim-request-id": "50f89760-cba2-4148-a876-e1530430de67", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:09 GMT", + "Date": "Fri, 13 Nov 2020 22:24:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "192" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "164" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -7141,7 +7578,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -7210,7 +7647,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -7242,38 +7679,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "bfed6a9dd8236024239838057c2a6fd6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0338c38c-1db6-47a5-a403-a590ee83206f", + "apim-request-id": "2d476be5-ce90-41e5-92d7-8f1c4f9808b8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:11 GMT", + "Date": "Fri, 13 Nov 2020 22:24:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "154" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "190" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -7282,7 +7725,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -7351,7 +7794,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -7383,38 +7826,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "0e6d35884247a14036e4568b53516c83", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "62d0617a-1499-4330-81a8-4e570b2f41f1", + "apim-request-id": "602305b2-6d57-43ae-b5f7-2a19353051a8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:12 GMT", + "Date": "Fri, 13 Nov 2020 22:24:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "177" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "202" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -7423,7 +7872,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -7492,7 +7941,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -7524,38 +7973,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b337b81f6557865cd2b9b104f0d8c1fe", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4749615f-a2dd-47af-8278-8131b3ceab35", + "apim-request-id": "44429d8a-e29f-44b5-bc5d-68f3335d13c3", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:13 GMT", + "Date": "Fri, 13 Nov 2020 22:24:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "237" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "196" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -7564,7 +8019,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -7633,7 +8088,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -7665,38 +8120,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "8e3597ad18ad5a2f294c893e82980cd1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2823562d-b78d-4953-8e7e-9074332a2f51", + "apim-request-id": "ddb3bbe7-09cd-4d81-8771-043f84aeea44", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:14 GMT", + "Date": "Fri, 13 Nov 2020 22:24:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "241" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "236" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -7705,7 +8166,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -7774,7 +8235,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -7806,38 +8267,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c4e6b42cbbf3237fd9e63c8e903cb05d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4a912487-419c-4758-b92d-6ff738a29f2d", + "apim-request-id": "cef740ab-3bc4-4bec-b550-0e2a8dc0d163", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:15 GMT", + "Date": "Fri, 13 Nov 2020 22:24:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "217" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "180" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -7846,7 +8313,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -7915,7 +8382,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -7947,38 +8414,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "bbde5823dd1b06d688dc8a0adc1d0439", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4c697518-1cd5-4341-a4a0-f62c40b84f3b", + "apim-request-id": "445b23bf-ecd7-4ce4-9cc7-55cb09e1670a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:17 GMT", + "Date": "Fri, 13 Nov 2020 22:24:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "202" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "192" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -7987,7 +8460,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -8056,7 +8529,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -8088,38 +8561,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "3bd8dfacfcf2f10b1812b5c6dba1caed", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1914ebf1-fa7f-48c2-b8ea-2b118bdaaedb", + "apim-request-id": "72dec6da-dcec-4cfe-80bc-c95c6fa9c335", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:19 GMT", + "Date": "Fri, 13 Nov 2020 22:24:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "189" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "215" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -8128,7 +8607,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -8197,7 +8676,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -8229,38 +8708,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "291b2b9b50ba4eb5dedf3b17317446bb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "67b81632-02b9-43d1-826e-6102f9b97a44", + "apim-request-id": "2cc2dbf2-03ed-40d6-b8f1-c0d685b44ca0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:20 GMT", + "Date": "Fri, 13 Nov 2020 22:24:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "219" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "170" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -8269,7 +8754,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -8338,7 +8823,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -8370,38 +8855,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b1e103e17564266b4deca309270f2ae7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c994ff49-aa02-42c7-88ab-740c96cd8e7b", + "apim-request-id": "2356aa1d-740c-4d9d-a570-acba26f66cf0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:21 GMT", + "Date": "Fri, 13 Nov 2020 22:24:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "195" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "193" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -8410,7 +8901,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -8479,7 +8970,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -8511,38 +9002,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b16f9d12da015b7e29895d12c1f3c0a4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a5e37e05-d76b-436e-8eb5-6457613b65a3", + "apim-request-id": "94861dc7-ea36-4827-b190-98de2b0c492e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:23 GMT", + "Date": "Fri, 13 Nov 2020 22:24:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "347" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "216" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -8551,7 +9048,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -8620,7 +9117,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -8652,38 +9149,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "d8e5facb19bf2688bff5dccdadac26cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c1f0bbea-a6b6-45e4-aa1c-adacbcf4bb33", + "apim-request-id": "2d525e10-6844-4a60-b359-ab539d291988", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:24 GMT", + "Date": "Fri, 13 Nov 2020 22:24:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "208" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "181" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -8692,7 +9195,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -8761,7 +9264,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -8793,38 +9296,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "940554b4950407ba848587da18586459", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cf93026a-a702-487c-b20c-a52a642c0946", + "apim-request-id": "3a652f3c-fc3a-4081-bfdf-82a682f84540", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:26 GMT", + "Date": "Fri, 13 Nov 2020 22:24:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "183" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "199" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -8833,7 +9342,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -8902,7 +9411,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -8934,38 +9443,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "2d3dff2c522af8271449f10bfeb0ad7d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "05ee484a-b21b-4ea3-a8be-684e55a16094", + "apim-request-id": "3e36221d-b9a8-4d6a-acd6-4a9b302cfbe6", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:27 GMT", + "Date": "Fri, 13 Nov 2020 22:24:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "203" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "189" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -8974,7 +9489,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -9043,7 +9558,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -9075,38 +9590,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "6c5e8d622cee359f40dd533991ad0e66", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "888b020b-8fec-46b8-8603-c0ccfc02415f", + "apim-request-id": "3b294bfa-69cd-4bc1-83d2-b3f503429ef6", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:28 GMT", + "Date": "Fri, 13 Nov 2020 22:24:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "215" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "220" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -9115,7 +9636,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -9184,7 +9705,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -9216,38 +9737,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "aea18390f96e61a52c0c7fbba3ae08d4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1afb4b51-c563-45e3-b94d-f66deb899b75", + "apim-request-id": "09622ab8-9ea2-4034-90d2-b8a9925004f1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:30 GMT", + "Date": "Fri, 13 Nov 2020 22:24:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "317" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "195" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -9256,7 +9783,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -9325,7 +9852,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -9357,38 +9884,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "8a7809d7f8fa006a5f07ed4cffed6766", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cfded988-d8ff-4558-b2f9-2b60b3dd825c", + "apim-request-id": "a369b878-6037-4d63-80cc-54ee2cfbe6b1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:32 GMT", + "Date": "Fri, 13 Nov 2020 22:24:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "259" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "214" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -9397,7 +9930,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -9466,7 +9999,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -9498,38 +10031,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "7b7b8b3bff0f690ee8fc3fe2ace49192", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c7961a3e-7227-47ad-8c20-3dce097c74a4", + "apim-request-id": "69ec5a31-705f-402f-bbc2-d39dcc8715a5", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:33 GMT", + "Date": "Fri, 13 Nov 2020 22:24:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "214" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "228" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -9538,7 +10077,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -9607,7 +10146,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -9639,38 +10178,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "88617fd58335986b18a14f670c58623f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3494b5d7-fc18-456f-a1f2-4b31031d5210", + "apim-request-id": "821c8531-aa5f-4c34-bd6c-2da134d51e07", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:34 GMT", + "Date": "Fri, 13 Nov 2020 22:24:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "193" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "164" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 2, "failed": 0, @@ -9679,7 +10224,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -9748,7 +10293,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -9780,320 +10325,44 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "188018a58d32d8c5fb0ea1fdb887537b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f033ff95-9a9d-4ae0-84a9-6678952411b7", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:35 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "221" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" - }, - "completed": 2, - "failed": 0, - "inProgress": 1, - "total": 3, - "entityRecognitionTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "Mi", - "category": "DateTime", - "subcategory": "Date", - "offset": 0, - "length": 2, - "confidenceScore": 0.8 - }, - { - "text": "mi", - "category": "DateTime", - "subcategory": "Date", - "offset": 11, - "length": 2, - "confidenceScore": 0.8 - }, - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.52 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ], - "keyPhraseExtractionTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" - ], - "warnings": [] - }, - { - "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-07-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "80775b75de8cb7301fe2626db0a75d8f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "656b544b-fe79-4ef7-8a04-a20b50cdbd12", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:37 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "192" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" - }, - "completed": 2, - "failed": 0, - "inProgress": 1, - "total": 3, - "entityRecognitionTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "id": "1", - "entities": [ - { - "text": "Microsoft", - "category": "Organization", - "offset": 0, - "length": 9, - "confidenceScore": 0.83 - }, - { - "text": "Bill Gates", - "category": "Person", - "offset": 25, - "length": 10, - "confidenceScore": 0.85 - }, - { - "text": "Paul Allen", - "category": "Person", - "offset": 40, - "length": 10, - "confidenceScore": 0.9 - } - ], - "warnings": [] - }, - { - "id": "2", - "entities": [ - { - "text": "Mi", - "category": "DateTime", - "subcategory": "Date", - "offset": 0, - "length": 2, - "confidenceScore": 0.8 - }, - { - "text": "mi", - "category": "DateTime", - "subcategory": "Date", - "offset": 11, - "length": 2, - "confidenceScore": 0.8 - }, - { - "text": "veterinario", - "category": "PersonType", - "offset": 36, - "length": 11, - "confidenceScore": 0.52 - } - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-04-01" - } - } - ], - "keyPhraseExtractionTasks": [ - { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", - "results": { - "inTerminalState": true, - "documents": [ - { - "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" - ], - "warnings": [] - }, - { - "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" - ], - "warnings": [] - } - ], - "errors": [], - "modelVersion": "2020-07-01" - } - } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "933d009a7963475fb9888c26e26ee091", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b87267a1-3fb0-4877-9965-3954b5a7a703", + "apim-request-id": "5e51cccd-4381-4e2e-a78c-f9c6ee1805a8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:38 GMT", + "Date": "Fri, 13 Nov 2020 22:25:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "287" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "417" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5a127e23-d6ed-4520-a66e-7d77c714f42d_637407360000000000", - "lastUpdateDateTime": "2020-11-12T19:29:27Z", - "createdDateTime": "2020-11-12T19:29:27Z", - "expirationDateTime": "2020-11-13T19:29:27Z", + "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "lastUpdateDateTime": "2020-11-13T22:22:52Z", + "createdDateTime": "2020-11-13T22:22:52Z", + "expirationDateTime": "2020-11-14T22:22:52Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27Z" + "lastUpdateDateTime": "2020-11-13T22:22:52Z" }, "completed": 3, "failed": 0, @@ -10102,7 +10371,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -10171,7 +10440,7 @@ "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ @@ -10220,7 +10489,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-12T19:29:27.7638942Z", + "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json index 1fc4f6617a121..8f97806a03eeb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e58037c6def3e04a967b929501ca6b52-44e40370a7b7c245-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-88d10b4fd2612d4ca4bf3ab42da00cc0-53d94ab6f21e414b-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "7fbb9dea32b8080ffdad856789b2330d", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1663c494-5716-4771-927d-89a90eec8b0f", + "apim-request-id": "ac5141b2-c6f9-41bb-a0be-d0b2da457c89", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:31:48 GMT", + "Date": "Fri, 13 Nov 2020 22:25:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "136" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "169" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json index 37ab4582e86bb..27beb671b3653 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-942cc424734c7f4094ab0126088c8b13-9823cf22a7076244-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-51727cfead8f2049bbb3b80df5bcc84d-89dc57cd487e7d44-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9ce6282fe98018f1ea732ad3ecd9e59c", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7fb65b8e-4f47-475d-bfc5-b7f795f9a69c", + "apim-request-id": "8c4f2821-4b72-4fdb-9b65-855d05a5b982", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:31:58 GMT", + "Date": "Fri, 13 Nov 2020 22:25:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "97" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "104" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json index df24bdf3c15ca..ae7edad3a69af 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-037c75320547cc4991f450e7c6b1d6eb-ca2af91143be3e43-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-ad333a302a3d2148bc70ffe1dab2e408-fa6928e96aa89847-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "119c99db1e02c34777426e77d5c75cb6", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b1681a52-c5f5-4886-8478-ff96e157527f", + "apim-request-id": "6903f6a3-466b-41cb-bc35-29104a3b90d7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:31:49 GMT", + "Date": "Fri, 13 Nov 2020 22:25:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "121" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "125" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json index 253b1601ac632..89a1f4fab9363 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ec00780ae21f19459a2e5d36c4beb54c-5c529e050c4cfd45-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-15f2c7fb979a514cbee8896a9eac1c19-a219c13955520e49-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9d1067da67ede0f99771b2c8070f5079", "x-ms-return-client-request-id": "true" }, @@ -29,13 +35,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "23ba6ef8-6700-4d59-a336-bbdcedc7592a", + "apim-request-id": "13e23673-fc77-4c03-86c8-383eccd9f41f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:31:59 GMT", + "Date": "Fri, 13 Nov 2020 22:25:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "112" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json index 7772d9f2b8d4b..c7d609a226e1f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e54b3a4c7ad3f443aa6584a9d962bdc3-bedcfc2bbb4ed84f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-fd3adada90629b4caecde08c0721d797-f8380f264430c740-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "86b79e2f0559eb97f25b1c5b233a68dd", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "78474e0e-570e-4280-bbe4-c3c038ebaa34", + "apim-request-id": "800ca250-f8cb-4bb2-a0e4-46ff9f1f9c08", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:31:49 GMT", + "Date": "Fri, 13 Nov 2020 22:25:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "121" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "124" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json index 4ce6cd3d210f8..94f43c8bf7f1c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-df4e8791c9d9d641810019ac0062ed63-d56ee238426f684c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-d6691e8f49c93546a7df3f1667f7acc8-0253827abd4d484c-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "300adb4a8ab9aa03c50b104c35b7e035", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dc2dff0b-0996-456b-88d3-9b0fa1e56734", + "apim-request-id": "ac0f4b3f-fdc7-4559-8d45-e068434d4da2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:31:59 GMT", + "Date": "Fri, 13 Nov 2020 22:25:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "105" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "108" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json index bf9051ea0eb1a..7028ff40f84a9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-40f96a3fa92d2c4483f479aca3d29333-eb643853dd5faf4b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-3c2aac8bf9007c449df4b6a49f9aa4b3-6edae053144f4447-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "abe848a0b41107615847f9d88e292402", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7999e68c-d329-4d13-9481-286b0ff5b489", + "apim-request-id": "7f508a18-7290-4e18-8166-00a7dacb4950", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:31:50 GMT", + "Date": "Fri, 13 Nov 2020 22:25:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "103" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "111" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json index 7995c0dcef85c..7c4d0ff55770c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-238a0cae274753498197bf579b832625-0e7227fc36b11944-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-d013e7208797a74a98439ab06a61c232-18069da1f660214a-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e76a4622dec6c96d7ae12bfd307d2c70", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8428edb1-e864-4cc9-bf37-d3b1682961ad", + "apim-request-id": "27515298-325d-48f6-9b44-b1021cbe8eeb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:00 GMT", + "Date": "Fri, 13 Nov 2020 22:25:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "103" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "121" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json index de8fd1be57662..bc6695ca2ac4a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-02fc6a71f32908469422e3d04668c5f1-384a3f5150e9744f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-c470382c3c9c8049a82e72ce2d288beb-32bbc59af414de42-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ddaaf35e96b9dae8e520d1e25db41ef1", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f8c357a0-be1a-45fc-a115-02622ae4c745", + "apim-request-id": "291b3709-7d90-4f29-98af-3a8ca92af1e8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:31:50 GMT", + "Date": "Fri, 13 Nov 2020 22:25:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "111" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "109" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json index 0a0a8a2ea6e0e..8022864296b7f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5756188b35a1ee4db6a6285f160a7c18-3456bea80c052b4d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-bfae26ea494c504ba089528621c803cd-31d95d9adf3fd44b-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "a461009a7ec465a3d8be1a54c58e3575", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1e35fec1-426b-4cf6-b285-121e1e4b7a51", + "apim-request-id": "67372d43-bb5a-4cc3-8f16-d7434ff328ba", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:00 GMT", + "Date": "Fri, 13 Nov 2020 22:25:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "115" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "103" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json index 7fe0ab70f1c35..043d49f72482b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-220df8554ef25c4c8906bc2037725c60-e3918b61d1e5db4d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-0f23fcd9631d7147ade8e2d3f4597b06-e9d1c8557760284a-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f4f79420d55186c560e783cd65904498", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "242a7bbe-3455-4f43-90c0-66da4a77d772", + "apim-request-id": "91658e70-bf6d-41e4-afa1-9028b077c5e8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:31:50 GMT", + "Date": "Fri, 13 Nov 2020 22:25:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "105" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "107" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json index 9fc3350301670..7844ff67328d2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2a1fc5ecae19a349bcce7e88f0d3e8ba-9cbd9d1cec39464e-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-f8d451ccd1ef1848ade05a11d8293e84-621bee7bec670347-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "a82300e8850457b9e1ddd84e5e66ebf5", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c2f441c8-4508-41c7-ac3c-2c5dfd082bda", + "apim-request-id": "4d15a784-b33f-4d9f-b28e-0c4f294a7363", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:00 GMT", + "Date": "Fri, 13 Nov 2020 22:25:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "96" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "103" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json index 96c05b8c59a12..42e1bd5fb57ed 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1fa627046cc38441b518dc26c8a0c635-bbf85bdbefcab041-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-9e266d45b0fdb7419ba04a6629f6bb0f-6190493a0115574d-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "d0c9faccbe22f6229408f2811c507283", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e6c7a962-5782-49d3-b471-d71281cb727d", + "apim-request-id": "08034275-8df8-4920-bb9d-fae8f45d370e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:31:51 GMT", + "Date": "Fri, 13 Nov 2020 22:25:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "102" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "104" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json index 21bf1c545925e..28fb6eae12826 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4d8e77dc95237b4cb28184fe438bf875-e3c952577d9fa64e-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-0c38abb58454b041a340feaf06a9c5b5-fa47236f2b917f47-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "99f36dc03d5b69cad15ff682fb68e8a9", "x-ms-return-client-request-id": "true" }, @@ -29,13 +35,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1163a8a8-50a0-448c-87f6-cb0ed71927af", + "apim-request-id": "01d237a5-1aa6-4fad-b9f5-ef8d896ed227", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:01 GMT", + "Date": "Fri, 13 Nov 2020 22:25:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "101" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json index 5151ff976ca59..d2d90b4d439e0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2b41b9d685d6e64597c226d089ce87ea-f688fef271acd443-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-32e929cbf030534eaf5d4d3834c23589-dd8c2ec82ae38d4e-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ea37c4c5b43ade506c055e9d1167082c", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0dd0a210-8954-43d7-8cad-acd15a81e75d", + "apim-request-id": "2ea7f9b5-94e0-4ee7-9f05-8ed1822fe38d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:31:51 GMT", + "Date": "Fri, 13 Nov 2020 22:25:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "95" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "102" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json index 31165b742129d..50800ad2ddcba 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2302a667c7b1114da297a0fad4f583fe-17e01feb19ba654a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-51eccb1c61dbe241838a518b70bd0316-50f2be5779974642-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "d297a709781eea07c58dac26eba5fefd", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6ea7273e-8966-4fdc-96e4-cf7ec68932a3", + "apim-request-id": "0642c6f8-519e-495f-b972-6141f203c4ee", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:01 GMT", + "Date": "Fri, 13 Nov 2020 22:25:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "97" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "107" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json index d29dba28036ad..977f54720c84b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-20760378198e624496fe9d2a8bf7af7a-fbd2ae93f3e7914e-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-6e816bd16a57d54bb82944b059cdb072-8ed0fca99e33f645-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b93a282865c5e574aa1703755dff0595", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1df40fc8-27e1-4adc-8be5-21a69814608b", + "apim-request-id": "f6630cb7-223b-4543-b583-fd086bbd399a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:31:52 GMT", + "Date": "Fri, 13 Nov 2020 22:25:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "101" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "105" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json index c427d728707a3..cc2fee53a9a16 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-57b4259703dfcf4ab332fabfaa68fc47-aa80b4743c36564e-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-4f204d47c6653c40b29ecadb28b9bee9-4afa7c13b5b2814c-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "896aa869bee9e15710e9b281353ff7e1", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3081ee8c-2cf0-48a0-baff-84fae4f543c9", + "apim-request-id": "9be79208-eff8-43a1-be0d-5229a12ddcf4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:02 GMT", + "Date": "Fri, 13 Nov 2020 22:25:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "104" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "105" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json index 0557e0c5cce73..353dc1337427e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c5bb4279cd1e6141982cef162d9e3b49-981564bfc6f1854b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-65801a2d9ac3ff4c9300d81f382023d7-85da4ec48a41434a-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f4c1d2e666ddf215fcefdfedc5dd71c8", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5d5cfdcb-4adb-4971-8ecc-40bbc6f3b3b1", + "apim-request-id": "344b09f5-3a3a-40af-a680-ee19bd21744d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:31:52 GMT", + "Date": "Fri, 13 Nov 2020 22:25:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "101" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "115" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json index dc48c80ca1b50..ddd70bce661a3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c101431a1c759b46922fea2f3c7f5800-b031fb373ba0a341-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-817423627fc6064b89037c6eb677730f-88948980064a1848-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "26baa46075d446ba158f6fd6eeae447a", "x-ms-return-client-request-id": "true" }, @@ -29,13 +35,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fa230d8a-5089-4517-9c4a-8a789d381975", + "apim-request-id": "17e39d85-e845-4bd0-87f0-73b08b280ef6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:02 GMT", + "Date": "Fri, 13 Nov 2020 22:25:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "109" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json index c8ecc4d33945a..b334f3b02d9fd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "207", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-00ab297676f31247b9f33d20bd4762b8-08743965e7506340-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-b5ef90e5d4ca8546a5df26fdfc424050-69e06920da99994b-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "381e2b63f2088d45202cae7fd25e5042", "x-ms-return-client-request-id": "true" }, @@ -34,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c1704103-db2a-4851-a4cc-8cb59c7e020d", + "apim-request-id": "1d182d5e-da1c-4d86-9316-d7b5a694809e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:31:53 GMT", + "Date": "Fri, 13 Nov 2020 22:25:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "101" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "110" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json index 09c10c8a75e9d..f72d8e5ba829a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "207", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-013b0a83d3caed429a2a3d369fee335a-eeb89b145eee3d47-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-bb2aaaceaf74fb498cb7fcf34b1d7152-56d08ba8f9c9134d-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "29ac615e7a25f0506bd8c86ac7133e14", "x-ms-return-client-request-id": "true" }, @@ -34,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ef22db0f-d1b0-4d40-9c1e-20a47bbe084e", + "apim-request-id": "62564a8b-98fb-4639-b743-ccfa40797ad6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:03 GMT", + "Date": "Fri, 13 Nov 2020 22:25:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "95" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "100" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json index 57e65116b8c68..84d489c01ae21 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4aa518e7c714b14682f8cbb6ad42e50b-bdb33b07acba364f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-5ba01981f1f82249b03f2d3c4f70ca3c-7af90f905c904c4a-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e97c715478efd2b509099d562415356f", "x-ms-return-client-request-id": "true" }, @@ -24,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "e60eec06-475f-41d0-aa3d-1d2b73b08ef1", + "apim-request-id": "9bd1429a-0a3e-4241-8aa1-9127c8f17946", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:53 GMT", + "Date": "Fri, 13 Nov 2020 22:25:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json index 2252ac4e57ba3..4840180695ea1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3e7815aeadddbd4d8fe8502550cf4cc8-2d5e35f8dd75cf4c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-b63fce4b4deef34182e3d5552dfdde9a-b8145cac7bc87d4e-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "7d28785fafea6a705989dd511c352058", "x-ms-return-client-request-id": "true" }, @@ -24,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "82235218-96f9-4ec2-a658-9398957adffd", + "apim-request-id": "917461da-655c-4a1a-8876-b11a44431463", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:03 GMT", + "Date": "Fri, 13 Nov 2020 22:25:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json index 59bc1014fe287..f0128cb5f0484 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f0a8c461c151964199750bab54388421-d45cc5ee6a947348-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-a489f5169b2a964bb7fc2a171293efbf-6bf811ca32553c4d-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "a82047bc1e56521f19fee095619725e3", "x-ms-return-client-request-id": "true" }, @@ -24,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "db7690d0-a8b0-46f2-a20f-6448a9e831c2", + "apim-request-id": "40eff7ea-b70d-430f-8d60-8c843f4c5249", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:31:53 GMT", + "Date": "Fri, 13 Nov 2020 22:25:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json index b9b10c6c04e82..0d3a368d1ff8b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-79de3fdc50b9e44eb865882612a1141e-41314a150de4c740-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-a09b24c330035d4ca129ad97f9079801-5bcc156092c31a41-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e4b5e1c573e3bc3fc5137a6a90633740", "x-ms-return-client-request-id": "true" }, @@ -24,12 +30,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7d55f50a-8517-4f37-9a60-7915d7dec594", + "apim-request-id": "5ab9554f-40aa-41dc-81ec-0c796d67f211", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:03 GMT", + "Date": "Fri, 13 Nov 2020 22:25:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "2" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json index cf43f7bdd629b..48ad55a72afe9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a2ced50229bb6c469c9ef5f6c3b6d327-39ae356ca537484a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-ad41e1a4be62304fbb3048af7b2cd2a3-42e534cb9d6e3e4d-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4bb052b32c66958101e8bfb2d70a96bf", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f8ca611f-59e0-44d6-aff7-41afb3c096fb", + "apim-request-id": "eafd1acf-5bb1-4946-8f5d-91aa94eb6bfb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:31:54 GMT", + "Date": "Fri, 13 Nov 2020 22:25:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "109" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "102" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json index 55b1b7b4b2aec..dcebdfd79a7b9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6b817e5dc8f93543908ccc79b5a4cc9b-8e44a2810cdf6a45-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-c52f7c4eafd021468ae55ed5aa7e2904-b25d1e61248fad4f-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "10469efe411909195ef72681bf249b22", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "603d82ac-e6cd-4b97-8d93-106688db3311", + "apim-request-id": "4d1ff920-64a8-40dc-8309-e645a18c953f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:04 GMT", + "Date": "Fri, 13 Nov 2020 22:25:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "105" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "101" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json index faead53d65c12..9d3f9342a2d69 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-130a01bb2a5c4b409f4a89eafefb40d7-feb4c7ef829b6141-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-e240c0caf8f8eb4eb137b0c3ebf7d299-b33a888d5d826d43-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "380d3332cec3ce7a5b0d21c20c2f8b8d", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1f6f9940-21d7-4b71-b4a4-dd4408ed5395", + "apim-request-id": "a61e2d3e-5b07-43f6-96f7-f6035f56d3e6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:31:54 GMT", + "Date": "Fri, 13 Nov 2020 22:25:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "105" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "119" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json index 829aebb1027d4..daafcc61f99b1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=true\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-54d3665e70e8984ea8bfd967c147a5da-a8f30f44b01f1243-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-0f8d08ddcc31114397aaa11ed29b6c3a-fd29d2ed5b2d1749-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f794f0733bb3c43d680189f109278930", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c1c97e1b-d90c-47eb-8ed3-ba5ab8d1966b", + "apim-request-id": "8fcd4925-ea9e-47e1-bf3b-121ad0cd8e05", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:04 GMT", + "Date": "Fri, 13 Nov 2020 22:25:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "112" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "116" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json index b77df7faa2992..68b56053f018d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9b901bd6cd12e143bbbee55d78531ed9-4124d74adf60ae4f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-3fe435fec2971a46aefbec248355b25e-43924838d9f4c440-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4e5bdbe5820d38723d195b24082e286d", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3366e928-a124-4a16-a151-73fdc5207d50", + "apim-request-id": "43aba3a3-0bd0-4ac9-a7f3-50fba92df712", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:31:55 GMT", + "Date": "Fri, 13 Nov 2020 22:25:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "128" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "100" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json index 6413f0d11a860..c78d4d2972271 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-740fe5dbc75a6043899772ad056b4176-890d44516018ba49-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-6359ae7afbce1e4388bbb712dc7e94fb-e70ff63da2fc1b4d-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "03ba29d245db7d4660e70538d783a159", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "96b65c61-c5eb-462d-b6b4-ac7cfe76a882", + "apim-request-id": "0583fb19-2e9a-49e8-b8f4-de012dc4fea0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:05 GMT", + "Date": "Fri, 13 Nov 2020 22:25:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "98" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "110" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json index fbe3f7d2f4246..606336c88e336 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c6296c79df42da41be36c3b654bcb6bf-fbee0685f7495d4f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-382fb451266a1841b37618c8d28c64fa-38cdef9d76716d42-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "1cd519dfbccdba31b1f719f550932df6", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cd96428d-5a24-4a41-aff8-731dd987e170", + "apim-request-id": "a33172c9-f30d-47cd-b07c-287a49e5cc68", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:31:55 GMT", + "Date": "Fri, 13 Nov 2020 22:25:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "105" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "101" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json index d6f085902ec30..bffa067022115 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3f0fd925f79bbc488cd7198173a054f9-7b30f4b601c06747-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-81188e54335c874cbcf818016b9bfcf3-b9c14b9b16199843-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e4628ff9d75e35fa30a2a74d75b5d054", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c40f8da5-8ec4-4f1d-a2b6-92c4ab8a7908", + "apim-request-id": "177e9534-2672-422f-8d17-73a946719ec6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:05 GMT", + "Date": "Fri, 13 Nov 2020 22:25:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "94" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "114" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json index 93ea0b08c97b6..8529528126ff6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c3ae0996ecca2b46a33d209ad6960b66-5a20d8394176c949-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-d1e3406c5c322748a4f21d66a80711b2-464d086b89fbe149-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "0226741a4a3852fb661facf15a20cdfc", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0ba03551-d1ee-4db0-b4bd-1554cbaddffb", + "apim-request-id": "195e9004-c903-49a8-95fc-91a38675514a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:31:56 GMT", + "Date": "Fri, 13 Nov 2020 22:25:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "107" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "98" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json index b7c3ee107648a..eed2523a4cedf 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c79a61bca3729d41ba1c5cb6e1aba208-158651bb5ff76843-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-f025b42ce8a66f4ba403b6f8333d119b-6cf227d41d798140-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "1d19c9bc741aeaae2a3044500760d7de", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bf2b6ab6-cd4e-405e-a98c-1aa50b042124", + "apim-request-id": "c7e8391d-e285-46f0-ace6-7958ace75dea", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:05 GMT", + "Date": "Fri, 13 Nov 2020 22:25:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "96" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "98" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json index 357e78e289ee7..eb284eba48c0e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3abb79bb4f2ced4fb7d55bdf2f955993-40ad55d8163ceb48-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-498cd3880db3a143b809228e1b6da155-f3a678494edc6846-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b1c263e328066fc8dce532b649cbfd03", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "48a44061-cc4d-47a4-a1e1-9f71c1e6bff2", + "apim-request-id": "74049b97-f212-4894-aa10-edfca4099ea5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:31:56 GMT", + "Date": "Fri, 13 Nov 2020 22:25:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "94" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "107" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json index fe51ebbb02fed..b78cbcec4e66f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-af6df28fda298f40bccaefc34948aa62-cacb13c8ff486d4a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-d19e5172732dfe4da720c19acc18d7c1-b6f03683e4df5843-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "61e4104888cde5cbe34786063a0401dd", "x-ms-return-client-request-id": "true" }, @@ -24,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2bddcc66-cb9f-4f8e-83b8-c7bd6710ac60", + "apim-request-id": "f6f1c3bf-5f81-4fc9-b9b0-1a20cf409e34", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:06 GMT", + "Date": "Fri, 13 Nov 2020 22:25:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "95" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json index 301f2fc3ffe8a..42b7e0022fd9c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "127", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-39c75d95e41ae749b93b237d46189a6b-1f1853e12b305746-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-f526d249b32dd14581da072ee39ff8df-87a32f7e6560db49-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "1e33ed24967d42087f8188a6111ef9b0", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b15bb93d-20c7-4366-9ae9-11bb18734827", + "apim-request-id": "8eeb2538-da81-49e9-93bd-f467f2b016fc", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:31:56 GMT", + "Date": "Fri, 13 Nov 2020 22:25:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "96" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "101" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json index 50d1121f878d7..56d6b4ae519a0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "127", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e1aa14ab3a51554ea698edf87b0d41c5-c40d20d81737d340-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-8e299850451fff48a19a027aecf0a0d6-45687fb6b9e93d4c-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "504a9c53bf1eca7814bfce867e01718a", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "79eafe59-fb79-48a4-a9a2-7a253ca8a805", + "apim-request-id": "e0ee8c10-f7e6-4511-b92e-1e2715d00584", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:06 GMT", + "Date": "Fri, 13 Nov 2020 22:25:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "98" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "106" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json index 4fc4347ddd01d..038976812a706 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8f1092bf51ad56419ebe7d0e63595198-8b7f834a813e124c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-2b1e76bd95ee754988a28f706e8c18cf-7a679e6f70d24e4b-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "558a7442c3b1c5137141db1dd8ca6858", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f0edc003-6451-4599-8c19-7d781f1bcdf1", + "apim-request-id": "beafd278-f2ac-4746-84e6-2059f24daa9a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:31:58 GMT", + "Date": "Fri, 13 Nov 2020 22:25:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "109" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "98" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json index 6878b7cafbb7b..209853056a096 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9a23ab5503d97948846fa46ce320eb14-577248b598746c4a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-14da05db80b0704c9e7310a7b59e09b2-bb5aa2c5e59b694b-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f6867f38d810d57a89dad763eab07a05", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dff453cc-82a4-4218-931e-e38fcb69aea3", + "apim-request-id": "6916051d-8208-4d87-9d51-5cc98f66bfda", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:08 GMT", + "Date": "Fri, 13 Nov 2020 22:25:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "99" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "105" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json index b6097bd836a16..57837e8846eb4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "80", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bf894546e733cf41979209e0b3047cee-08a62f0394b04d43-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-2755c330a73a1b4d950c3de60692e123-b118f817b9499b43-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "8d0590d28394353aadd5df7e697ac312", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b023476e-0a55-4519-a102-2fc513eb3ae2", + "apim-request-id": "4b366f66-6318-4515-bc60-402f61350a16", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:31:58 GMT", + "Date": "Fri, 13 Nov 2020 22:25:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "99" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "108" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json index 8040eb5f8ffc7..c669d1f5986a5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/sentiment?showStats=false\u0026opinionMining=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "80", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1f9e1f895061dc4094eb1d090c8a8f19-c5e80f83e17a7b48-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-241c81907f305844998dfd6e928f9490-96ae396b2aac0a4e-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "94ab183ce7dcf7c7f3beeb119ae08867", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1014848a-565d-43c2-919e-bb0b2bc480eb", + "apim-request-id": "e3ad162d-e03c-4800-a5ce-45c3b89370b7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:08 GMT", + "Date": "Fri, 13 Nov 2020 22:25:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "96" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "98" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json index 106579c4ac265..42aac766bfe6d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6fe66c65c4fbbc4fb97c2469258aa183-785c918491f80044-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-61011985bb436f469b0a64e4d82401a4-f731d3f73d5af943-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "5005f5e8a08b47218215f19574b370f6", "x-ms-return-client-request-id": "true" }, @@ -34,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f32b2daa-21e9-4d02-af7b-426c0c6708f9", + "apim-request-id": "63c4e92e-d067-43d3-a69f-b4b4c9cbc0c1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Thu, 12 Nov 2020 19:32:08 GMT", + "Date": "Fri, 13 Nov 2020 22:25:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "15" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json index 7f60839a79e78..4953811bf44f9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-575c9abc9af8304d97d92bb19fb1e419-6bf63307f0329f45-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-9d9ec18bef4c5149a2627018ae055194-1b362b2950873f48-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "3574863b78b3d4b99962ee1a8b7bbd89", "x-ms-return-client-request-id": "true" }, @@ -34,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "198a080d-ec5c-4a78-b871-b8c6c66ef85d", + "apim-request-id": "2645a487-5ff4-4985-9c40-97096d91f5a8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Thu, 12 Nov 2020 19:32:12 GMT", + "Date": "Fri, 13 Nov 2020 22:25:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json index 99a6974acba3a..8c91ac2021838 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-306ab820ab6bad4cb077f0541f4af808-f5c9931c8df20a49-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-f8c2fe0f87ca7d4f9c40907c9fb976b4-dd2087b1f7f8e741-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "738db85ac016be284349434968e4adff", "x-ms-return-client-request-id": "true" }, @@ -34,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c3fb61f7-a8e7-4858-9809-d65dd030b5cc", + "apim-request-id": "64f25b5f-cc82-4adf-a3a6-168a9e9601f3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Thu, 12 Nov 2020 19:32:09 GMT", + "Date": "Fri, 13 Nov 2020 22:25:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "19" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "26" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json index 0308871a6b11e..4de06f9ac88c0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ece4f5dcf9336d4a922227d704b6921d-fe5c40165939404b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-aa6d02f95b07a345bc379529f2692dcc-4e84ae2c97936045-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "6246079b8393935bca52b813124b2ad7", "x-ms-return-client-request-id": "true" }, @@ -34,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6606506d-2938-4a25-8627-adf0d20d1e5c", + "apim-request-id": "4cd64f1b-b3cd-479d-87ee-b9dab287d60b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Thu, 12 Nov 2020 19:32:13 GMT", + "Date": "Fri, 13 Nov 2020 22:25:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json index 52f55a1949959..eb26507994e5c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f4ba01e35cfba145b2e4e779a5ace4f3-759c01a5c34a7343-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-66c48ce18270a34e8fb3cac32d2c15b1-93df9630f0eed84e-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9ed49d935379ea824d7c2153a1e6e6e4", "x-ms-return-client-request-id": "true" }, @@ -39,14 +45,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4c0ecb51-6b08-471f-aa61-7ac816cab2de", + "apim-request-id": "8bec0a5c-4cff-4829-972a-b436882b590f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Thu, 12 Nov 2020 19:32:09 GMT", + "Date": "Fri, 13 Nov 2020 22:25:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "18" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json index 09751e59b45f1..0834ab93c580a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bb86b97aedb2b748b22e54304648f36e-61a12c863ed3c349-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-387260edbdae0a46a2ef77466e6c2830-fc722755a5539240-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "da5f41d41140dce5b95983493bb999e3", "x-ms-return-client-request-id": "true" }, @@ -39,13 +45,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d9705929-64ab-4ede-bb76-13bf4dfcb10f", + "apim-request-id": "5eb6f409-c6bb-4b9e-8ea9-430897c00103", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Thu, 12 Nov 2020 19:32:13 GMT", + "Date": "Fri, 13 Nov 2020 22:25:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "7" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json index f2f92a83e4d98..f7cdda7f9f303 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "156", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b7c11789bcc6074089e5b422cef0e75a-4f26293b467bd043-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-7a81350aa42d3348b7573168f126fc41-44828453df9f4647-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "3ce40d8d4db949068b12a56808d1cfa5", "x-ms-return-client-request-id": "true" }, @@ -34,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cc92e374-f3bd-4e9f-a9f1-cd8590584e40", + "apim-request-id": "c6c8578c-f30f-4214-ab0d-480948847179", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:09 GMT", + "Date": "Fri, 13 Nov 2020 22:25:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "16" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json index 168b1a5b0ca67..458d4580839cd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "156", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-55721884ea86e440a5e6d6b5f78314e2-3b6372702a347a40-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-f215a344fa5cde4889b98ddc63586c12-4717a202a8f2a046-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "51807d44b190171f3639086e14582723", "x-ms-return-client-request-id": "true" }, @@ -34,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "20cb6e47-e049-49cf-9ff8-3743570096cc", + "apim-request-id": "00ad30ae-e6da-420b-9490-121c777a0d12", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:13 GMT", + "Date": "Fri, 13 Nov 2020 22:25:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json index fdd0fa9d2c75f..f5c791387f638 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "67", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-40be6c6aa7075b498c80cac48fcce826-85049865b39bfd49-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-dcc99c4937a27c4e8e25c3eab1c76b2f-10d883f4bb7b7149-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "1a3b3f53b2eb19e83bb91b78bee10b95", "x-ms-return-client-request-id": "true" }, @@ -24,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "8f2335f9-1e7d-4ec8-98fa-75f9b3233486", + "apim-request-id": "bd641893-eab2-47c6-bc9b-caa5e20e809a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:10 GMT", + "Date": "Fri, 13 Nov 2020 22:25:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "4" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json index 468ada4bbbd1e..268994f49ed3e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "67", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9924eedce9179047a0529818e050a247-de9634f2dd93b44d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-9cc0727776047c4aab1a8a655b719243-fcf2e10d49f4174f-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b23c80179f571f450cf30413f8966972", "x-ms-return-client-request-id": "true" }, @@ -24,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "01cc12ae-214d-43e1-a27b-b21d5236990d", + "apim-request-id": "32b4dfb3-9066-455c-ba1b-bdf1fb36e3f7", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:14 GMT", + "Date": "Fri, 13 Nov 2020 22:25:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "4" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json index 8c93be9fa0767..9c7bcab093eab 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "57", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bd76268348a499489990d5fd87d19881-196d648890b04840-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-8354f15dd4d6b943aca414f2ef5125fe-0be37f437434cf4f-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ed66d74da14036cde144d6235dacd6d3", "x-ms-return-client-request-id": "true" }, @@ -24,12 +30,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c725b947-c9b9-4326-8a43-2e2c51f63284", + "apim-request-id": "2540edb0-c2d1-45ce-882a-7b761ab77f01", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:10 GMT", + "Date": "Fri, 13 Nov 2020 22:25:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "2" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json index 794a5419177eb..a245876533b3b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "57", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ae3634298df8c342932fbbcbb083bb68-50ad3175db89d44b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-0e1a293730426e49b33994474fbcbf52-265c243d43c45b4d-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "46af5eece4595e8658920ddb272bdb42", "x-ms-return-client-request-id": "true" }, @@ -24,12 +30,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "df970ac3-aab1-49eb-bdc5-dd84219b3be2", + "apim-request-id": "c2bf1394-a7b6-4a3c-9f37-bdf330936fdc", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:14 GMT", + "Date": "Fri, 13 Nov 2020 22:25:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "2" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json index 448b58b3c174d..433bc096448b5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-761516101d340b4386cc31d421ad3fbe-865729b14caf0349-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-d43ca80a21093e47867256341f057961-fba4b8fdf5808b43-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "acad3cc12aa10a7667d1533045b0a321", "x-ms-return-client-request-id": "true" }, @@ -39,14 +45,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2a45e6fd-90b1-4a40-b8ef-1a5a714c57ce", + "apim-request-id": "5664fb4e-1d6e-46a7-91ae-ed13f46f2147", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Thu, 12 Nov 2020 19:32:10 GMT", + "Date": "Fri, 13 Nov 2020 22:25:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json index fd15076394f09..72d5f7ef431cf 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages?model-version=2019-10-01\u0026showStats=true", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b1c779ad5918804da3e4ad66a082e01a-ceeb4dc9ca0c5e47-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-43bf6a6f2fe4fc46995817be6109ad4e-a505ce3038d4284d-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "50a7683e77aad92fe53b41b770dfa6fb", "x-ms-return-client-request-id": "true" }, @@ -39,14 +45,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6b11aadf-64c7-4015-934b-34e364cbc2c5", + "apim-request-id": "36a07703-4fc3-4b38-a664-74ad2ee34b52", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Thu, 12 Nov 2020 19:32:14 GMT", + "Date": "Fri, 13 Nov 2020 22:25:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json index e6421a391cf66..b6e71cab9d273 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "82", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d9a57da1acfdaa4c807c2224af253d17-d43f80c2b6e3b34b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-2dfdc16f3503a24283646dc6461b19a1-97796ea44beddc42-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "7aaab163ed1d982c319bbad40483549a", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "57cff552-e564-4043-9b61-eb66012414d8", + "apim-request-id": "79a86556-25c3-4d9a-9093-51a91266be4b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:11 GMT", + "Date": "Fri, 13 Nov 2020 22:25:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "17" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json index 9863775d59d80..8c9ff7e1a5638 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "82", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-91f09cf12b203b4a83f0c2500fc9d2cb-c254ffd3f3e76045-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-7e4ced3212fe0d49ae330529a1742fb6-26db80e1c8326c45-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "d4cc6357ff58c85240bd64c6445c1d0f", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "71c06027-20b6-4ede-98cf-40367fd33458", + "apim-request-id": "7b9611c8-8f1e-4a9d-b8aa-f02aeaa14eb4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:15 GMT", + "Date": "Fri, 13 Nov 2020 22:25:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json index d1bc79ef9b334..e1752cd05e27e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "95", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-56a60afa34d7444d9b0dbf48d9a15695-645d2bdad2b64e42-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-a739cf5ee6690d4c8504d51c9da140b8-1580b46b5c7e0843-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "98a2a27e9082d475805aa932800b5cf6", "x-ms-return-client-request-id": "true" }, @@ -24,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ec70d6ec-b25d-4fc4-abb8-85a1c597298b", + "apim-request-id": "5d11d60f-67c1-481e-bca0-4bb798c2a416", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:11 GMT", + "Date": "Fri, 13 Nov 2020 22:25:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "18" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json index c490aa092f2b7..a373e456fb77d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "95", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e5d8079a6778ca48a65cb4c585d5a3c6-e3678fc58dd7ce4d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-5ff32492624363409154e30ab2e6dedb-fa7fbe1e7723bb42-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f0760fc68cadb07ff1c89a4d1612c056", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1cbe5041-9e23-4723-ab86-2862cd25d775", + "apim-request-id": "e6dba347-c5d1-4dcd-be79-0848c8206e04", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:15 GMT", + "Date": "Fri, 13 Nov 2020 22:25:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json index 7a161936bd8b4..18ff799002c80 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "101", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-246f6a050b44ad4b8e89194d6a9aa532-e3d6bfcb4cdb2048-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-ba8b9d33dbc27144a8afd7681c85cd23-776f6cd5a20a6247-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "d6d037d3997433f0d1d408295081d2b0", "x-ms-return-client-request-id": "true" }, @@ -24,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1af21a56-5bf6-4a38-b57f-cd1b125a2df2", + "apim-request-id": "36627e7e-894c-4a20-ba54-31a757ca1318", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:11 GMT", + "Date": "Fri, 13 Nov 2020 22:25:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json index aba6bfd1281d6..d1ba8d345206c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "101", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6c99d2937173cf40b19f2583cc2741fb-bf8be73347c26545-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-88e2ebafa5b9494f8f9ec6b70ec3a192-8d44d43d1910a847-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9d92baec240d7c0e78b80d24d8752359", "x-ms-return-client-request-id": "true" }, @@ -24,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0d1900dc-0b60-4331-a3ab-f7067f78c11e", + "apim-request-id": "13cac227-c5e6-4b02-a9ca-b8dc647da1f2", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:15 GMT", + "Date": "Fri, 13 Nov 2020 22:25:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json index 7635c9bcb0d04..1769e2cb6baa7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9914962ac4d4df4c9d2f8dc9944824ee-7ddbbc9502b1a14e-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-00f37570137ae94cb64a75f74fad8ca4-98a4468764b2a040-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9cded6f43daa9a1f5be8cb3934e1c44c", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "106794bf-da20-4052-9d64-b092cc2a2b64", + "apim-request-id": "b307fda3-9965-42e8-b038-b6900aa598c6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:12 GMT", + "Date": "Fri, 13 Nov 2020 22:25:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json index 484b5adad3f30..042fbc820286a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bea4d23d1c330d46ba9b664f796fc837-00e49c1cf3851241-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-110eafada540c949a07251745ac841fa-7ac7774598833f47-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "6124b40a04621bbacc815e287718638c", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3de28136-c003-4899-aedc-ec28248c3005", + "apim-request-id": "58cf9d49-3ae1-45f7-9f9e-8f16b911b625", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:16 GMT", + "Date": "Fri, 13 Nov 2020 22:25:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json index dba33da02c581..587200da722cb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3c6455ee8cecdb4ba137bda5730d25c0-d34477a24e5bd04e-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-f86f127ac6128148bc4f46ad39c8f8fc-401fb7f771f22e47-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "dda057b9e217d2ba6e5090c17d8fd607", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c87ccaad-2312-44cb-9a77-0a092f953891", + "apim-request-id": "c46041e2-0a19-4ac8-b1fa-67408c4f710c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:12 GMT", + "Date": "Fri, 13 Nov 2020 22:25:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json index b8467a70bdf5c..eb4dc4a39797b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c89f88fd2f5f88419870092f56622e09-1bbd7e4e87a6f34f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-7a93832c2bd8d644854d4b4d7c14f7b0-aea1aefb7a8e7048-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "bfed051a0d9b7fe81f8b58b8ccb397c0", "x-ms-return-client-request-id": "true" }, @@ -24,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5a0a6467-b2dc-46b2-b9bb-aef91c634dd8", + "apim-request-id": "9b7ce7ca-dc19-409f-8a23-b5e574df6fbe", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:16 GMT", + "Date": "Fri, 13 Nov 2020 22:25:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "6" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json index 823b3d4936e14..abc5ae3e22844 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8ac91ab8c5ff7d4da4156b4befe0048e-c5ff5c065723ef4a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-49c32ff955791d40b6eff99307f69c60-793fb438e99d3b45-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "632e1038e2d2bd9cdcf3dd442e79c63c", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7a5c3501-d3c1-42be-966b-a436e0b1b639", + "apim-request-id": "543d1ebe-d039-4a18-b7ef-73b5aaca896b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:16 GMT", + "Date": "Fri, 13 Nov 2020 22:25:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "22" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "29" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json index 0d50aa100571d..5290f68031d96 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-eeb9cac166d8ea48aed0f7f3dd152567-e5d6622b76778b45-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-954d6e8d49135143a5d008e579cda868-b12e3f4da8c1be4e-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "bb6bf08839909e0e578d5bc1b428bcd2", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8d043735-f6bb-4f77-94b4-741ea5b0fa0c", + "apim-request-id": "ebc1adb2-d829-434b-982f-62e7b9df71ce", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:20 GMT", + "Date": "Fri, 13 Nov 2020 22:25:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json index 4e7e12e1ed0f9..1ef531b1b8f87 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b7ecd160c9164a4fbe3540218718d26a-f8dc100d62aa3440-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-7c78fc608b61af4080e42b7e705e728b-90aa909eeb1e9d42-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4dfa2958a1568d79bc14e1b570d63d15", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5f26da5a-8386-4516-a478-3bb9a399df17", + "apim-request-id": "c7cc44fd-9fcd-42c1-b7ed-d3deaf7c0b01", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:17 GMT", + "Date": "Fri, 13 Nov 2020 22:25:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "23" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json index 5e2bdbf1cc329..705348d5d8eef 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e1fc3777cb8af0489c87cddd6808007e-61bd13f28d7d1540-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-f48f84c77dee494bb6b2a22585c359e2-cbc43ead6bc6cf4f-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f8f1e114d697e804255315d1c7e9b6ab", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "be00319a-2b4e-4e45-a7e0-f8e3302d36e8", + "apim-request-id": "bbaac5ba-97db-4de3-b322-8f30f4f58a90", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:20 GMT", + "Date": "Fri, 13 Nov 2020 22:25:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "13" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json index 4f9b2cdf378c5..879e7bcfc4cb6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d43fdaf77fe83e4cafcca13599bbf5f9-ae83940012efb841-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-1c4e344970086947a935fffb0a639b2e-de244127a7a67144-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f8376358e18a19e0b7e6f893926ac745", "x-ms-return-client-request-id": "true" }, @@ -29,13 +35,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "17be091c-869e-44c0-bb79-656adbece1e6", + "apim-request-id": "d2b642f3-cc62-4f44-b1f6-e2b3f48051fa", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:17 GMT", + "Date": "Fri, 13 Nov 2020 22:25:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "21" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json index 66af5533ee5f2..975555232cd40 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e263c41c28df4d4294457cd37392fa54-a170f3a740a18d47-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-3f5a7c3cb98ec6428aa6b04899b04996-96f7faa499f91545-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "272edb015782fb6dbcae1cc2967deed3", "x-ms-return-client-request-id": "true" }, @@ -29,13 +35,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "651d2357-496a-4e1a-97cf-30213e450ceb", + "apim-request-id": "987d809a-9cc5-419c-8441-03aa7035510a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:20 GMT", + "Date": "Fri, 13 Nov 2020 22:25:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "11" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json index a1d412bb68e28..34e2667e6109e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f27faffee326cd46a39ec6b75eea1670-fdba46fa446db742-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-2f63a4e728caf3478ef414bbf361ab23-bc63a1f1ead54d4b-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "dd92af13693d6c6d10f5b45092a05fbe", "x-ms-return-client-request-id": "true" }, @@ -34,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dc1be1b9-239e-4eb7-86f1-efe1e0386b47", + "apim-request-id": "97e5c1fc-317f-4610-9c28-419541f5d2f5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:17 GMT", + "Date": "Fri, 13 Nov 2020 22:25:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "12" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json index dcce9c855eae0..d8509c9cf3e11 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f3d659aaa8351e4ab8ffbe27d7847e1d-9a56f89746c1644f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-85a415044489ab469b7369587193924d-6de3578d470af945-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "161fb623980eba163f1211744629e747", "x-ms-return-client-request-id": "true" }, @@ -34,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0cd62e29-6efc-4b09-8de1-0653678eb8f4", + "apim-request-id": "35434b52-bcd0-4d80-8b06-b8c739ef966a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:21 GMT", + "Date": "Fri, 13 Nov 2020 22:25:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json index a54a4cc670a21..b11e848c5cd06 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4b75a1c07a0b9b4d9e1169d9444a84eb-d3ce442c30ea944b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-929380a09b1c5b49802635a2f8cbfb56-42025c9b31f5294b-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "02233abc1a851f8d7b73c3a9864f0660", "x-ms-return-client-request-id": "true" }, @@ -24,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "59a41740-5bd9-499b-bfe4-ae57af9dbed8", + "apim-request-id": "876768ce-2ebe-4105-b54e-5157e0e6d264", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:18 GMT", + "Date": "Fri, 13 Nov 2020 22:25:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "4" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json index 34c8f75b4d4cf..2cb981e0666ba 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-70a14da5f198814893575e910a7189d9-83c5448b2204a848-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-8b3cff8e91a2f34ca02d803907173ee4-3e8519f8c8c9604e-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "d3ffef96a22198e4e5a15a93f55c6a25", "x-ms-return-client-request-id": "true" }, @@ -24,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "23a99663-bb8b-4944-8e31-0d0b510bb1b6", + "apim-request-id": "425cf922-7325-4946-b48e-a21e5889d906", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:21 GMT", + "Date": "Fri, 13 Nov 2020 22:25:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "4" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json index 6729681ed6708..ceac764844e78 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b7d95a79abcddf41a1315014f73d932e-942e4533cbfee948-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-3a502deac32efe49849b442c0e027f85-09d88699cd22bf4e-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "5bf1e93674612a2cd70f69188e2d39f7", "x-ms-return-client-request-id": "true" }, @@ -24,12 +30,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7b44a50c-116c-4dde-a04e-b72c7b0163c4", + "apim-request-id": "4837a271-c5a6-4481-8f1e-4cd9440564cf", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:18 GMT", + "Date": "Fri, 13 Nov 2020 22:25:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "2" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json index 47d3e2da662b0..f526a76a0c2a9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=false", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3aa547684991244e90d1670f24adf853-9090ac3ecd38304c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-44a7846066c34547aab00ec03b7ea3d2-5b9281c0c270ee4a-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "5dbd36794559c388c50dd26e725f8f67", "x-ms-return-client-request-id": "true" }, @@ -24,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b697eba1-5e1a-4e73-bc17-5b5613cea7db", + "apim-request-id": "487bfa93-01b8-429d-9b7f-7ad6beee25f1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:21 GMT", + "Date": "Fri, 13 Nov 2020 22:25:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json index 8d60e03209c67..ef4be45c81008 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-78e1718966daf64aa0141d4be17a5a1a-d7f1f1cd45cf6147-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-23a8941787b8c14f862d348c8bcb495a-8a0f6d49290edb43-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "481340828d769a0d6f19ecfe6b0d9666", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6c687f91-cc64-426a-b0a8-955e162a1a4d", + "apim-request-id": "47faaa9d-1e0e-429b-8bb6-b0468071d544", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:18 GMT", + "Date": "Fri, 13 Nov 2020 22:25:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "14" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json index fd14448962cc9..3c2cd319bbeb1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases?showStats=true", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c64f1f605e178c449f9794cb2d46fb47-0a2c1061a83c3b48-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-af7f344d9def8f4e88c0d97582368809-4244f4a76992924d-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "fcabdefd3d51a89852601fc0d61f3468", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ffaab649-406f-4477-9926-481599852515", + "apim-request-id": "338f8a32-2893-4719-8a67-8ba8c7b0ea12", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:23 GMT", + "Date": "Fri, 13 Nov 2020 22:25:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "24" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json index 7eca8e6c3fb3a..2fa8f9a9c1582 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "92", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ee80366970d03c4d8805ca53e811c4c0-e429929ac4339d46-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-24b269be2b22fa4abae1f9aaeee57cf7-2a137a123eb06f47-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b86575e1b38857965c8495535ac2b899", "x-ms-return-client-request-id": "true" }, @@ -24,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "acf8e3d5-3548-4f82-a223-596bd30c119b", + "apim-request-id": "51b81b2a-c92d-49af-83f4-1c22be662e89", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:19 GMT", + "Date": "Fri, 13 Nov 2020 22:25:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "11" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json index 363c83c4172d2..f2b6c27cd2dc5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "92", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9dc35f655296bb48b79431997bccec27-7e15a93703af4a44-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-a762d130d46dfa408c12a1816a2bc99c-19f0bfe47527a647-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f80f56a1c735d323972d5c2c674aed06", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a2b99aed-9ce8-4da9-a288-706c7f87a0b5", + "apim-request-id": "2e0eef44-ff19-44db-9682-ebe9646b7cd4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:23 GMT", + "Date": "Fri, 13 Nov 2020 22:25:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json index 7fac1a741f895..49a4f973d5755 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "88", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8b4f7bd1f355d947bfcb423e45ad4f9d-bcbbe89ce7db1a4c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-10c4f494e0b1d84c8312b33c0bce56bb-38951bc5c3a1c844-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "fee09dae9a1670151c1a3a802afd3e61", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e3453f40-4ad3-49a2-ba5b-662131a7704e", + "apim-request-id": "0c4a8849-0728-40e7-b60d-0e9ac0a7ca14", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:19 GMT", + "Date": "Fri, 13 Nov 2020 22:25:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json index 9126aed0733f3..4666b7d8102be 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "88", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5548252a1c5b534ea4a6fcc8a9a2787e-d540898f16a3fd45-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-159d1405cfc18a4a80ccc65c30c75e8f-fc6466a1946a0a4e-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "3bfc775f82d23a381e7a3b00a0305c6c", "x-ms-return-client-request-id": "true" }, @@ -24,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b22ed2c5-6056-4ceb-9020-051b59aa421e", + "apim-request-id": "f1204615-4f2d-438b-9c46-25fbf4a1d810", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:23 GMT", + "Date": "Fri, 13 Nov 2020 22:25:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "10" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json index 2c6766b552c1d..db00e54f3b977 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "180", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ba44441f616cd94189465fa95e8a4021-6328c463b08d3a43-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-8e9bc8d8e135b5419a2f3bdba20831ae-e4e2d4dcd2cf3043-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "7a99e78b28bbdc34334c788be87edcb8", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "56cd7d43-990e-4290-b98d-f6453e17c72b", + "apim-request-id": "87d7f4af-05ae-481d-a3ab-4db5074eaa84", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:19 GMT", + "Date": "Fri, 13 Nov 2020 22:25:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json index db63ce2f0e516..7c8f40e079749 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/keyPhrases", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "180", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f5b2fc7cf852a84791209a24f51d784c-2aeb6d4652254e45-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-162669b5feb8bc4d81ac4ab830d3ab12-2592b6f0c7fa2741-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "d687a16b6a26ea445556f8b3c125785e", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1a99252d-631a-490d-9505-ec905da6950b", + "apim-request-id": "8c1201c8-c7e7-4532-8ab5-741f75a38add", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:24 GMT", + "Date": "Fri, 13 Nov 2020 22:25:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "10" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json index 550f1084133dd..07f3e636b255f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9d5449eb38d7ee498bd928bdbc0d540f-382468d1c6d39f49-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-3f554bd28935a84b9a618de6f04ec14b-17bd0bfa8bfa5540-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "73b99494ac5a2b6a48730fa6d4bda24b", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0b7912e7-5bf6-41a1-85e4-31dfab101696", + "apim-request-id": "4f2791ff-c7f1-42d1-9b36-66be5096e7e0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:24 GMT", + "Date": "Fri, 13 Nov 2020 22:25:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "109" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "117" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json index 95cb94c35ec09..00a2fc299d282 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-419abef2f3ef2e4cba6e8ad8c0406bef-6f5635c6390bfa46-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-683a7d1b379452439c890030231c8224-5216e0289d187045-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "d2ffe8a9cd41c6a7f7eddf3ba0def75e", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "91376ad2-10cb-4f49-82e4-3fdca421616f", + "apim-request-id": "7379b199-d702-4470-941d-8319a461ab79", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:28 GMT", + "Date": "Fri, 13 Nov 2020 22:25:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "108" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "104" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json index 423e96868bc37..5b93181b4a5a9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4e201555d2c1d649a70472df919eb14c-cc27ff0c8ca94f45-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-81ca7cfbb472bf41aacc4d95e01a121a-f6fdfd694b2e5e42-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "67616e684f8b043d1e0c71e939770f42", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "60d45528-b3bf-4ab5-93a5-e5bff2565b6e", + "apim-request-id": "27311495-6441-4760-a1be-d7e8121f522d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:24 GMT", + "Date": "Fri, 13 Nov 2020 22:25:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "77" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "91" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json index 6c4be1b982cb8..b37d11b85a0ab 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-716f228dee696149b71cbdf40fb4965b-f98241a5e4174547-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-bd0de70b5322594ba08bd80a3ea9d554-f05760f2643a4747-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "3d6191fdfe339ad3e9a9a23dfab389e2", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7a009d60-e687-4706-a306-3426e022b8ae", + "apim-request-id": "3b87e579-d497-4896-a097-df00f403fb39", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:28 GMT", + "Date": "Fri, 13 Nov 2020 22:25:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "81" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "108" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json index 788f757da9d38..c823f9429d94c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-052eb2d8f52d404aa8fb089d99c992ce-0142d034cc12714c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-2a646137d5bf7d48a5c4c63f710585da-5b6dc345aca1bf44-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c2e6195c0f4c89c31e4ed8101a9fceeb", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0ad1ebf6-8e3f-481f-a890-69a91174f69c", + "apim-request-id": "aef75e63-2d7d-4d9a-a9f1-d324b9cfeef0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:25 GMT", + "Date": "Fri, 13 Nov 2020 22:25:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "89" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "95" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json index 4d1118b035b8e..49d3c423d3eff 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-65306d47bd294648aeb96332ccffa763-b1dbc5248a15bb48-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-6dca1f3f1548414f9efc90bc6acf0baf-7422eb8366e8664f-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "74826ca03adf5e0230955bc11a73f253", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7b2409cc-76f3-4757-9e54-3389a4d02943", + "apim-request-id": "bea94e0a-a019-42c1-9c64-d84a0184fd46", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:29 GMT", + "Date": "Fri, 13 Nov 2020 22:25:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "131" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "88" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json index 36dc212d44998..edf5987450815 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f2b27c480d837e4d87bd5564119e2069-a0e3ba179e39dc4f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-d547bb1891d4354dab33b93177c8b7ba-b56a692d1a217748-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e1ab51bf64c496574b45aba2614e8e70", "x-ms-return-client-request-id": "true" }, @@ -34,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "52b60896-1bc2-4203-a481-fa36047cf7bc", + "apim-request-id": "c52441a5-02c0-4131-9c60-49d7e125e6a5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:25 GMT", + "Date": "Fri, 13 Nov 2020 22:25:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "72" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "91" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json index 7dc36a0c6ba72..c61312d200601 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6570986ba72c914d94e3d999bc95c7c8-5c9798e44937b44d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-3ae2f39ba33abe4ba86ace24ec9242b6-0222d556dfb67845-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "d8b08f95484a0406f97f2f7420372c35", "x-ms-return-client-request-id": "true" }, @@ -34,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bf529d5c-474c-4ba0-801f-5f3c16545cbb", + "apim-request-id": "043dfb74-1799-4953-8679-c95b695db34c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:29 GMT", + "Date": "Fri, 13 Nov 2020 22:25:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "72" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "104" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json index 6238553f75ab3..67686c2ffb4c8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "297", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8cf95b4e75b34640ba8222dbd10c007f-7e17847550545d42-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-8dd4e13faba3d841b4258a9a8c82fb44-51a50bf48be7ac47-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "a8ae17c802a6c3ea068b7f13c73b934a", "x-ms-return-client-request-id": "true" }, @@ -49,13 +55,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "4b556740-854a-4cf9-839b-47323b20651e", + "apim-request-id": "5ccf1ed8-a4b3-459c-90c7-d06aa86fab7b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:25 GMT", + "Date": "Fri, 13 Nov 2020 22:25:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "4" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json index 0af04b6e1fe42..9cf2198645f90 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "297", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c8dff0aa2cb72749a35141f854694d0b-ce372ff3ab74b04d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-9209456e22670b4f861f0aa4ffddb07d-6da1bbb2c7bdd246-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "28b544e5b9a5cf3535ddef0fb0fd1d43", "x-ms-return-client-request-id": "true" }, @@ -49,12 +55,12 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "3637f752-d1ba-4630-8251-8690b53cbe20", + "apim-request-id": "a4922b0d-7dc3-44e5-a3bf-d5b492cdf2d8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:29 GMT", + "Date": "Fri, 13 Nov 2020 22:25:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "4" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json index 7c0dde4d04407..bfccd14b40b9f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-764c5d2e933a4c45af5aee0b9ed8d48a-2b545cc15030cf48-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-290a5de36739f345b941446cf39505f7-90041514d2acc14b-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "0394cc79836b8e2a0617730333d293ff", "x-ms-return-client-request-id": "true" }, @@ -24,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "aec6c22d-9249-4569-bc2c-1fe205f1bf0a", + "apim-request-id": "e26f6597-fac3-4983-bd98-dcbc99e5908c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:26 GMT", + "Date": "Fri, 13 Nov 2020 22:25:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "4" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json index fc82af013b36d..36922a20ee003 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8b6b0aa6a60a9e44992f9aff0fa0e962-ed3af124c83c9745-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-e87895f821b43645828fd10f9dc97f90-abcbe6ed4b8f2742-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "d2a606a042fa292271e9e0fd82e50d07", "x-ms-return-client-request-id": "true" }, @@ -24,12 +30,12 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "3deecf79-64e1-490f-abdf-a319373b244a", + "apim-request-id": "eaaf07f8-610e-45da-b600-b619d9f06629", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:31 GMT", + "Date": "Fri, 13 Nov 2020 22:25:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "5" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json index 51f39e268b9a9..efb11a9d40656 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-38f76d55882f91439f6646a273531ac5-c6f3b3cdfeaada40-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-b90c944d1d14034a9aeaa8b73e7c009e-94d7bf99a7a2d842-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "143a14bc880cd41cfe9c98287e990fb6", "x-ms-return-client-request-id": "true" }, @@ -24,12 +30,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5c1895de-5c2d-469c-b43c-a5f4963d129c", + "apim-request-id": "124cbbee-f07a-46bb-af6f-199d572fd45e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:26 GMT", + "Date": "Fri, 13 Nov 2020 22:25:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "2" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json index 0150648cd8c2e..f55a7b54eff83 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1bba4404445dc440bd37998735ff594a-cc8ff192d54daa48-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-97fcfb234061444f87ccd60ca457bdc6-6fef757f8cc0b345-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "7afea088ca0a22de1ccfe4f56367e3ca", "x-ms-return-client-request-id": "true" }, @@ -24,12 +30,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ca769516-5aa6-4edb-8fab-a1627214098e", + "apim-request-id": "150b27cd-7ceb-4dc0-9d29-8530021a44a1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:31 GMT", + "Date": "Fri, 13 Nov 2020 22:25:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "3" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json index 524c9d1e3ae49..f103c1beed142 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0e6483c6dea6fc4b8f49c6cc5496f6df-4068ba16edc1a24e-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-79d82e669664d74ea518bc4952ef50cb-d3504f735fd98c46-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "3c7b09ea57a0a9f84c938c05ff06e377", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e23e26af-6eac-41d3-86f0-8635af0f65f0", + "apim-request-id": "dbee6de8-50ec-4134-93c7-c86da6125288", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:26 GMT", + "Date": "Fri, 13 Nov 2020 22:25:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "93" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "81" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json index d0d6a8731ee05..274132c9c4c83 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f1e0cde231fdb149a8db650db34538a8-1e203aaa79752541-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-2c4feae3d6a00b4b982911124781b475-f08b8a4906a0ec48-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c386dc48f454868243af3522ce69cb86", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c5313b0f-f35f-499b-aaa3-b169f38145e3", + "apim-request-id": "626616f2-97d9-4e53-833c-e2917eb884d3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:32:31 GMT", + "Date": "Fri, 13 Nov 2020 22:25:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "78" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "91" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json index c68a53382ea85..9ab286203a47f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f2df04b854b599448446a0f9f662d448-4600c4dd41801144-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-e2eeec305d8cb44384a578db79a56716-e647f39f24be9d40-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "483a789eb74f49281b818c10882907cc", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "806febfe-f4d8-4826-b13b-556be57adf49", + "apim-request-id": "f1858fdd-d92b-4395-9dbf-2f36056c0a1d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:27 GMT", + "Date": "Fri, 13 Nov 2020 22:25:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "81" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "70" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json index 2f11181d60895..e0002d462dd12 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6285afe7ba12524ba3d3283b94391bc8-d7f0b7841ad2524a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-8119f929f21e2c4aabb72712158ee8cd-052722ebef22b64d-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "700659f3fdefe683be90e2b1951eb421", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "61bef70a-63e4-4cb3-b5e0-58760fd573f0", + "apim-request-id": "379e14d2-7fbd-4a07-adbc-45c0035f95d4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:32 GMT", + "Date": "Fri, 13 Nov 2020 22:25:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "69" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "81" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json index f7b8b26611168..84f783a1ded8f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d87e5c58bdb5814baec386120f7fe851-5a23cb0c45a86546-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-31ed63e20d02254eb81b0847ee86cda3-6f21115e78730c42-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "fb4827053b6a1252c3b25be970bef0ff", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "42936f08-f2b2-4fdc-bcd4-e330e916b782", + "apim-request-id": "9bd3a677-28fa-4297-8561-ea091faf3358", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:27 GMT", + "Date": "Fri, 13 Nov 2020 22:25:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "65" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "71" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json index 55d89d3e3b3b2..ff4e28a14a46d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2211e69c9790ac46980b3920ae3000d1-2ece40b8b20c3244-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-46cbe675ec255741b111c0c6b231adbf-766eabc0ca1e554f-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b55082b33b1fe734efdcbb82c7c8a31b", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9fb4e044-2d30-42a7-b847-5f6d8961f137", + "apim-request-id": "83dd89d3-0fa3-4a77-add8-fcc559478e8d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:32 GMT", + "Date": "Fri, 13 Nov 2020 22:25:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "71" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json index 2dceaefc007ce..db62891063391 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4509d2e9d93ecd45a08e139e370720b2-748ca6b4c6aa254d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-baf2b43e37be0d49b63abd8a8eb4124d-72ac00220903eb4e-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c580665e455e125e80a821d61e9c3c18", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "22c36bf4-44fa-4fd4-b660-ffde5dd217b4", + "apim-request-id": "f6411cca-fb2e-4a11-b845-9acbfcea45ab", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:28 GMT", + "Date": "Fri, 13 Nov 2020 22:25:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "75" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "128" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json index 8e52124acc70d..3eb3765ba84a7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4d8cbe8d4910a74a87d1bf01d01e612c-7eb809f3384aec40-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-a8d089e5a1eab5468de4167bc56ebef7-5a28476eabaa7d44-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "3b4b745166e69035ddd947884a09aa87", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3efd0cae-5072-4935-afcd-8ebabc6981be", + "apim-request-id": "cad14f0c-cc82-4133-b1d4-85241af26e0f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:32:32 GMT", + "Date": "Fri, 13 Nov 2020 22:25:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "88" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "69" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json index 9d3d0d2702bdc..36f67f82c5c4c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f4bd5bc33adcf340bcc5818a0b9de8db-67548c00083e0847-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-282f5f2ac1c6f24a9226d1d8b7cc992f-9143187814a5374c-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "1d7c0f7df9a5be46a7bf1d0b574c6095", "x-ms-return-client-request-id": "true" }, @@ -29,252 +35,156 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "3fc9b722-3dfd-44cb-a680-f9d8d9d9b71b", - "Date": "Thu, 12 Nov 2020 19:32:33 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9c6bd127-1961-4ca8-810e-e9cd648ec89a", + "apim-request-id": "fd30b37e-083c-4bba-9499-8ebcaa6d7142", + "Date": "Fri, 13 Nov 2020 22:25:27 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/527d2109-c20d-464d-8759-2cd7aa539fb8", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "81" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "96" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9c6bd127-1961-4ca8-810e-e9cd648ec89a?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/527d2109-c20d-464d-8759-2cd7aa539fb8?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9441bfd5d8fa13e75ab79017f0dbec22", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "92259205-a639-45a4-9f41-084e08b9dc53", + "apim-request-id": "5eed65cc-9283-42e5-bdcc-29450fd69330", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:33 GMT", + "Date": "Fri, 13 Nov 2020 22:25:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "9c6bd127-1961-4ca8-810e-e9cd648ec89a", - "lastUpdateDateTime": "2020-11-12T19:32:33Z", - "createdDateTime": "2020-11-12T19:32:33Z", - "expirationDateTime": "2020-11-13T19:32:33Z", + "jobId": "527d2109-c20d-464d-8759-2cd7aa539fb8", + "lastUpdateDateTime": "2020-11-13T22:25:27Z", + "createdDateTime": "2020-11-13T22:25:27Z", + "expirationDateTime": "2020-11-14T22:25:27Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9c6bd127-1961-4ca8-810e-e9cd648ec89a?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/527d2109-c20d-464d-8759-2cd7aa539fb8?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "1f1476b4f8decd8416de12a15e37d599", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0a564b1e-e655-4c79-95c5-608f8523cbf0", + "apim-request-id": "b9952564-dcf6-47f9-b11e-0814af70878b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:34 GMT", + "Date": "Fri, 13 Nov 2020 22:25:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "9c6bd127-1961-4ca8-810e-e9cd648ec89a", - "lastUpdateDateTime": "2020-11-12T19:32:33Z", - "createdDateTime": "2020-11-12T19:32:33Z", - "expirationDateTime": "2020-11-13T19:32:33Z", + "jobId": "527d2109-c20d-464d-8759-2cd7aa539fb8", + "lastUpdateDateTime": "2020-11-13T22:25:27Z", + "createdDateTime": "2020-11-13T22:25:27Z", + "expirationDateTime": "2020-11-14T22:25:27Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9c6bd127-1961-4ca8-810e-e9cd648ec89a?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/527d2109-c20d-464d-8759-2cd7aa539fb8?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9fb8c34e36bba5c72869c2ed682ecdcc", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1d946e8e-3011-4bd6-afa8-14a28bbafc59", + "apim-request-id": "416a6908-b6e3-4a32-9093-9458b83b2c8b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:36 GMT", + "Date": "Fri, 13 Nov 2020 22:25:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { - "jobId": "9c6bd127-1961-4ca8-810e-e9cd648ec89a", - "lastUpdateDateTime": "2020-11-12T19:32:33Z", - "createdDateTime": "2020-11-12T19:32:33Z", - "expirationDateTime": "2020-11-13T19:32:33Z", - "status": "notStarted", + "jobId": "527d2109-c20d-464d-8759-2cd7aa539fb8", + "lastUpdateDateTime": "2020-11-13T22:25:30Z", + "createdDateTime": "2020-11-13T22:25:27Z", + "expirationDateTime": "2020-11-14T22:25:27Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9c6bd127-1961-4ca8-810e-e9cd648ec89a?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/527d2109-c20d-464d-8759-2cd7aa539fb8?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e057fbd34137dcb63a747e1bc545b423", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "81cac95a-460e-4f7c-8eb3-76abd1c5bc4c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:37 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": "9c6bd127-1961-4ca8-810e-e9cd648ec89a", - "lastUpdateDateTime": "2020-11-12T19:32:33Z", - "createdDateTime": "2020-11-12T19:32:33Z", - "expirationDateTime": "2020-11-13T19:32:33Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9c6bd127-1961-4ca8-810e-e9cd648ec89a?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "2dc9f6e14c227d66ae6ff775359664e7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b91b0122-68d0-43f8-a175-77d7c9077841", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:38 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": "9c6bd127-1961-4ca8-810e-e9cd648ec89a", - "lastUpdateDateTime": "2020-11-12T19:32:33Z", - "createdDateTime": "2020-11-12T19:32:33Z", - "expirationDateTime": "2020-11-13T19:32:33Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9c6bd127-1961-4ca8-810e-e9cd648ec89a?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "63ce4611f5e00d620cdb6447b8abdfe2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "1d6173ce-eb5a-4c43-b7d9-4a52d8ec6bea", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:39 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": "9c6bd127-1961-4ca8-810e-e9cd648ec89a", - "lastUpdateDateTime": "2020-11-12T19:32:33Z", - "createdDateTime": "2020-11-12T19:32:33Z", - "expirationDateTime": "2020-11-13T19:32:33Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9c6bd127-1961-4ca8-810e-e9cd648ec89a?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "710c9fb5a06586a995da31c84941a6a4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "5a02506f-938d-4003-a3bf-3d6456537d20", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:40 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": "9c6bd127-1961-4ca8-810e-e9cd648ec89a", - "lastUpdateDateTime": "2020-11-12T19:32:33Z", - "createdDateTime": "2020-11-12T19:32:33Z", - "expirationDateTime": "2020-11-13T19:32:33Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9c6bd127-1961-4ca8-810e-e9cd648ec89a?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "7f0a960f5177eb4394bc2147e71fc503", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "ba0b4398-1bbf-48ba-8a02-56edd6ce166b", + "apim-request-id": "4a9c70a5-1dfc-4a22-b8df-f9cd14b9cf02", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:42 GMT", + "Date": "Fri, 13 Nov 2020 22:25:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "48" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { - "jobId": "9c6bd127-1961-4ca8-810e-e9cd648ec89a", - "lastUpdateDateTime": "2020-11-12T19:32:41Z", - "createdDateTime": "2020-11-12T19:32:33Z", - "expirationDateTime": "2020-11-13T19:32:33Z", + "jobId": "527d2109-c20d-464d-8759-2cd7aa539fb8", + "lastUpdateDateTime": "2020-11-13T22:25:30Z", + "createdDateTime": "2020-11-13T22:25:27Z", + "expirationDateTime": "2020-11-14T22:25:27Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json index 25ed38069d0b8..6e9ccb187dc1c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-06fc0eab6ca6b649858279c782ec6316-cacf3c31b6cf2647-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-68943859c460874494fda351c8687f0f-57b11544b999c742-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "99aaf08b1c844fb2d7a9025199ec97e4", "x-ms-return-client-request-id": "true" }, @@ -29,162 +35,156 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "618da9a2-65a0-4e80-a311-b11f367449ca", - "Date": "Thu, 12 Nov 2020 19:33:26 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/61222742-3128-43b7-be17-6dfe0ad49da7", + "apim-request-id": "85d3730e-a703-431e-8445-638a79a7b775", + "Date": "Fri, 13 Nov 2020 22:26:02 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9423ebba-2377-477b-918e-e28c14ac8516", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "100" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "76" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/61222742-3128-43b7-be17-6dfe0ad49da7?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9423ebba-2377-477b-918e-e28c14ac8516?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "a6eb27012d3e0231e64179d6488bf525", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7600d010-b0e3-4a9d-8305-46e6eeb23271", + "apim-request-id": "260ef1d9-3c96-4849-9d4b-e09cce49c2d4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:26 GMT", + "Date": "Fri, 13 Nov 2020 22:26:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "61222742-3128-43b7-be17-6dfe0ad49da7", - "lastUpdateDateTime": "2020-11-12T19:33:27Z", - "createdDateTime": "2020-11-12T19:33:27Z", - "expirationDateTime": "2020-11-13T19:33:27Z", + "jobId": "9423ebba-2377-477b-918e-e28c14ac8516", + "lastUpdateDateTime": "2020-11-13T22:26:02Z", + "createdDateTime": "2020-11-13T22:26:02Z", + "expirationDateTime": "2020-11-14T22:26:02Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/61222742-3128-43b7-be17-6dfe0ad49da7?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9423ebba-2377-477b-918e-e28c14ac8516?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4d12280124119b66ed27d10225884cad", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5ad622cf-9b29-4a15-924a-ffeecb777831", + "apim-request-id": "2d053032-64df-4ed4-a987-7ad85078d734", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:28 GMT", + "Date": "Fri, 13 Nov 2020 22:26:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "61222742-3128-43b7-be17-6dfe0ad49da7", - "lastUpdateDateTime": "2020-11-12T19:33:27Z", - "createdDateTime": "2020-11-12T19:33:27Z", - "expirationDateTime": "2020-11-13T19:33:27Z", + "jobId": "9423ebba-2377-477b-918e-e28c14ac8516", + "lastUpdateDateTime": "2020-11-13T22:26:02Z", + "createdDateTime": "2020-11-13T22:26:02Z", + "expirationDateTime": "2020-11-14T22:26:02Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/61222742-3128-43b7-be17-6dfe0ad49da7?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9423ebba-2377-477b-918e-e28c14ac8516?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c1281b11742f5d97bfa8b242a2dc074b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "575c9c5f-f2fa-4462-a245-2a7193264c5e", + "apim-request-id": "72803a78-dc19-4880-a028-0c7bb85f3391", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:29 GMT", + "Date": "Fri, 13 Nov 2020 22:26:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "61222742-3128-43b7-be17-6dfe0ad49da7", - "lastUpdateDateTime": "2020-11-12T19:33:27Z", - "createdDateTime": "2020-11-12T19:33:27Z", - "expirationDateTime": "2020-11-13T19:33:27Z", - "status": "notStarted", + "jobId": "9423ebba-2377-477b-918e-e28c14ac8516", + "lastUpdateDateTime": "2020-11-13T22:26:05Z", + "createdDateTime": "2020-11-13T22:26:02Z", + "expirationDateTime": "2020-11-14T22:26:02Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/61222742-3128-43b7-be17-6dfe0ad49da7?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9423ebba-2377-477b-918e-e28c14ac8516?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "714fdcb449dadcd2c04fb8165b2fdd5d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c7811f5f-c7b1-42b2-ad73-2fa9cccf16d2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:30 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": "61222742-3128-43b7-be17-6dfe0ad49da7", - "lastUpdateDateTime": "2020-11-12T19:33:27Z", - "createdDateTime": "2020-11-12T19:33:27Z", - "expirationDateTime": "2020-11-13T19:33:27Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/61222742-3128-43b7-be17-6dfe0ad49da7?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "2cc4ccf534638cf591b48e697223f811", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "9d71467e-42be-4541-95c7-9c501bbd879e", + "apim-request-id": "eb180a60-4b1e-43ca-8d99-1d149d9d0e74", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:32 GMT", + "Date": "Fri, 13 Nov 2020 22:26:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "44" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "62" }, "ResponseBody": { - "jobId": "61222742-3128-43b7-be17-6dfe0ad49da7", - "lastUpdateDateTime": "2020-11-12T19:33:31Z", - "createdDateTime": "2020-11-12T19:33:27Z", - "expirationDateTime": "2020-11-13T19:33:27Z", + "jobId": "9423ebba-2377-477b-918e-e28c14ac8516", + "lastUpdateDateTime": "2020-11-13T22:26:05Z", + "createdDateTime": "2020-11-13T22:26:02Z", + "expirationDateTime": "2020-11-14T22:26:02Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json index bf3a06bb96bd2..2a5aab6a24503 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3e35ebb423dd9743b22fa53eb2bbde6f-7486b17d52b79140-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-a4e6a5b6e25bea4d9a0653cd40415c00-4e043fc2dc3e094a-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "87697e405fe3a2c8182b48340c37e5c5", "x-ms-return-client-request-id": "true" }, @@ -29,132 +35,156 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "8b7c8db3-e01e-4773-8258-6c76c521b421", - "Date": "Thu, 12 Nov 2020 19:32:42 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0cb0f47c-ccc4-44df-8ca1-61f2ad4cc691", + "apim-request-id": "ddf73e35-8b5c-40a7-b825-26e2bf82d822", + "Date": "Fri, 13 Nov 2020 22:25:31 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/f6b10c2b-9fef-4a0d-b05b-cc37b7336727", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "91" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "87" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0cb0f47c-ccc4-44df-8ca1-61f2ad4cc691?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/f6b10c2b-9fef-4a0d-b05b-cc37b7336727?showStats=true", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f1abd77b68195cb092c7f20f1aa7cc84", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a16d6ab6-1acf-42a0-88aa-50baa9961aca", + "apim-request-id": "e076cdb8-5480-4046-95ab-5285f79662d2", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:42 GMT", + "Date": "Fri, 13 Nov 2020 22:25:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { - "jobId": "0cb0f47c-ccc4-44df-8ca1-61f2ad4cc691", - "lastUpdateDateTime": "2020-11-12T19:32:42Z", - "createdDateTime": "2020-11-12T19:32:42Z", - "expirationDateTime": "2020-11-13T19:32:42Z", + "jobId": "f6b10c2b-9fef-4a0d-b05b-cc37b7336727", + "lastUpdateDateTime": "2020-11-13T22:25:32Z", + "createdDateTime": "2020-11-13T22:25:32Z", + "expirationDateTime": "2020-11-14T22:25:32Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0cb0f47c-ccc4-44df-8ca1-61f2ad4cc691?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/f6b10c2b-9fef-4a0d-b05b-cc37b7336727?showStats=true", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "be37acebd508d7a1d3d78987b19e23cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8f225ce9-9bd2-4453-87e0-0edc9d72d8ed", + "apim-request-id": "29fcd326-0f81-4059-a13d-5386e7d14e47", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:43 GMT", + "Date": "Fri, 13 Nov 2020 22:25:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "0cb0f47c-ccc4-44df-8ca1-61f2ad4cc691", - "lastUpdateDateTime": "2020-11-12T19:32:42Z", - "createdDateTime": "2020-11-12T19:32:42Z", - "expirationDateTime": "2020-11-13T19:32:42Z", + "jobId": "f6b10c2b-9fef-4a0d-b05b-cc37b7336727", + "lastUpdateDateTime": "2020-11-13T22:25:32Z", + "createdDateTime": "2020-11-13T22:25:32Z", + "expirationDateTime": "2020-11-14T22:25:32Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0cb0f47c-ccc4-44df-8ca1-61f2ad4cc691?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/f6b10c2b-9fef-4a0d-b05b-cc37b7336727?showStats=true", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b34190e23bc3d86ecd0cf51c6cb88870", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "47d77c61-f899-4ee7-95c9-b4cefed2572f", + "apim-request-id": "07996c0a-6f07-4727-b2b0-836f110c5e12", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:45 GMT", + "Date": "Fri, 13 Nov 2020 22:25:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "0cb0f47c-ccc4-44df-8ca1-61f2ad4cc691", - "lastUpdateDateTime": "2020-11-12T19:32:42Z", - "createdDateTime": "2020-11-12T19:32:42Z", - "expirationDateTime": "2020-11-13T19:32:42Z", + "jobId": "f6b10c2b-9fef-4a0d-b05b-cc37b7336727", + "lastUpdateDateTime": "2020-11-13T22:25:32Z", + "createdDateTime": "2020-11-13T22:25:32Z", + "expirationDateTime": "2020-11-14T22:25:32Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0cb0f47c-ccc4-44df-8ca1-61f2ad4cc691?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/f6b10c2b-9fef-4a0d-b05b-cc37b7336727?showStats=true", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "6048c45f2600a6bd35d41e41de29aaf3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8b60addf-48c3-4eae-9141-ab7ee48a4c3e", + "apim-request-id": "12e9e63a-f5d9-4366-9c57-e435ead8fd72", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:46 GMT", + "Date": "Fri, 13 Nov 2020 22:25:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "45" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "283" }, "ResponseBody": { - "jobId": "0cb0f47c-ccc4-44df-8ca1-61f2ad4cc691", - "lastUpdateDateTime": "2020-11-12T19:32:46Z", - "createdDateTime": "2020-11-12T19:32:42Z", - "expirationDateTime": "2020-11-13T19:32:42Z", + "jobId": "f6b10c2b-9fef-4a0d-b05b-cc37b7336727", + "lastUpdateDateTime": "2020-11-13T22:25:35Z", + "createdDateTime": "2020-11-13T22:25:32Z", + "expirationDateTime": "2020-11-14T22:25:32Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json index cd3da20944a0f..5585d01740294 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-da7b252a9129064bb4929b02ab1494f5-35e8bee875eb6446-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-91a25dbbb0dc5d4d9ece14e8318f5a59-22a4982bd87a1342-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "da8d96a331a03c42a6c41c2d9f512b98", "x-ms-return-client-request-id": "true" }, @@ -29,132 +35,156 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "481610a1-1d3b-4847-a28a-5f2b6abc8162", - "Date": "Thu, 12 Nov 2020 19:33:32 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/50a4456c-3aac-4b98-a2dc-b5feca80c752", + "apim-request-id": "8fd9d2b4-a7f1-41be-a2c5-60062622c0bc", + "Date": "Fri, 13 Nov 2020 22:26:06 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/cd1d8f89-3b4c-4455-a9e2-4bf7c5b3b64f", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "92" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "104" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/50a4456c-3aac-4b98-a2dc-b5feca80c752?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/cd1d8f89-3b4c-4455-a9e2-4bf7c5b3b64f?showStats=true", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "a36dbbc9f92b427287ffda298bd01507", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0a312ebe-d254-48ac-9425-afd9d3cf3f3a", + "apim-request-id": "05e9afe7-6653-4b7b-8d5c-668284f511f6", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:32 GMT", + "Date": "Fri, 13 Nov 2020 22:26:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "50a4456c-3aac-4b98-a2dc-b5feca80c752", - "lastUpdateDateTime": "2020-11-12T19:33:32Z", - "createdDateTime": "2020-11-12T19:33:32Z", - "expirationDateTime": "2020-11-13T19:33:32Z", + "jobId": "cd1d8f89-3b4c-4455-a9e2-4bf7c5b3b64f", + "lastUpdateDateTime": "2020-11-13T22:26:07Z", + "createdDateTime": "2020-11-13T22:26:06Z", + "expirationDateTime": "2020-11-14T22:26:06Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/50a4456c-3aac-4b98-a2dc-b5feca80c752?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/cd1d8f89-3b4c-4455-a9e2-4bf7c5b3b64f?showStats=true", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "86c4abbaba50d8ace0d0fc3795e01d2c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "42f4bdfe-7981-4d90-b513-109a6a8a3b38", + "apim-request-id": "6587cb67-e334-42fc-b037-4fd2f352d985", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:33 GMT", + "Date": "Fri, 13 Nov 2020 22:26:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "50a4456c-3aac-4b98-a2dc-b5feca80c752", - "lastUpdateDateTime": "2020-11-12T19:33:32Z", - "createdDateTime": "2020-11-12T19:33:32Z", - "expirationDateTime": "2020-11-13T19:33:32Z", + "jobId": "cd1d8f89-3b4c-4455-a9e2-4bf7c5b3b64f", + "lastUpdateDateTime": "2020-11-13T22:26:07Z", + "createdDateTime": "2020-11-13T22:26:06Z", + "expirationDateTime": "2020-11-14T22:26:06Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/50a4456c-3aac-4b98-a2dc-b5feca80c752?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/cd1d8f89-3b4c-4455-a9e2-4bf7c5b3b64f?showStats=true", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "97afe1fd518fa965244a53a05719b0d6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c06cc414-aebe-4fdd-9d37-7edf8fb50a68", + "apim-request-id": "c6bf8e04-8753-4001-8c64-c11a164a4fa4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:35 GMT", + "Date": "Fri, 13 Nov 2020 22:26:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { - "jobId": "50a4456c-3aac-4b98-a2dc-b5feca80c752", - "lastUpdateDateTime": "2020-11-12T19:33:32Z", - "createdDateTime": "2020-11-12T19:33:32Z", - "expirationDateTime": "2020-11-13T19:33:32Z", + "jobId": "cd1d8f89-3b4c-4455-a9e2-4bf7c5b3b64f", + "lastUpdateDateTime": "2020-11-13T22:26:07Z", + "createdDateTime": "2020-11-13T22:26:06Z", + "expirationDateTime": "2020-11-14T22:26:06Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/50a4456c-3aac-4b98-a2dc-b5feca80c752?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/cd1d8f89-3b4c-4455-a9e2-4bf7c5b3b64f?showStats=true", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f47314aea48d0f480e95c35afd3bada6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "90290ad1-bd5e-463c-a53c-8e18e3a42d7a", + "apim-request-id": "37de9d71-b720-450d-925d-1d302a13d875", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:36 GMT", + "Date": "Fri, 13 Nov 2020 22:26:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "44" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "52" }, "ResponseBody": { - "jobId": "50a4456c-3aac-4b98-a2dc-b5feca80c752", - "lastUpdateDateTime": "2020-11-12T19:33:36Z", - "createdDateTime": "2020-11-12T19:33:32Z", - "expirationDateTime": "2020-11-13T19:33:32Z", + "jobId": "cd1d8f89-3b4c-4455-a9e2-4bf7c5b3b64f", + "lastUpdateDateTime": "2020-11-13T22:26:10Z", + "createdDateTime": "2020-11-13T22:26:06Z", + "expirationDateTime": "2020-11-14T22:26:06Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json index 16fcf4ac5c2f7..ec8695f9d8105 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1c4a171cc1a475478b58cc2493739a0b-b323033ddc6aa149-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-c0999da543c1154ba0aa671aaeff51e4-11a39767d8ad0246-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "0d63e53cea7530898179e7904fedbae6", "x-ms-return-client-request-id": "true" }, @@ -29,162 +35,156 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "1b9628f1-3a95-4d9f-b7c4-ed4dc458b333", - "Date": "Thu, 12 Nov 2020 19:32:46 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4324b935-1a1a-4c98-8124-3570b6664439", + "apim-request-id": "46c80511-dbda-4283-85dd-4023ef259a5e", + "Date": "Fri, 13 Nov 2020 22:25:36 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ad5eda7d-814e-4985-8fdc-104f884a0062", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "100" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "76" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4324b935-1a1a-4c98-8124-3570b6664439?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ad5eda7d-814e-4985-8fdc-104f884a0062?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "7a482533d010f661d7a330e46a9c020c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "261f8765-7a31-4f87-8b75-e2e08884c1b3", + "apim-request-id": "85ce384d-6303-47db-b532-8c8f06b9b934", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:46 GMT", + "Date": "Fri, 13 Nov 2020 22:25:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "11" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "4324b935-1a1a-4c98-8124-3570b6664439", - "lastUpdateDateTime": "2020-11-12T19:32:47Z", - "createdDateTime": "2020-11-12T19:32:46Z", - "expirationDateTime": "2020-11-13T19:32:46Z", + "jobId": "ad5eda7d-814e-4985-8fdc-104f884a0062", + "lastUpdateDateTime": "2020-11-13T22:25:36Z", + "createdDateTime": "2020-11-13T22:25:36Z", + "expirationDateTime": "2020-11-14T22:25:36Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4324b935-1a1a-4c98-8124-3570b6664439?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ad5eda7d-814e-4985-8fdc-104f884a0062?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "d4480f3cd87c0175cc930cf584ae8a9b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cfb61051-4ac4-4077-a812-5ab3c25f83eb", + "apim-request-id": "2235f473-3faf-4e59-904b-dbe2c353fb0e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:47 GMT", + "Date": "Fri, 13 Nov 2020 22:25:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { - "jobId": "4324b935-1a1a-4c98-8124-3570b6664439", - "lastUpdateDateTime": "2020-11-12T19:32:47Z", - "createdDateTime": "2020-11-12T19:32:46Z", - "expirationDateTime": "2020-11-13T19:32:46Z", + "jobId": "ad5eda7d-814e-4985-8fdc-104f884a0062", + "lastUpdateDateTime": "2020-11-13T22:25:36Z", + "createdDateTime": "2020-11-13T22:25:36Z", + "expirationDateTime": "2020-11-14T22:25:36Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4324b935-1a1a-4c98-8124-3570b6664439?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ad5eda7d-814e-4985-8fdc-104f884a0062?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "00da5d97d0326c02836c36d1baa4c6e5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dfce6b7e-df80-4614-af21-13606affc386", + "apim-request-id": "4828ef33-62e3-4ae9-b2c9-8bbd64aca6f4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:49 GMT", + "Date": "Fri, 13 Nov 2020 22:25:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "4324b935-1a1a-4c98-8124-3570b6664439", - "lastUpdateDateTime": "2020-11-12T19:32:47Z", - "createdDateTime": "2020-11-12T19:32:46Z", - "expirationDateTime": "2020-11-13T19:32:46Z", + "jobId": "ad5eda7d-814e-4985-8fdc-104f884a0062", + "lastUpdateDateTime": "2020-11-13T22:25:36Z", + "createdDateTime": "2020-11-13T22:25:36Z", + "expirationDateTime": "2020-11-14T22:25:36Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4324b935-1a1a-4c98-8124-3570b6664439?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ad5eda7d-814e-4985-8fdc-104f884a0062?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4053da77e5a55a69b046ae7dc36c7228", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4da5cc7d-6864-46d4-a360-077cf9d77d58", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:50 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": "4324b935-1a1a-4c98-8124-3570b6664439", - "lastUpdateDateTime": "2020-11-12T19:32:47Z", - "createdDateTime": "2020-11-12T19:32:46Z", - "expirationDateTime": "2020-11-13T19:32:46Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4324b935-1a1a-4c98-8124-3570b6664439?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "0d4c941902c16cda0cdb5110a2a34728", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8ff84c27-babc-47db-82b2-170bbbf5404a", + "apim-request-id": "d371de6f-7930-44e1-8822-8a466e2a17b2", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:51 GMT", + "Date": "Fri, 13 Nov 2020 22:25:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "37" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { - "jobId": "4324b935-1a1a-4c98-8124-3570b6664439", - "lastUpdateDateTime": "2020-11-12T19:32:51Z", - "createdDateTime": "2020-11-12T19:32:46Z", - "expirationDateTime": "2020-11-13T19:32:46Z", + "jobId": "ad5eda7d-814e-4985-8fdc-104f884a0062", + "lastUpdateDateTime": "2020-11-13T22:25:40Z", + "createdDateTime": "2020-11-13T22:25:36Z", + "expirationDateTime": "2020-11-14T22:25:36Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json index 3fb0ba066c704..81f58bed5ff4f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2baff2975dd50043a4bce24c7bf3fc02-1ad106df045e8a4b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-dd1dc05a46a6dd469a41143dfc7414c3-a74a764b41a85e40-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "17e898e3099143136b2e35c82964efd9", "x-ms-return-client-request-id": "true" }, @@ -29,162 +35,192 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "7b8e1e68-dc3f-4b11-a294-984d126751c3", - "Date": "Thu, 12 Nov 2020 19:33:36 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/298cb535-5d48-4c0c-a39a-cc2fccdbba67", + "apim-request-id": "dc74b6c4-22b3-4cb4-8f17-c265e9d73c55", + "Date": "Fri, 13 Nov 2020 22:26:10 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ac9ac857-e71f-4297-9394-09fb4a5fcf05", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "89" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "78" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/298cb535-5d48-4c0c-a39a-cc2fccdbba67?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ac9ac857-e71f-4297-9394-09fb4a5fcf05?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "7dd0fa2b947b788e4d51b90a9e064f06", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "de2a7f19-b8ef-4677-ad0e-2478711bf82d", + "apim-request-id": "9133ab64-245e-436d-9646-c358e6bfd462", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:36 GMT", + "Date": "Fri, 13 Nov 2020 22:26:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { - "jobId": "298cb535-5d48-4c0c-a39a-cc2fccdbba67", - "lastUpdateDateTime": "2020-11-12T19:33:37Z", - "createdDateTime": "2020-11-12T19:33:37Z", - "expirationDateTime": "2020-11-13T19:33:37Z", + "jobId": "ac9ac857-e71f-4297-9394-09fb4a5fcf05", + "lastUpdateDateTime": "2020-11-13T22:26:11Z", + "createdDateTime": "2020-11-13T22:26:11Z", + "expirationDateTime": "2020-11-14T22:26:11Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/298cb535-5d48-4c0c-a39a-cc2fccdbba67?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ac9ac857-e71f-4297-9394-09fb4a5fcf05?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ddd7cae644b1aa3bb79fb4ecc872f743", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7f196e40-db3c-48eb-b165-8ff0812461af", + "apim-request-id": "e6a4684b-52ba-4163-a2e3-72bcd6e480de", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:37 GMT", + "Date": "Fri, 13 Nov 2020 22:26:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "298cb535-5d48-4c0c-a39a-cc2fccdbba67", - "lastUpdateDateTime": "2020-11-12T19:33:37Z", - "createdDateTime": "2020-11-12T19:33:37Z", - "expirationDateTime": "2020-11-13T19:33:37Z", + "jobId": "ac9ac857-e71f-4297-9394-09fb4a5fcf05", + "lastUpdateDateTime": "2020-11-13T22:26:11Z", + "createdDateTime": "2020-11-13T22:26:11Z", + "expirationDateTime": "2020-11-14T22:26:11Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/298cb535-5d48-4c0c-a39a-cc2fccdbba67?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ac9ac857-e71f-4297-9394-09fb4a5fcf05?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "3c1db919135b4f3e0970ca3f4f09a565", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a7db3947-948e-4690-a0d3-34b22199c948", + "apim-request-id": "617fcc45-dc6e-46cb-b8a7-8957e745eff0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:39 GMT", + "Date": "Fri, 13 Nov 2020 22:26:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "298cb535-5d48-4c0c-a39a-cc2fccdbba67", - "lastUpdateDateTime": "2020-11-12T19:33:37Z", - "createdDateTime": "2020-11-12T19:33:37Z", - "expirationDateTime": "2020-11-13T19:33:37Z", + "jobId": "ac9ac857-e71f-4297-9394-09fb4a5fcf05", + "lastUpdateDateTime": "2020-11-13T22:26:11Z", + "createdDateTime": "2020-11-13T22:26:11Z", + "expirationDateTime": "2020-11-14T22:26:11Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/298cb535-5d48-4c0c-a39a-cc2fccdbba67?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ac9ac857-e71f-4297-9394-09fb4a5fcf05?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "5fe22edf128ce627be26c6dcdfa2b0da", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5962b49e-5eea-40cd-b2ab-fed07fd2c93e", + "apim-request-id": "e85fabe8-2edb-44d8-a49a-7a2446ef0620", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:40 GMT", + "Date": "Fri, 13 Nov 2020 22:26:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { - "jobId": "298cb535-5d48-4c0c-a39a-cc2fccdbba67", - "lastUpdateDateTime": "2020-11-12T19:33:37Z", - "createdDateTime": "2020-11-12T19:33:37Z", - "expirationDateTime": "2020-11-13T19:33:37Z", + "jobId": "ac9ac857-e71f-4297-9394-09fb4a5fcf05", + "lastUpdateDateTime": "2020-11-13T22:26:11Z", + "createdDateTime": "2020-11-13T22:26:11Z", + "expirationDateTime": "2020-11-14T22:26:11Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/298cb535-5d48-4c0c-a39a-cc2fccdbba67?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ac9ac857-e71f-4297-9394-09fb4a5fcf05?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e4f1765912e9d2ab8c88d3417afc5bae", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b948ac53-be15-4c69-8c37-d31f9357a528", + "apim-request-id": "8f81e49b-cecb-42ba-b02a-262c29b9f1c8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:42 GMT", + "Date": "Fri, 13 Nov 2020 22:26:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "48" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { - "jobId": "298cb535-5d48-4c0c-a39a-cc2fccdbba67", - "lastUpdateDateTime": "2020-11-12T19:33:41Z", - "createdDateTime": "2020-11-12T19:33:37Z", - "expirationDateTime": "2020-11-13T19:33:37Z", + "jobId": "ac9ac857-e71f-4297-9394-09fb4a5fcf05", + "lastUpdateDateTime": "2020-11-13T22:26:15Z", + "createdDateTime": "2020-11-13T22:26:11Z", + "expirationDateTime": "2020-11-14T22:26:11Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json index 3181f5ad06fe1..c976bd2e8d823 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "260", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f3546c4dbed2314686e3b69060abe9dc-d883555251b1db4f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-777e21b77cc25f499d68ee7260d4930f-f68b12514cbde940-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ed679d93c08fe171a9b236aaa757046a", "x-ms-return-client-request-id": "true" }, @@ -34,132 +40,84 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "799e2cd4-b7f7-4ea3-9a44-1e88795e917b", - "Date": "Thu, 12 Nov 2020 19:32:51 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8b1531e0-be0d-4a23-89ba-f8c77d6dabb4", + "apim-request-id": "df999d6a-468c-461f-aa09-a5912fdade26", + "Date": "Fri, 13 Nov 2020 22:25:40 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/222e33c0-cd10-40b7-8a34-d2d30ed251e0", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "108" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "110" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8b1531e0-be0d-4a23-89ba-f8c77d6dabb4?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/222e33c0-cd10-40b7-8a34-d2d30ed251e0?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "8ac7fae8cf64a9249598acb3531ad44c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7fc6902f-9cfd-491d-84a9-bdd3401b2fa6", + "apim-request-id": "70dceb43-654f-480a-85d4-f3a4ce83f839", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:52 GMT", + "Date": "Fri, 13 Nov 2020 22:25:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "8b1531e0-be0d-4a23-89ba-f8c77d6dabb4", - "lastUpdateDateTime": "2020-11-12T19:32:52Z", - "createdDateTime": "2020-11-12T19:32:52Z", - "expirationDateTime": "2020-11-13T19:32:52Z", + "jobId": "222e33c0-cd10-40b7-8a34-d2d30ed251e0", + "lastUpdateDateTime": "2020-11-13T22:25:40Z", + "createdDateTime": "2020-11-13T22:25:40Z", + "expirationDateTime": "2020-11-14T22:25:40Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8b1531e0-be0d-4a23-89ba-f8c77d6dabb4?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/222e33c0-cd10-40b7-8a34-d2d30ed251e0?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e1e35bcd7fe4ca895c5026b1fcf89877", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3e85ff95-882b-4078-baf0-a0b92ba352c6", + "apim-request-id": "0b6ff565-1b68-4e83-b827-0a3a2bda354f", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:53 GMT", + "Date": "Fri, 13 Nov 2020 22:25:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { - "jobId": "8b1531e0-be0d-4a23-89ba-f8c77d6dabb4", - "lastUpdateDateTime": "2020-11-12T19:32:52Z", - "createdDateTime": "2020-11-12T19:32:52Z", - "expirationDateTime": "2020-11-13T19:32:52Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8b1531e0-be0d-4a23-89ba-f8c77d6dabb4?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "42e053ff1beac39b78bd58f714be8d8f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0ed77576-47d4-4297-991d-8aa92557006c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:55 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": "8b1531e0-be0d-4a23-89ba-f8c77d6dabb4", - "lastUpdateDateTime": "2020-11-12T19:32:52Z", - "createdDateTime": "2020-11-12T19:32:52Z", - "expirationDateTime": "2020-11-13T19:32:52Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8b1531e0-be0d-4a23-89ba-f8c77d6dabb4?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "4bddeade2273698670fd2d14a873ad9c", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "a2ad1419-c048-49cb-9583-d2ac2fd0ad2e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:56 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "79" - }, - "ResponseBody": { - "jobId": "8b1531e0-be0d-4a23-89ba-f8c77d6dabb4", - "lastUpdateDateTime": "2020-11-12T19:32:56Z", - "createdDateTime": "2020-11-12T19:32:52Z", - "expirationDateTime": "2020-11-13T19:32:52Z", + "jobId": "222e33c0-cd10-40b7-8a34-d2d30ed251e0", + "lastUpdateDateTime": "2020-11-13T22:25:41Z", + "createdDateTime": "2020-11-13T22:25:40Z", + "expirationDateTime": "2020-11-14T22:25:40Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json index e2083dde4d5a6..64d3655440bf3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "260", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-82ed0b4b5a1f7b4a81f49c77c7858c2c-1c1142de58ffa54b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-f33ff4cf98e08242b9579c334b26ce65-d8216035067b524b-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4352d8dd6e2ff74a3743e20989f20949", "x-ms-return-client-request-id": "true" }, @@ -34,132 +40,192 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "2950bf65-0964-4cc0-bd9d-a1e92c91469d", - "Date": "Thu, 12 Nov 2020 19:33:42 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/132c0688-5586-4285-b76b-bc85ac253a01", + "apim-request-id": "4cde0168-8c00-412b-9cbf-9661ab99589c", + "Date": "Fri, 13 Nov 2020 22:26:16 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ac6bbf57-7ba1-4b46-ae7b-15308b47b05a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "97" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "86" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/132c0688-5586-4285-b76b-bc85ac253a01?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ac6bbf57-7ba1-4b46-ae7b-15308b47b05a?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b850713105701863d1b6a799a800b67b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4662e684-2366-4171-8eff-bbd6b89b941f", + "apim-request-id": "f0df95fb-c9b4-4d49-9d8a-7102e16720f4", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:42 GMT", + "Date": "Fri, 13 Nov 2020 22:26:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { - "jobId": "132c0688-5586-4285-b76b-bc85ac253a01", - "lastUpdateDateTime": "2020-11-12T19:33:42Z", - "createdDateTime": "2020-11-12T19:33:42Z", - "expirationDateTime": "2020-11-13T19:33:42Z", + "jobId": "ac6bbf57-7ba1-4b46-ae7b-15308b47b05a", + "lastUpdateDateTime": "2020-11-13T22:26:16Z", + "createdDateTime": "2020-11-13T22:26:16Z", + "expirationDateTime": "2020-11-14T22:26:16Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/132c0688-5586-4285-b76b-bc85ac253a01?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ac6bbf57-7ba1-4b46-ae7b-15308b47b05a?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "7b6997a8eb08a1c0115e8728d43fe710", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "93f0d4f3-68da-4983-bc3f-7e7a5e24db84", + "apim-request-id": "1dc6cf8d-386d-4e48-9b66-b1950c1a490c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:43 GMT", + "Date": "Fri, 13 Nov 2020 22:26:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "132c0688-5586-4285-b76b-bc85ac253a01", - "lastUpdateDateTime": "2020-11-12T19:33:42Z", - "createdDateTime": "2020-11-12T19:33:42Z", - "expirationDateTime": "2020-11-13T19:33:42Z", + "jobId": "ac6bbf57-7ba1-4b46-ae7b-15308b47b05a", + "lastUpdateDateTime": "2020-11-13T22:26:16Z", + "createdDateTime": "2020-11-13T22:26:16Z", + "expirationDateTime": "2020-11-14T22:26:16Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/132c0688-5586-4285-b76b-bc85ac253a01?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ac6bbf57-7ba1-4b46-ae7b-15308b47b05a?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c4c517d3dcd1d7de74397279c7b14e37", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "74cda54f-aa07-4d61-b86f-2fce454d5dd1", + "apim-request-id": "202f1ce4-39d3-41aa-bf1c-0bcae7115d1e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:45 GMT", + "Date": "Fri, 13 Nov 2020 22:26:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "132c0688-5586-4285-b76b-bc85ac253a01", - "lastUpdateDateTime": "2020-11-12T19:33:42Z", - "createdDateTime": "2020-11-12T19:33:42Z", - "expirationDateTime": "2020-11-13T19:33:42Z", + "jobId": "ac6bbf57-7ba1-4b46-ae7b-15308b47b05a", + "lastUpdateDateTime": "2020-11-13T22:26:16Z", + "createdDateTime": "2020-11-13T22:26:16Z", + "expirationDateTime": "2020-11-14T22:26:16Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/132c0688-5586-4285-b76b-bc85ac253a01?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ac6bbf57-7ba1-4b46-ae7b-15308b47b05a?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f260678d8d894640b1aea7117e3b4491", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eef0109a-24ee-4622-9a83-19b8bd76989b", + "apim-request-id": "3eca3fff-c647-4183-8c95-e1ccb2c2e150", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:46 GMT", + "Date": "Fri, 13 Nov 2020 22:26:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "49" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "132c0688-5586-4285-b76b-bc85ac253a01", - "lastUpdateDateTime": "2020-11-12T19:33:46Z", - "createdDateTime": "2020-11-12T19:33:42Z", - "expirationDateTime": "2020-11-13T19:33:42Z", + "jobId": "ac6bbf57-7ba1-4b46-ae7b-15308b47b05a", + "lastUpdateDateTime": "2020-11-13T22:26:20Z", + "createdDateTime": "2020-11-13T22:26:16Z", + "expirationDateTime": "2020-11-14T22:26:16Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ac6bbf57-7ba1-4b46-ae7b-15308b47b05a?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "90c597cef13bcca9b99106ce7947da60", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c5e94b79-b689-4040-bbc6-1e2dff816351", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 13 Nov 2020 22:26:21 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "61" + }, + "ResponseBody": { + "jobId": "ac6bbf57-7ba1-4b46-ae7b-15308b47b05a", + "lastUpdateDateTime": "2020-11-13T22:26:20Z", + "createdDateTime": "2020-11-13T22:26:16Z", + "expirationDateTime": "2020-11-14T22:26:16Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPagination.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPagination.json index 8a335055e94f8..68c7fe9487ed2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPagination.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPagination.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "1395", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6a1d208a91cf0545be6972a7bcbecc9e-93f99da097a91546-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-d8a7b243dce5154db2d1c4b419782d99-6a86856bc3c7684f-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "3d690e65097214462e3994d44b026896", "x-ms-return-client-request-id": "true" }, @@ -69,162 +75,156 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "45d2c92c-bff8-4388-a820-91e127dbcede", - "Date": "Thu, 12 Nov 2020 19:32:56 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939", + "apim-request-id": "6c1c4c74-f3ef-47bf-bad5-1f2bbadb7c5c", + "Date": "Fri, 13 Nov 2020 22:25:42 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9bcf055-62ea-4ad1-a5e2-c5daa58029d2", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "186" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "211" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939?$top=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9bcf055-62ea-4ad1-a5e2-c5daa58029d2?$top=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "60014c42eec829d6c5965295103c077f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1dc726fa-2104-4fcc-9f6a-fd0c35f3f4a3", + "apim-request-id": "41615cc7-7297-45c7-9f9f-8d3f2a922892", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:56 GMT", + "Date": "Fri, 13 Nov 2020 22:25:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939", - "lastUpdateDateTime": "2020-11-12T19:32:57Z", - "createdDateTime": "2020-11-12T19:32:56Z", - "expirationDateTime": "2020-11-13T19:32:56Z", + "jobId": "b9bcf055-62ea-4ad1-a5e2-c5daa58029d2", + "lastUpdateDateTime": "2020-11-13T22:25:42Z", + "createdDateTime": "2020-11-13T22:25:42Z", + "expirationDateTime": "2020-11-14T22:25:42Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939?$top=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9bcf055-62ea-4ad1-a5e2-c5daa58029d2?$top=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e6e71e1943fddaaba6e9191ddcfc8d38", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ed92b62a-d414-4500-9a4e-b9d06153ee1c", + "apim-request-id": "7ce68def-3c66-4c0d-9c6c-0ee8ed9dac4c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:58 GMT", + "Date": "Fri, 13 Nov 2020 22:25:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939", - "lastUpdateDateTime": "2020-11-12T19:32:57Z", - "createdDateTime": "2020-11-12T19:32:56Z", - "expirationDateTime": "2020-11-13T19:32:56Z", + "jobId": "b9bcf055-62ea-4ad1-a5e2-c5daa58029d2", + "lastUpdateDateTime": "2020-11-13T22:25:42Z", + "createdDateTime": "2020-11-13T22:25:42Z", + "expirationDateTime": "2020-11-14T22:25:42Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939?$top=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9bcf055-62ea-4ad1-a5e2-c5daa58029d2?$top=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "6bedcd03a2427620384078dbb7b003f2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3b9b2105-47e7-4cd1-aea4-d4c26e9fb609", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:32:59 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" - }, - "ResponseBody": { - "jobId": "1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939", - "lastUpdateDateTime": "2020-11-12T19:32:57Z", - "createdDateTime": "2020-11-12T19:32:56Z", - "expirationDateTime": "2020-11-13T19:32:56Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939?$top=2\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "2cba1531821bff99a027b9ded5b94dc9", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4a38cea0-fda9-4147-9773-a13723322bd2", + "apim-request-id": "be31cd5d-352c-4a10-b633-dfec263ba61c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:00 GMT", + "Date": "Fri, 13 Nov 2020 22:25:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939", - "lastUpdateDateTime": "2020-11-12T19:32:57Z", - "createdDateTime": "2020-11-12T19:32:56Z", - "expirationDateTime": "2020-11-13T19:32:56Z", - "status": "notStarted", + "jobId": "b9bcf055-62ea-4ad1-a5e2-c5daa58029d2", + "lastUpdateDateTime": "2020-11-13T22:25:45Z", + "createdDateTime": "2020-11-13T22:25:42Z", + "expirationDateTime": "2020-11-14T22:25:42Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939?$top=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9bcf055-62ea-4ad1-a5e2-c5daa58029d2?$top=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "439219099c4e763dfe70aebdcbcf23f6", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2cba1531821bff99a027b9ded5b94dc9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9bc5b332-1888-4610-b5cd-77d70acd6a39", + "apim-request-id": "20c98e76-d238-4131-ae7b-de5d8c7644b5", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:02 GMT", + "Date": "Fri, 13 Nov 2020 22:25:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "41" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { - "jobId": "1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939", - "lastUpdateDateTime": "2020-11-12T19:33:01Z", - "createdDateTime": "2020-11-12T19:32:56Z", - "expirationDateTime": "2020-11-13T19:32:56Z", + "jobId": "b9bcf055-62ea-4ad1-a5e2-c5daa58029d2", + "lastUpdateDateTime": "2020-11-13T22:25:46Z", + "createdDateTime": "2020-11-13T22:25:42Z", + "expirationDateTime": "2020-11-14T22:25:42Z", "status": "succeeded", "errors": [], "results": { @@ -473,35 +473,41 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939?$skip=2\u0026$top=2" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9bcf055-62ea-4ad1-a5e2-c5daa58029d2?$skip=2\u0026$top=2" } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939?$top=2\u0026$skip=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9bcf055-62ea-4ad1-a5e2-c5daa58029d2?$top=2\u0026$skip=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "c6eb26e66141811d33eeca1ae941a17e", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "439219099c4e763dfe70aebdcbcf23f6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f49b2302-7d6c-471c-8989-912d32e3d4a7", + "apim-request-id": "1ad32b87-90c6-4589-8d7a-8f4ad6bacd02", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:02 GMT", + "Date": "Fri, 13 Nov 2020 22:25:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "63" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { - "jobId": "1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939", - "lastUpdateDateTime": "2020-11-12T19:33:01Z", - "createdDateTime": "2020-11-12T19:32:56Z", - "expirationDateTime": "2020-11-13T19:32:56Z", + "jobId": "b9bcf055-62ea-4ad1-a5e2-c5daa58029d2", + "lastUpdateDateTime": "2020-11-13T22:25:46Z", + "createdDateTime": "2020-11-13T22:25:42Z", + "expirationDateTime": "2020-11-14T22:25:42Z", "status": "succeeded", "errors": [], "results": { @@ -750,35 +756,41 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939?$skip=4\u0026$top=2" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9bcf055-62ea-4ad1-a5e2-c5daa58029d2?$skip=4\u0026$top=2" } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939?$top=2\u0026$skip=4\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9bcf055-62ea-4ad1-a5e2-c5daa58029d2?$top=2\u0026$skip=4\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "9dd2aef2c01e95a3d8442daad3dc33d1", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "c6eb26e66141811d33eeca1ae941a17e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6aa85624-5535-44ef-84a5-403990971097", + "apim-request-id": "eefd35a4-9fa0-467d-9da7-c41186403347", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:02 GMT", + "Date": "Fri, 13 Nov 2020 22:25:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "54" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "238" }, "ResponseBody": { - "jobId": "1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939", - "lastUpdateDateTime": "2020-11-12T19:33:01Z", - "createdDateTime": "2020-11-12T19:32:56Z", - "expirationDateTime": "2020-11-13T19:32:56Z", + "jobId": "b9bcf055-62ea-4ad1-a5e2-c5daa58029d2", + "lastUpdateDateTime": "2020-11-13T22:25:46Z", + "createdDateTime": "2020-11-13T22:25:42Z", + "expirationDateTime": "2020-11-14T22:25:42Z", "status": "succeeded", "errors": [], "results": { @@ -1027,35 +1039,41 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939?$skip=6\u0026$top=2" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9bcf055-62ea-4ad1-a5e2-c5daa58029d2?$skip=6\u0026$top=2" } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939?$top=2\u0026$skip=6\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9bcf055-62ea-4ad1-a5e2-c5daa58029d2?$top=2\u0026$skip=6\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "aef8c20486cda788fc100f60d1228dbd", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9dd2aef2c01e95a3d8442daad3dc33d1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b951af49-a959-4326-be3f-e88f52a955d3", + "apim-request-id": "0cd20144-e7a3-4ce7-a5d7-59e863ad67aa", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:03 GMT", + "Date": "Fri, 13 Nov 2020 22:25:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "57" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { - "jobId": "1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939", - "lastUpdateDateTime": "2020-11-12T19:33:01Z", - "createdDateTime": "2020-11-12T19:32:56Z", - "expirationDateTime": "2020-11-13T19:32:56Z", + "jobId": "b9bcf055-62ea-4ad1-a5e2-c5daa58029d2", + "lastUpdateDateTime": "2020-11-13T22:25:46Z", + "createdDateTime": "2020-11-13T22:25:42Z", + "expirationDateTime": "2020-11-14T22:25:42Z", "status": "succeeded", "errors": [], "results": { @@ -1304,35 +1322,41 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939?$skip=8\u0026$top=2" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9bcf055-62ea-4ad1-a5e2-c5daa58029d2?$skip=8\u0026$top=2" } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939?$top=2\u0026$skip=8\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9bcf055-62ea-4ad1-a5e2-c5daa58029d2?$top=2\u0026$skip=8\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "1cca2fce85fd26d88355eefd3372ae57", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "aef8c20486cda788fc100f60d1228dbd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3be556c8-0d5d-4ec0-ba00-c8aeb7e03d73", + "apim-request-id": "28e76982-9c62-43b9-869f-80ad13720d04", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:03 GMT", + "Date": "Fri, 13 Nov 2020 22:25:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "54" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { - "jobId": "1a9d32d6-0ecc-4b8f-b2fa-f3256c8ae939", - "lastUpdateDateTime": "2020-11-12T19:33:01Z", - "createdDateTime": "2020-11-12T19:32:56Z", - "expirationDateTime": "2020-11-13T19:32:56Z", + "jobId": "b9bcf055-62ea-4ad1-a5e2-c5daa58029d2", + "lastUpdateDateTime": "2020-11-13T22:25:46Z", + "createdDateTime": "2020-11-13T22:25:42Z", + "expirationDateTime": "2020-11-14T22:25:42Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPaginationAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPaginationAsync.json index 2e4804d766076..7a8ae6d850809 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPaginationAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPaginationAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "1395", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-78886642956577458e14a119493c155f-9f8a0a1e2e140743-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-df367a51f962c745b8de535f1fe7656d-85ede990748bf44c-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f142919ab8153bebc5d9f5272ba0209d", "x-ms-return-client-request-id": "true" }, @@ -69,162 +75,192 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "a5c0a5c6-7a70-46ed-b330-8e2d24211ad0", - "Date": "Thu, 12 Nov 2020 19:33:46 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c", + "apim-request-id": "235c4603-443d-4c87-96b7-97e72fa8640d", + "Date": "Fri, 13 Nov 2020 22:26:21 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "195" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "172" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c?$top=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf?$top=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "abea9627e0cd843f9974ee5faa963225", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c82b9c58-24c7-4514-b32c-851019151eb5", + "apim-request-id": "127b234e-84d7-4c8c-a401-91aab3d6048a", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:46 GMT", + "Date": "Fri, 13 Nov 2020 22:26:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { - "jobId": "0c9e929a-2b62-4298-a6cf-ece49c5cb20c", - "lastUpdateDateTime": "2020-11-12T19:33:47Z", - "createdDateTime": "2020-11-12T19:33:46Z", - "expirationDateTime": "2020-11-13T19:33:46Z", + "jobId": "c18127bb-170f-4484-9228-fd10afd5d9bf", + "lastUpdateDateTime": "2020-11-13T22:26:22Z", + "createdDateTime": "2020-11-13T22:26:22Z", + "expirationDateTime": "2020-11-14T22:26:22Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c?$top=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf?$top=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "29e58cf2b8b376a1d7b53c264371cd5a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c8774417-a65f-4397-9c0d-2680d7108022", + "apim-request-id": "840634c4-3de0-49f0-98d5-719f9ddce96f", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:48 GMT", + "Date": "Fri, 13 Nov 2020 22:26:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "0c9e929a-2b62-4298-a6cf-ece49c5cb20c", - "lastUpdateDateTime": "2020-11-12T19:33:47Z", - "createdDateTime": "2020-11-12T19:33:46Z", - "expirationDateTime": "2020-11-13T19:33:46Z", + "jobId": "c18127bb-170f-4484-9228-fd10afd5d9bf", + "lastUpdateDateTime": "2020-11-13T22:26:22Z", + "createdDateTime": "2020-11-13T22:26:22Z", + "expirationDateTime": "2020-11-14T22:26:22Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c?$top=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf?$top=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ebc37c63c42eb92852bd57a0ca8c902e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "20e252fe-ab24-4d67-8f93-2c49170f2d16", + "apim-request-id": "811d8e84-6c78-4e02-b9b9-29c2b5cbd692", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:49 GMT", + "Date": "Fri, 13 Nov 2020 22:26:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "0c9e929a-2b62-4298-a6cf-ece49c5cb20c", - "lastUpdateDateTime": "2020-11-12T19:33:47Z", - "createdDateTime": "2020-11-12T19:33:46Z", - "expirationDateTime": "2020-11-13T19:33:46Z", + "jobId": "c18127bb-170f-4484-9228-fd10afd5d9bf", + "lastUpdateDateTime": "2020-11-13T22:26:22Z", + "createdDateTime": "2020-11-13T22:26:22Z", + "expirationDateTime": "2020-11-14T22:26:22Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c?$top=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf?$top=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9f34cfa6f7bb6feaf474d418a4184128", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "147b9d60-04d8-48fa-ad59-efc3860f17e4", + "apim-request-id": "0ec28018-6616-48d7-be61-a6d7098be44c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:50 GMT", + "Date": "Fri, 13 Nov 2020 22:26:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { - "jobId": "0c9e929a-2b62-4298-a6cf-ece49c5cb20c", - "lastUpdateDateTime": "2020-11-12T19:33:47Z", - "createdDateTime": "2020-11-12T19:33:46Z", - "expirationDateTime": "2020-11-13T19:33:46Z", - "status": "notStarted", + "jobId": "c18127bb-170f-4484-9228-fd10afd5d9bf", + "lastUpdateDateTime": "2020-11-13T22:26:25Z", + "createdDateTime": "2020-11-13T22:26:22Z", + "expirationDateTime": "2020-11-14T22:26:22Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c?$top=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf?$top=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "2efb93a746d22ef7642bd7f66001ab4b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "315934b6-743d-4e8a-8732-379e6ffdbeae", + "apim-request-id": "fb7de320-fff9-46db-b268-41d8e4c8d170", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:52 GMT", + "Date": "Fri, 13 Nov 2020 22:26:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "43" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { - "jobId": "0c9e929a-2b62-4298-a6cf-ece49c5cb20c", - "lastUpdateDateTime": "2020-11-12T19:33:51Z", - "createdDateTime": "2020-11-12T19:33:46Z", - "expirationDateTime": "2020-11-13T19:33:46Z", + "jobId": "c18127bb-170f-4484-9228-fd10afd5d9bf", + "lastUpdateDateTime": "2020-11-13T22:26:26Z", + "createdDateTime": "2020-11-13T22:26:22Z", + "expirationDateTime": "2020-11-14T22:26:22Z", "status": "succeeded", "errors": [], "results": { @@ -473,35 +509,41 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c?$skip=2\u0026$top=2" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf?$skip=2\u0026$top=2" } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c?$top=2\u0026$skip=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf?$top=2\u0026$skip=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "747f0d242e3c6c9f9253f6b9ef0f1539", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ea4c47e9-0b1d-4db6-89ae-23a9fded159c", + "apim-request-id": "4410e94f-6b94-46bb-a197-ccb44c9e7d93", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:52 GMT", + "Date": "Fri, 13 Nov 2020 22:26:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "43" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { - "jobId": "0c9e929a-2b62-4298-a6cf-ece49c5cb20c", - "lastUpdateDateTime": "2020-11-12T19:33:51Z", - "createdDateTime": "2020-11-12T19:33:46Z", - "expirationDateTime": "2020-11-13T19:33:46Z", + "jobId": "c18127bb-170f-4484-9228-fd10afd5d9bf", + "lastUpdateDateTime": "2020-11-13T22:26:26Z", + "createdDateTime": "2020-11-13T22:26:22Z", + "expirationDateTime": "2020-11-14T22:26:22Z", "status": "succeeded", "errors": [], "results": { @@ -750,35 +792,41 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c?$skip=4\u0026$top=2" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf?$skip=4\u0026$top=2" } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c?$top=2\u0026$skip=4\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf?$top=2\u0026$skip=4\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "36f82f7c62905f5bd8053a8f1ff30ef3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "608c5ecc-9f9c-43a2-9ba0-a51411b0e813", + "apim-request-id": "3a6d3b6f-b339-48c8-b6f0-34afaf1d5b1c", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:52 GMT", + "Date": "Fri, 13 Nov 2020 22:26:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "49" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "54" }, "ResponseBody": { - "jobId": "0c9e929a-2b62-4298-a6cf-ece49c5cb20c", - "lastUpdateDateTime": "2020-11-12T19:33:51Z", - "createdDateTime": "2020-11-12T19:33:46Z", - "expirationDateTime": "2020-11-13T19:33:46Z", + "jobId": "c18127bb-170f-4484-9228-fd10afd5d9bf", + "lastUpdateDateTime": "2020-11-13T22:26:26Z", + "createdDateTime": "2020-11-13T22:26:22Z", + "expirationDateTime": "2020-11-14T22:26:22Z", "status": "succeeded", "errors": [], "results": { @@ -1027,35 +1075,41 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c?$skip=6\u0026$top=2" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf?$skip=6\u0026$top=2" } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c?$top=2\u0026$skip=6\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf?$top=2\u0026$skip=6\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "96f489c8cc9879ebf48f9c7e4f3d3e54", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5a0f39eb-e721-4ec0-81e9-4e5d6712b150", + "apim-request-id": "010c2b92-3fa0-4774-a07e-66fa5aa9ebaf", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:53 GMT", + "Date": "Fri, 13 Nov 2020 22:26:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "43" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { - "jobId": "0c9e929a-2b62-4298-a6cf-ece49c5cb20c", - "lastUpdateDateTime": "2020-11-12T19:33:51Z", - "createdDateTime": "2020-11-12T19:33:46Z", - "expirationDateTime": "2020-11-13T19:33:46Z", + "jobId": "c18127bb-170f-4484-9228-fd10afd5d9bf", + "lastUpdateDateTime": "2020-11-13T22:26:26Z", + "createdDateTime": "2020-11-13T22:26:22Z", + "expirationDateTime": "2020-11-14T22:26:22Z", "status": "succeeded", "errors": [], "results": { @@ -1304,35 +1358,41 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c?$skip=8\u0026$top=2" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf?$skip=8\u0026$top=2" } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0c9e929a-2b62-4298-a6cf-ece49c5cb20c?$top=2\u0026$skip=8\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf?$top=2\u0026$skip=8\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "317a9d167508c1bab11f9b36f30f4c9e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ec1e5f16-c4dd-49a7-adb4-8e2a15e66758", + "apim-request-id": "e8aa41a6-257d-4ab6-a61c-3941230b7b63", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:53 GMT", + "Date": "Fri, 13 Nov 2020 22:26:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "61" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { - "jobId": "0c9e929a-2b62-4298-a6cf-ece49c5cb20c", - "lastUpdateDateTime": "2020-11-12T19:33:51Z", - "createdDateTime": "2020-11-12T19:33:46Z", - "expirationDateTime": "2020-11-13T19:33:46Z", + "jobId": "c18127bb-170f-4484-9228-fd10afd5d9bf", + "lastUpdateDateTime": "2020-11-13T22:26:26Z", + "createdDateTime": "2020-11-13T22:26:22Z", + "expirationDateTime": "2020-11-14T22:26:22Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json index d598cdfd9616d..a46510ce11f22 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-60fc9229f246f44fa8d2ee099e84fd98-9dc9ab2655f88c41-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-6beafb399015e54da29d60d14ae731e5-60aff4aec869e341-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "8ec3c90b7880bba55b75abdb84a19321", "x-ms-return-client-request-id": "true" }, @@ -29,102 +35,120 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "504b9704-bb7d-4d29-b4cf-29b1944eb820", - "Date": "Thu, 12 Nov 2020 19:33:04 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4016f54c-0e80-4a07-8862-6739280d251b", + "apim-request-id": "3ee8638e-ee72-4d8d-9467-7dcf4b6cfd57", + "Date": "Fri, 13 Nov 2020 22:25:48 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8b823d48-304a-43b8-aaeb-b84a6c8b779c", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "100" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "99" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4016f54c-0e80-4a07-8862-6739280d251b?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8b823d48-304a-43b8-aaeb-b84a6c8b779c?showStats=true", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "56fe48ebb003114e437c6f5c1a23295d", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8b82cd89-f5d6-4dbd-8492-b21c3aa06cd1", + "apim-request-id": "bcac2f4c-9e67-4a76-a23b-1ced3727d4e0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:04 GMT", + "Date": "Fri, 13 Nov 2020 22:25:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "4016f54c-0e80-4a07-8862-6739280d251b", - "lastUpdateDateTime": "2020-11-12T19:33:04Z", - "createdDateTime": "2020-11-12T19:33:04Z", - "expirationDateTime": "2020-11-13T19:33:04Z", + "jobId": "8b823d48-304a-43b8-aaeb-b84a6c8b779c", + "lastUpdateDateTime": "2020-11-13T22:25:48Z", + "createdDateTime": "2020-11-13T22:25:48Z", + "expirationDateTime": "2020-11-14T22:25:48Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4016f54c-0e80-4a07-8862-6739280d251b?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8b823d48-304a-43b8-aaeb-b84a6c8b779c?showStats=true", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e2f12bb5a78a8d006ec8d88886d7049c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f90a85e0-22c7-4aeb-9955-6c16e42d0306", + "apim-request-id": "18dbc16c-cc6d-42df-9718-e0c808cf5ce1", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:05 GMT", + "Date": "Fri, 13 Nov 2020 22:25:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "4016f54c-0e80-4a07-8862-6739280d251b", - "lastUpdateDateTime": "2020-11-12T19:33:04Z", - "createdDateTime": "2020-11-12T19:33:04Z", - "expirationDateTime": "2020-11-13T19:33:04Z", - "status": "notStarted", + "jobId": "8b823d48-304a-43b8-aaeb-b84a6c8b779c", + "lastUpdateDateTime": "2020-11-13T22:25:50Z", + "createdDateTime": "2020-11-13T22:25:48Z", + "expirationDateTime": "2020-11-14T22:25:48Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4016f54c-0e80-4a07-8862-6739280d251b?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8b823d48-304a-43b8-aaeb-b84a6c8b779c?showStats=true", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c7d5601dc12e5b3c7ab14a040948a137", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "75e9af66-7136-4782-bc52-29d909969ab2", + "apim-request-id": "36de23fe-6701-49ec-8bd7-e055204fc9d0", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:06 GMT", + "Date": "Fri, 13 Nov 2020 22:25:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "46" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { - "jobId": "4016f54c-0e80-4a07-8862-6739280d251b", - "lastUpdateDateTime": "2020-11-12T19:33:06Z", - "createdDateTime": "2020-11-12T19:33:04Z", - "expirationDateTime": "2020-11-13T19:33:04Z", + "jobId": "8b823d48-304a-43b8-aaeb-b84a6c8b779c", + "lastUpdateDateTime": "2020-11-13T22:25:50Z", + "createdDateTime": "2020-11-13T22:25:48Z", + "expirationDateTime": "2020-11-14T22:25:48Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json index 204da866d3b7c..6fcd75e05e4f1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-96ac9f61dc227f469f4b7668a6623644-6de69715775c9748-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-96ef7400d5207648a786b5637956a3cb-cfa2797bc4be9b49-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "cb820fc464b79dcc9212329646bf509a", "x-ms-return-client-request-id": "true" }, @@ -29,102 +35,84 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "01c65c43-5a50-401a-a461-08545dce5e24", - "Date": "Thu, 12 Nov 2020 19:33:53 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8959cdae-dd5e-44b7-adfe-0196334e4571", + "apim-request-id": "c2192386-eda9-481c-9831-60c491b00da5", + "Date": "Fri, 13 Nov 2020 22:26:28 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a182729e-b0d3-4167-952e-a656b4e8cc24", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "85" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "97" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8959cdae-dd5e-44b7-adfe-0196334e4571?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a182729e-b0d3-4167-952e-a656b4e8cc24?showStats=true", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "08d18cd76fa1ba75ad5e5758b7de00e4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8adf8de6-61cf-403a-8f88-a567b2d4c480", + "apim-request-id": "3b88c73e-66e1-47bc-a42b-8c81fe49336d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:54 GMT", + "Date": "Fri, 13 Nov 2020 22:26:28 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": "8959cdae-dd5e-44b7-adfe-0196334e4571", - "lastUpdateDateTime": "2020-11-12T19:33:54Z", - "createdDateTime": "2020-11-12T19:33:54Z", - "expirationDateTime": "2020-11-13T19:33:54Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8959cdae-dd5e-44b7-adfe-0196334e4571?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "2ac480b3f6758c758bf3f8f60a589915", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "cb840730-23a6-46b1-bc74-4e434834c9d5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:55 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "8959cdae-dd5e-44b7-adfe-0196334e4571", - "lastUpdateDateTime": "2020-11-12T19:33:54Z", - "createdDateTime": "2020-11-12T19:33:54Z", - "expirationDateTime": "2020-11-13T19:33:54Z", + "jobId": "a182729e-b0d3-4167-952e-a656b4e8cc24", + "lastUpdateDateTime": "2020-11-13T22:26:29Z", + "createdDateTime": "2020-11-13T22:26:29Z", + "expirationDateTime": "2020-11-14T22:26:29Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8959cdae-dd5e-44b7-adfe-0196334e4571?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a182729e-b0d3-4167-952e-a656b4e8cc24?showStats=true", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "4456bc1eb361546e99c71e580d73e5b3", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2ac480b3f6758c758bf3f8f60a589915", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "30012769-4c54-4178-a5e2-dfbaf20ef143", + "apim-request-id": "38d4b038-67bc-4d0d-ab39-60923d88e242", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:56 GMT", + "Date": "Fri, 13 Nov 2020 22:26:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "46" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { - "jobId": "8959cdae-dd5e-44b7-adfe-0196334e4571", - "lastUpdateDateTime": "2020-11-12T19:33:56Z", - "createdDateTime": "2020-11-12T19:33:54Z", - "expirationDateTime": "2020-11-13T19:33:54Z", + "jobId": "a182729e-b0d3-4167-952e-a656b4e8cc24", + "lastUpdateDateTime": "2020-11-13T22:26:30Z", + "createdDateTime": "2020-11-13T22:26:29Z", + "expirationDateTime": "2020-11-14T22:26:29Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json index f2255eb570bd3..9f32f6469159e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "100", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a09f553613e35541bd1473b1ad1c19f2-7926584757997548-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-b5cf606f8b2ecc49b855324adda51c64-a1ba48f132f51b43-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e51cbf87a321df02032925de5e6708b4", "x-ms-return-client-request-id": "true" }, @@ -24,162 +30,156 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "7989dac8-a685-47cb-aa24-effa5e83bb77", - "Date": "Thu, 12 Nov 2020 19:33:07 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e0e0db40-7da4-45b3-9209-058209ec1787", + "apim-request-id": "33d6782c-f11e-4a84-a648-58b5e2a9ba87", + "Date": "Fri, 13 Nov 2020 22:25:51 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/65d02f95-1202-4ea7-9645-acef12446638", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "81" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "68" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e0e0db40-7da4-45b3-9209-058209ec1787?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/65d02f95-1202-4ea7-9645-acef12446638?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "2cdb69530701f208f175aa6a97e2593b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c5a93342-be87-4794-8338-f523c18e5376", + "apim-request-id": "2ca266d5-392a-4bc1-b414-c35d80db24ee", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:07 GMT", + "Date": "Fri, 13 Nov 2020 22:25:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "e0e0db40-7da4-45b3-9209-058209ec1787", - "lastUpdateDateTime": "2020-11-12T19:33:07Z", - "createdDateTime": "2020-11-12T19:33:07Z", - "expirationDateTime": "2020-11-13T19:33:07Z", + "jobId": "65d02f95-1202-4ea7-9645-acef12446638", + "lastUpdateDateTime": "2020-11-13T22:25:51Z", + "createdDateTime": "2020-11-13T22:25:51Z", + "expirationDateTime": "2020-11-14T22:25:51Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e0e0db40-7da4-45b3-9209-058209ec1787?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/65d02f95-1202-4ea7-9645-acef12446638?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "a701cb20bb11a529608aebe12f36a48e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "391350ef-bb26-4a0d-870d-cb6fe3f802c4", + "apim-request-id": "4a1ae3b7-f1be-46fd-bbe8-588b2aad21e6", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:08 GMT", + "Date": "Fri, 13 Nov 2020 22:25:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { - "jobId": "e0e0db40-7da4-45b3-9209-058209ec1787", - "lastUpdateDateTime": "2020-11-12T19:33:07Z", - "createdDateTime": "2020-11-12T19:33:07Z", - "expirationDateTime": "2020-11-13T19:33:07Z", + "jobId": "65d02f95-1202-4ea7-9645-acef12446638", + "lastUpdateDateTime": "2020-11-13T22:25:51Z", + "createdDateTime": "2020-11-13T22:25:51Z", + "expirationDateTime": "2020-11-14T22:25:51Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e0e0db40-7da4-45b3-9209-058209ec1787?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/65d02f95-1202-4ea7-9645-acef12446638?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "03c09e10ea8d7fc1b629f4abf8984821", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1b7a1ca9-22d2-4890-9478-005162f0f25b", + "apim-request-id": "37be8227-4cc5-4b1f-8062-f12d1ea790cf", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:09 GMT", + "Date": "Fri, 13 Nov 2020 22:25:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "e0e0db40-7da4-45b3-9209-058209ec1787", - "lastUpdateDateTime": "2020-11-12T19:33:07Z", - "createdDateTime": "2020-11-12T19:33:07Z", - "expirationDateTime": "2020-11-13T19:33:07Z", + "jobId": "65d02f95-1202-4ea7-9645-acef12446638", + "lastUpdateDateTime": "2020-11-13T22:25:51Z", + "createdDateTime": "2020-11-13T22:25:51Z", + "expirationDateTime": "2020-11-14T22:25:51Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e0e0db40-7da4-45b3-9209-058209ec1787?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/65d02f95-1202-4ea7-9645-acef12446638?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "93bde9d0616598a24035cb771c26c3ba", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7ec20211-e6a4-4b8a-8930-defe7dcddd97", + "apim-request-id": "3539efac-d2e2-4e7d-a981-3b26c32f2ddc", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:11 GMT", + "Date": "Fri, 13 Nov 2020 22:25:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { - "jobId": "e0e0db40-7da4-45b3-9209-058209ec1787", - "lastUpdateDateTime": "2020-11-12T19:33:10Z", - "createdDateTime": "2020-11-12T19:33:07Z", - "expirationDateTime": "2020-11-13T19:33:07Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e0e0db40-7da4-45b3-9209-058209ec1787?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "f8591cd0562136ad0a82f0e8c77dacc7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4ba5ee36-bd33-4adb-9b56-78417d7cef88", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:12 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "29" - }, - "ResponseBody": { - "jobId": "e0e0db40-7da4-45b3-9209-058209ec1787", - "lastUpdateDateTime": "2020-11-12T19:33:11Z", - "createdDateTime": "2020-11-12T19:33:07Z", - "expirationDateTime": "2020-11-13T19:33:07Z", + "jobId": "65d02f95-1202-4ea7-9645-acef12446638", + "lastUpdateDateTime": "2020-11-13T22:25:55Z", + "createdDateTime": "2020-11-13T22:25:51Z", + "expirationDateTime": "2020-11-14T22:25:51Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json index 427080748abc1..a1e6d9f6ff2a2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "100", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d211e426e610bb458a915b0765730f9d-5d81ad9dd217af43-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-e05f488558710b4696f6f6d4fe685ea1-3c1f41b1c9c7904b-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "acdb13842ca5b9295fa84adf0c4870a8", "x-ms-return-client-request-id": "true" }, @@ -24,162 +30,84 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "a1a96905-4480-404b-8ee3-7a70035b9e39", - "Date": "Thu, 12 Nov 2020 19:33:56 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/90704182-010a-4b15-b21c-4ceba6d39d03", + "apim-request-id": "0b0a64aa-69ba-4384-9621-bf8012eee359", + "Date": "Fri, 13 Nov 2020 22:26:30 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/06897562-10b5-4795-b927-88a185b4b2a1", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "85" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "80" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/90704182-010a-4b15-b21c-4ceba6d39d03?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/06897562-10b5-4795-b927-88a185b4b2a1?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "1181511460ff1ed085a4ba80632c2cfd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f70e569d-1e89-411b-bbbe-f2ac2b4bf61b", + "apim-request-id": "7a988ac2-e8f0-4b51-b26c-2fc0fc50b9fb", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:56 GMT", + "Date": "Fri, 13 Nov 2020 22:26: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": "90704182-010a-4b15-b21c-4ceba6d39d03", - "lastUpdateDateTime": "2020-11-12T19:33:57Z", - "createdDateTime": "2020-11-12T19:33:57Z", - "expirationDateTime": "2020-11-13T19:33:57Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/90704182-010a-4b15-b21c-4ceba6d39d03?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "d0605b7dc709a544ca5e0c1b0401dc1e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "88ba59c7-459a-4309-87ed-decc9657eac0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:58 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": "90704182-010a-4b15-b21c-4ceba6d39d03", - "lastUpdateDateTime": "2020-11-12T19:33:57Z", - "createdDateTime": "2020-11-12T19:33:57Z", - "expirationDateTime": "2020-11-13T19:33:57Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/90704182-010a-4b15-b21c-4ceba6d39d03?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "b5e59345e53b24c743bd270071a85633", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "63d49ff7-b235-4807-be86-2847cb270d48", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:59 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "90704182-010a-4b15-b21c-4ceba6d39d03", - "lastUpdateDateTime": "2020-11-12T19:33:57Z", - "createdDateTime": "2020-11-12T19:33:57Z", - "expirationDateTime": "2020-11-13T19:33:57Z", + "jobId": "06897562-10b5-4795-b927-88a185b4b2a1", + "lastUpdateDateTime": "2020-11-13T22:26:31Z", + "createdDateTime": "2020-11-13T22:26:30Z", + "expirationDateTime": "2020-11-14T22:26:30Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/90704182-010a-4b15-b21c-4ceba6d39d03?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/06897562-10b5-4795-b927-88a185b4b2a1?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "b0624d7ba0e84c9f0cdc46a153b41a84", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d40e1afc-42d8-4c09-9e6a-502263017936", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:34:01 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": "90704182-010a-4b15-b21c-4ceba6d39d03", - "lastUpdateDateTime": "2020-11-12T19:34:01Z", - "createdDateTime": "2020-11-12T19:33:57Z", - "expirationDateTime": "2020-11-13T19:33:57Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/90704182-010a-4b15-b21c-4ceba6d39d03?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "d03b9cc7774697c2943b8c4ca0433322", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "d0605b7dc709a544ca5e0c1b0401dc1e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0b17a094-142f-46f0-b6c6-dba2743e38b8", + "apim-request-id": "21026108-5d39-4a71-a1f0-3b962c91f4a7", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:34:02 GMT", + "Date": "Fri, 13 Nov 2020 22:26:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "38" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" }, "ResponseBody": { - "jobId": "90704182-010a-4b15-b21c-4ceba6d39d03", - "lastUpdateDateTime": "2020-11-12T19:34:01Z", - "createdDateTime": "2020-11-12T19:33:57Z", - "expirationDateTime": "2020-11-13T19:33:57Z", + "jobId": "06897562-10b5-4795-b927-88a185b4b2a1", + "lastUpdateDateTime": "2020-11-13T22:26:31Z", + "createdDateTime": "2020-11-13T22:26:30Z", + "expirationDateTime": "2020-11-14T22:26:30Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json index 0cc63ca6b5e2e..f2241595c609b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "100", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4f24009deee94e4fb8e410fe9d2edd0e-49dbc89ac71d4545-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-61925e3e5fad20469b37a8dba3c2bb59-afd99fbda01f0d4c-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "0e649e128b084513c9c62e584c5f813b", "x-ms-return-client-request-id": "true" }, @@ -24,132 +30,84 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "6946d123-1a9e-4463-89a4-897803fc0e00", - "Date": "Thu, 12 Nov 2020 19:33:12 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6f414e51-813f-4d94-b37b-950bb913dfe5", + "apim-request-id": "d16dc05a-cf83-40be-bb54-4f264dd68ad0", + "Date": "Fri, 13 Nov 2020 22:25:55 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c3e73159-7a4b-442b-b073-b1813393a2c3", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "79" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "81" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6f414e51-813f-4d94-b37b-950bb913dfe5?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c3e73159-7a4b-442b-b073-b1813393a2c3?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "796705c1528f3adf8bba34f0a8f2bd37", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ac951ba5-13fd-4c5e-9fcd-6c84b98eb489", + "apim-request-id": "83ec68c0-3360-43b3-91f7-c99acfc97f2b", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:12 GMT", + "Date": "Fri, 13 Nov 2020 22:25:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "6f414e51-813f-4d94-b37b-950bb913dfe5", - "lastUpdateDateTime": "2020-11-12T19:33:12Z", - "createdDateTime": "2020-11-12T19:33:12Z", - "expirationDateTime": "2020-11-13T19:33:12Z", - "status": "notStarted", + "jobId": "c3e73159-7a4b-442b-b073-b1813393a2c3", + "lastUpdateDateTime": "2020-11-13T22:25:56Z", + "createdDateTime": "2020-11-13T22:25:56Z", + "expirationDateTime": "2020-11-14T22:25:56Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6f414e51-813f-4d94-b37b-950bb913dfe5?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c3e73159-7a4b-442b-b073-b1813393a2c3?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "740ea8ad2ce006c130b149d1ae645358", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "054c80cf-644a-440b-a957-6379b411e17f", + "apim-request-id": "212e9dc1-023c-47c7-9ee5-3a8dfc6b9237", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:14 GMT", + "Date": "Fri, 13 Nov 2020 22:25:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "33" }, "ResponseBody": { - "jobId": "6f414e51-813f-4d94-b37b-950bb913dfe5", - "lastUpdateDateTime": "2020-11-12T19:33:12Z", - "createdDateTime": "2020-11-12T19:33:12Z", - "expirationDateTime": "2020-11-13T19:33:12Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6f414e51-813f-4d94-b37b-950bb913dfe5?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "07effce6ecdcc068be2a834d57229cd7", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "379674d7-7f67-4c76-8fb1-c52d553006bf", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:15 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": "6f414e51-813f-4d94-b37b-950bb913dfe5", - "lastUpdateDateTime": "2020-11-12T19:33:12Z", - "createdDateTime": "2020-11-12T19:33:12Z", - "expirationDateTime": "2020-11-13T19:33:12Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6f414e51-813f-4d94-b37b-950bb913dfe5?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "a4abf7090d51955a436148dd080e8c26", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d316767c-7704-4650-870e-00d42c36e556", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:16 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "41" - }, - "ResponseBody": { - "jobId": "6f414e51-813f-4d94-b37b-950bb913dfe5", - "lastUpdateDateTime": "2020-11-12T19:33:16Z", - "createdDateTime": "2020-11-12T19:33:12Z", - "expirationDateTime": "2020-11-13T19:33:12Z", + "jobId": "c3e73159-7a4b-442b-b073-b1813393a2c3", + "lastUpdateDateTime": "2020-11-13T22:25:56Z", + "createdDateTime": "2020-11-13T22:25:56Z", + "expirationDateTime": "2020-11-14T22:25:56Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json index 24acf774d51c3..51464e6797108 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "100", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c1992284f46ad74e859893e4971d0801-2aea754b02c7a74d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-322a4d0406d857478455117495e89de3-9081d9ac04ca3b43-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ac50657e0564f29f4cf677ed0a13f18a", "x-ms-return-client-request-id": "true" }, @@ -24,132 +30,156 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "c8b5cc46-522b-462c-9720-11261c411b52", - "Date": "Thu, 12 Nov 2020 19:34:02 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/f2fb2a57-f251-47f9-b187-60e56d27adca", + "apim-request-id": "1c479b7b-ebef-49fd-8e93-a6f8eee7413b", + "Date": "Fri, 13 Nov 2020 22:26:32 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/d1c9ce7d-dc4c-4685-a549-3ce18a4540fa", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "83" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "81" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/f2fb2a57-f251-47f9-b187-60e56d27adca?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/d1c9ce7d-dc4c-4685-a549-3ce18a4540fa?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ee06e8ec9851bf144fa0b3348eac9147", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d52d582d-0069-4a00-aab3-0bd510b5b336", + "apim-request-id": "45ff0a05-3511-459f-a4b0-6e600753a91d", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:34:02 GMT", + "Date": "Fri, 13 Nov 2020 22:26:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "f2fb2a57-f251-47f9-b187-60e56d27adca", - "lastUpdateDateTime": "2020-11-12T19:34:02Z", - "createdDateTime": "2020-11-12T19:34:02Z", - "expirationDateTime": "2020-11-13T19:34:02Z", + "jobId": "d1c9ce7d-dc4c-4685-a549-3ce18a4540fa", + "lastUpdateDateTime": "2020-11-13T22:26:32Z", + "createdDateTime": "2020-11-13T22:26:32Z", + "expirationDateTime": "2020-11-14T22:26:32Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/f2fb2a57-f251-47f9-b187-60e56d27adca?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/d1c9ce7d-dc4c-4685-a549-3ce18a4540fa?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c56f00a8f06aed051c550a52700d0abf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "122cbdc3-e7d7-4403-b6a0-c3989fe9d8d2", + "apim-request-id": "e7085852-ec6b-4977-a95b-27c91099e518", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:34:03 GMT", + "Date": "Fri, 13 Nov 2020 22:26:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "f2fb2a57-f251-47f9-b187-60e56d27adca", - "lastUpdateDateTime": "2020-11-12T19:34:02Z", - "createdDateTime": "2020-11-12T19:34:02Z", - "expirationDateTime": "2020-11-13T19:34:02Z", + "jobId": "d1c9ce7d-dc4c-4685-a549-3ce18a4540fa", + "lastUpdateDateTime": "2020-11-13T22:26:32Z", + "createdDateTime": "2020-11-13T22:26:32Z", + "expirationDateTime": "2020-11-14T22:26:32Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/f2fb2a57-f251-47f9-b187-60e56d27adca?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/d1c9ce7d-dc4c-4685-a549-3ce18a4540fa?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c9cabda7fe2ee58e51915dc3526b639f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d20e7854-3f2e-47a8-92cf-89dc1beaa170", + "apim-request-id": "639cd52a-1d7a-40d4-8f8d-71bb9113ad85", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:34:05 GMT", + "Date": "Fri, 13 Nov 2020 22:26:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "f2fb2a57-f251-47f9-b187-60e56d27adca", - "lastUpdateDateTime": "2020-11-12T19:34:02Z", - "createdDateTime": "2020-11-12T19:34:02Z", - "expirationDateTime": "2020-11-13T19:34:02Z", - "status": "notStarted", + "jobId": "d1c9ce7d-dc4c-4685-a549-3ce18a4540fa", + "lastUpdateDateTime": "2020-11-13T22:26:35Z", + "createdDateTime": "2020-11-13T22:26:32Z", + "expirationDateTime": "2020-11-14T22:26:32Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/f2fb2a57-f251-47f9-b187-60e56d27adca?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/d1c9ce7d-dc4c-4685-a549-3ce18a4540fa?showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "094430652ca3fb20e319d1fb8ec14f41", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ca2e98a3-430d-4702-94ed-a4266b434691", + "apim-request-id": "56f218d7-9079-4de2-8ddd-7bf523e3ff10", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:34:06 GMT", + "Date": "Fri, 13 Nov 2020 22:26:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "37" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { - "jobId": "f2fb2a57-f251-47f9-b187-60e56d27adca", - "lastUpdateDateTime": "2020-11-12T19:34:06Z", - "createdDateTime": "2020-11-12T19:34:02Z", - "expirationDateTime": "2020-11-13T19:34:02Z", + "jobId": "d1c9ce7d-dc4c-4685-a549-3ce18a4540fa", + "lastUpdateDateTime": "2020-11-13T22:26:35Z", + "createdDateTime": "2020-11-13T22:26:32Z", + "expirationDateTime": "2020-11-14T22:26:32Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json index 0e930b94fc5d1..2847ddf222d4d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-13307dc2c6584d41a354099ec23cc609-e162c6175764b344-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-93556e6b765f6b43bc7e9305028f8fd5-8a75651e5538294b-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e5bbee521fd95f6f85d46045340cc5e0", "x-ms-return-client-request-id": "true" }, @@ -29,162 +35,120 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "4c300dc5-0d6a-4b3f-a91f-ee3423a15dad", - "Date": "Thu, 12 Nov 2020 19:33:16 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1501206f-c7af-42be-882e-f0d8fd2af684", + "apim-request-id": "a1ac3175-7da7-4fdf-bbb9-8b829f3ca90f", + "Date": "Fri, 13 Nov 2020 22:25:57 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/5d05fde8-18ae-4ab6-b3a0-b31940e1e240", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "83" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "95" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1501206f-c7af-42be-882e-f0d8fd2af684?$skip=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/5d05fde8-18ae-4ab6-b3a0-b31940e1e240?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "cb3ef020b17077b8ee6ec139b3f21813", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "362b2b88-bdac-4593-a223-9efa1f86b5dc", + "apim-request-id": "9f84129b-5ec0-408b-b4f3-92f38a95d892", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:16 GMT", + "Date": "Fri, 13 Nov 2020 22:25:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "1501206f-c7af-42be-882e-f0d8fd2af684", - "lastUpdateDateTime": "2020-11-12T19:33:17Z", - "createdDateTime": "2020-11-12T19:33:17Z", - "expirationDateTime": "2020-11-13T19:33:17Z", + "jobId": "5d05fde8-18ae-4ab6-b3a0-b31940e1e240", + "lastUpdateDateTime": "2020-11-13T22:25:58Z", + "createdDateTime": "2020-11-13T22:25:57Z", + "expirationDateTime": "2020-11-14T22:25:57Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1501206f-c7af-42be-882e-f0d8fd2af684?$skip=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/5d05fde8-18ae-4ab6-b3a0-b31940e1e240?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "beccfc644b839adbc9a8ce8f926f328c", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "920ff92b-bc6a-466c-9633-2d275f8b9f41", + "apim-request-id": "22bd0a8e-7565-4507-a0f3-b0d80935a6bf", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:18 GMT", + "Date": "Fri, 13 Nov 2020 22:25:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { - "jobId": "1501206f-c7af-42be-882e-f0d8fd2af684", - "lastUpdateDateTime": "2020-11-12T19:33:17Z", - "createdDateTime": "2020-11-12T19:33:17Z", - "expirationDateTime": "2020-11-13T19:33:17Z", + "jobId": "5d05fde8-18ae-4ab6-b3a0-b31940e1e240", + "lastUpdateDateTime": "2020-11-13T22:25:58Z", + "createdDateTime": "2020-11-13T22:25:57Z", + "expirationDateTime": "2020-11-14T22:25:57Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1501206f-c7af-42be-882e-f0d8fd2af684?$skip=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/5d05fde8-18ae-4ab6-b3a0-b31940e1e240?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "8af430b30bf8a15e3644f66a5d35ac92", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b3a10937-bbca-4a9d-a490-530809913d4b", + "apim-request-id": "05b6e8f9-8374-46be-a595-29cca56f9598", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:19 GMT", + "Date": "Fri, 13 Nov 2020 22:26:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "55" }, "ResponseBody": { - "jobId": "1501206f-c7af-42be-882e-f0d8fd2af684", - "lastUpdateDateTime": "2020-11-12T19:33:17Z", - "createdDateTime": "2020-11-12T19:33:17Z", - "expirationDateTime": "2020-11-13T19:33:17Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1501206f-c7af-42be-882e-f0d8fd2af684?$skip=1\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "38e04dbc073fd45c14a401c7e229e47f", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b71162ee-36fb-447a-b97e-82d76f0d1b26", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:20 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": "1501206f-c7af-42be-882e-f0d8fd2af684", - "lastUpdateDateTime": "2020-11-12T19:33:17Z", - "createdDateTime": "2020-11-12T19:33:17Z", - "expirationDateTime": "2020-11-13T19:33:17Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/1501206f-c7af-42be-882e-f0d8fd2af684?$skip=1\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "8286353c8dfe591a9d2a883e55713d94", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "53ce88e6-eaac-4b84-a43e-46d4ac9ce6d5", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:22 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "37" - }, - "ResponseBody": { - "jobId": "1501206f-c7af-42be-882e-f0d8fd2af684", - "lastUpdateDateTime": "2020-11-12T19:33:21Z", - "createdDateTime": "2020-11-12T19:33:17Z", - "expirationDateTime": "2020-11-13T19:33:17Z", + "jobId": "5d05fde8-18ae-4ab6-b3a0-b31940e1e240", + "lastUpdateDateTime": "2020-11-13T22:26:00Z", + "createdDateTime": "2020-11-13T22:25:57Z", + "expirationDateTime": "2020-11-14T22:25:57Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json index 256df9285ddb2..f16dded034ed1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-efb5be903ab9aa45b4c63ad08a174e48-1d45958231402447-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-286a1b21ed10be40979117fb3529892c-eaec7482eb4a5f4f-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9e757d2d83ce1123a7e23fad5376473f", "x-ms-return-client-request-id": "true" }, @@ -29,162 +35,156 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "15e4b0b2-68ff-4792-be52-7df293d360ab", - "Date": "Thu, 12 Nov 2020 19:34:06 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e0b188e1-3b64-4c31-8e3d-1a726e6166a1", + "apim-request-id": "8155aefb-73f7-498e-b5b5-76aa52dfc44c", + "Date": "Fri, 13 Nov 2020 22:26:36 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6ef33093-0c29-4108-80a1-d6eb7cb639f8", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "87" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "114" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e0b188e1-3b64-4c31-8e3d-1a726e6166a1?$skip=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6ef33093-0c29-4108-80a1-d6eb7cb639f8?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "68a7733fd31f0864ffb638781102da48", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ce47f0e5-aa68-4350-8a7d-433b718b55be", + "apim-request-id": "5abda186-aef3-44c9-b1fd-a106d0a3d105", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:34:06 GMT", + "Date": "Fri, 13 Nov 2020 22:26:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "e0b188e1-3b64-4c31-8e3d-1a726e6166a1", - "lastUpdateDateTime": "2020-11-12T19:34:07Z", - "createdDateTime": "2020-11-12T19:34:07Z", - "expirationDateTime": "2020-11-13T19:34:07Z", + "jobId": "6ef33093-0c29-4108-80a1-d6eb7cb639f8", + "lastUpdateDateTime": "2020-11-13T22:26:37Z", + "createdDateTime": "2020-11-13T22:26:36Z", + "expirationDateTime": "2020-11-14T22:26:36Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e0b188e1-3b64-4c31-8e3d-1a726e6166a1?$skip=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6ef33093-0c29-4108-80a1-d6eb7cb639f8?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "39eac04aaed6996e7ea6b9f62c4a8897", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "94b09868-4d4a-4615-abcb-c19842138dc5", + "apim-request-id": "aa01e2b2-6eab-4988-995e-cc8c580abfb2", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:34:08 GMT", + "Date": "Fri, 13 Nov 2020 22:26:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "17" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "e0b188e1-3b64-4c31-8e3d-1a726e6166a1", - "lastUpdateDateTime": "2020-11-12T19:34:07Z", - "createdDateTime": "2020-11-12T19:34:07Z", - "expirationDateTime": "2020-11-13T19:34:07Z", + "jobId": "6ef33093-0c29-4108-80a1-d6eb7cb639f8", + "lastUpdateDateTime": "2020-11-13T22:26:37Z", + "createdDateTime": "2020-11-13T22:26:36Z", + "expirationDateTime": "2020-11-14T22:26:36Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e0b188e1-3b64-4c31-8e3d-1a726e6166a1?$skip=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6ef33093-0c29-4108-80a1-d6eb7cb639f8?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "eaa1ba814c8b59b1196c9f174baaffa5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "981d4b80-af7e-40d6-9cb6-6d4e13a015dd", + "apim-request-id": "e9334be3-7da4-40bc-9b96-cc15436ad824", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:34:09 GMT", + "Date": "Fri, 13 Nov 2020 22:26:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "e0b188e1-3b64-4c31-8e3d-1a726e6166a1", - "lastUpdateDateTime": "2020-11-12T19:34:07Z", - "createdDateTime": "2020-11-12T19:34:07Z", - "expirationDateTime": "2020-11-13T19:34:07Z", + "jobId": "6ef33093-0c29-4108-80a1-d6eb7cb639f8", + "lastUpdateDateTime": "2020-11-13T22:26:37Z", + "createdDateTime": "2020-11-13T22:26:36Z", + "expirationDateTime": "2020-11-14T22:26:36Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e0b188e1-3b64-4c31-8e3d-1a726e6166a1?$skip=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6ef33093-0c29-4108-80a1-d6eb7cb639f8?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9263f6070e8c9068040de978196ddcb4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7e247201-d998-47bc-9af8-32be8dde6f8e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:34:11 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": "e0b188e1-3b64-4c31-8e3d-1a726e6166a1", - "lastUpdateDateTime": "2020-11-12T19:34:07Z", - "createdDateTime": "2020-11-12T19:34:07Z", - "expirationDateTime": "2020-11-13T19:34:07Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e0b188e1-3b64-4c31-8e3d-1a726e6166a1?$skip=1\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "57f7a12eef60fdbd0f901f6a0f564dd4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e7792bc3-a91a-4f6e-92b1-abbf11ee6f73", + "apim-request-id": "b61531b5-14e8-4297-8791-c29776c8e349", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:34:12 GMT", + "Date": "Fri, 13 Nov 2020 22:26:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "52" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { - "jobId": "e0b188e1-3b64-4c31-8e3d-1a726e6166a1", - "lastUpdateDateTime": "2020-11-12T19:34:11Z", - "createdDateTime": "2020-11-12T19:34:07Z", - "expirationDateTime": "2020-11-13T19:34:07Z", + "jobId": "6ef33093-0c29-4108-80a1-d6eb7cb639f8", + "lastUpdateDateTime": "2020-11-13T22:26:40Z", + "createdDateTime": "2020-11-13T22:26:36Z", + "expirationDateTime": "2020-11-14T22:26:36Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json index 8d92aec0ca023..e8fe7cb2d30dd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-37ca53d49f90f040892f209d7efc6758-c98981f4fb4be341-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-a5156f048114324bb094a8bb03988f94-3c0bc83c82512d4d-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "8efbb01e5acc858dcd1ff153470e4093", "x-ms-return-client-request-id": "true" }, @@ -29,132 +35,84 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "c23d593d-96a2-4ac6-9418-7e1138de2d74", - "Date": "Thu, 12 Nov 2020 19:33:22 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c94034c0-b848-495c-b2b4-f7e4b93f8b13", + "apim-request-id": "49bcc668-6f9c-4fc1-9399-4ea66c78aa85", + "Date": "Fri, 13 Nov 2020 22:26:00 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/414d2143-1876-4eed-9e30-c9408eca56ca", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "124" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "76" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c94034c0-b848-495c-b2b4-f7e4b93f8b13?$top=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/414d2143-1876-4eed-9e30-c9408eca56ca?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "2660bb690f1e14745ff6a5df3888e782", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a9176164-fe52-4704-bc0f-d3873a38b60e", + "apim-request-id": "a477527b-7050-4b16-82a9-95745326a655", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:22 GMT", + "Date": "Fri, 13 Nov 2020 22:26:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "c94034c0-b848-495c-b2b4-f7e4b93f8b13", - "lastUpdateDateTime": "2020-11-12T19:33:22Z", - "createdDateTime": "2020-11-12T19:33:22Z", - "expirationDateTime": "2020-11-13T19:33:22Z", + "jobId": "414d2143-1876-4eed-9e30-c9408eca56ca", + "lastUpdateDateTime": "2020-11-13T22:26:01Z", + "createdDateTime": "2020-11-13T22:26:00Z", + "expirationDateTime": "2020-11-14T22:26:00Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c94034c0-b848-495c-b2b4-f7e4b93f8b13?$top=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/414d2143-1876-4eed-9e30-c9408eca56ca?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4c0a13cbdad64cf8d7c97184a7f98e05", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c4f71182-c730-4fec-bf90-a81069cf9849", + "apim-request-id": "7e368968-5b5a-4440-a620-3a1c403d01a8", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:24 GMT", + "Date": "Fri, 13 Nov 2020 22:26:02 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": "c94034c0-b848-495c-b2b4-f7e4b93f8b13", - "lastUpdateDateTime": "2020-11-12T19:33:22Z", - "createdDateTime": "2020-11-12T19:33:22Z", - "expirationDateTime": "2020-11-13T19:33:22Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c94034c0-b848-495c-b2b4-f7e4b93f8b13?$top=1\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "89adbdfd593e0f483ce62ed6b5ad4d44", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2a57845b-3585-4332-9457-eee761b6f992", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:25 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": "c94034c0-b848-495c-b2b4-f7e4b93f8b13", - "lastUpdateDateTime": "2020-11-12T19:33:22Z", - "createdDateTime": "2020-11-12T19:33:22Z", - "expirationDateTime": "2020-11-13T19:33:22Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c94034c0-b848-495c-b2b4-f7e4b93f8b13?$top=1\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "34876f37f3038fbdc3134f559df06d66", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c145483f-5b7d-42cd-9fd3-90f0942b21fe", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:33:26 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "36" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { - "jobId": "c94034c0-b848-495c-b2b4-f7e4b93f8b13", - "lastUpdateDateTime": "2020-11-12T19:33:26Z", - "createdDateTime": "2020-11-12T19:33:22Z", - "expirationDateTime": "2020-11-13T19:33:22Z", + "jobId": "414d2143-1876-4eed-9e30-c9408eca56ca", + "lastUpdateDateTime": "2020-11-13T22:26:01Z", + "createdDateTime": "2020-11-13T22:26:00Z", + "expirationDateTime": "2020-11-14T22:26:00Z", "status": "succeeded", "errors": [], "results": { @@ -329,7 +287,7 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c94034c0-b848-495c-b2b4-f7e4b93f8b13?$skip=1\u0026$top=1" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/414d2143-1876-4eed-9e30-c9408eca56ca?$skip=1\u0026$top=1" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json index 988fff25cb753..dff56f4562d90 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-419b4c0906a6064ab063d4db0f3cc2dd-a73fa58c764f8843-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-7164dffc4976e94e9f901957b836af4e-61c742828b4af448-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "724372daad48480e76510121b5839b2e", "x-ms-return-client-request-id": "true" }, @@ -29,132 +35,84 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "6a82cd15-e8f8-403c-8ce3-eed6e6629638", - "Date": "Thu, 12 Nov 2020 19:34:12 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4a1157b9-2367-4883-aeba-4fac4c759100", + "apim-request-id": "fbbbed84-c0a8-4a5c-806c-aa2bd77cb800", + "Date": "Fri, 13 Nov 2020 22:26:40 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0e3e0520-c84f-4633-8ebe-4b057c4d0b42", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "96" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "85" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4a1157b9-2367-4883-aeba-4fac4c759100?$top=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0e3e0520-c84f-4633-8ebe-4b057c4d0b42?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "934d972f1ac830d592026d8c2beeac11", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b358cdb5-c0db-4847-8840-8dc84ab0ca3c", + "apim-request-id": "208102e9-6bae-418f-9d9f-564b9a9c4bcb", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:34:12 GMT", + "Date": "Fri, 13 Nov 2020 22:26:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { - "jobId": "4a1157b9-2367-4883-aeba-4fac4c759100", - "lastUpdateDateTime": "2020-11-12T19:34:12Z", - "createdDateTime": "2020-11-12T19:34:12Z", - "expirationDateTime": "2020-11-13T19:34:12Z", - "status": "notStarted", + "jobId": "0e3e0520-c84f-4633-8ebe-4b057c4d0b42", + "lastUpdateDateTime": "2020-11-13T22:26:41Z", + "createdDateTime": "2020-11-13T22:26:41Z", + "expirationDateTime": "2020-11-14T22:26:41Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4a1157b9-2367-4883-aeba-4fac4c759100?$top=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0e3e0520-c84f-4633-8ebe-4b057c4d0b42?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "ceb201b6e72887166038d111abceeca7", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3ed8baa1-9dca-40af-8a0c-6231dbc8fcfd", + "apim-request-id": "0ec9a35e-172d-4f20-9bb6-ffd735f56c63", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:34:13 GMT", + "Date": "Fri, 13 Nov 2020 22:26:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "8" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { - "jobId": "4a1157b9-2367-4883-aeba-4fac4c759100", - "lastUpdateDateTime": "2020-11-12T19:34:12Z", - "createdDateTime": "2020-11-12T19:34:12Z", - "expirationDateTime": "2020-11-13T19:34:12Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4a1157b9-2367-4883-aeba-4fac4c759100?$top=1\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "9e71f8d80ef6c0f19d12df4640821c87", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c913834a-9653-430a-95e2-d21dce91edbc", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:34:15 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": "4a1157b9-2367-4883-aeba-4fac4c759100", - "lastUpdateDateTime": "2020-11-12T19:34:12Z", - "createdDateTime": "2020-11-12T19:34:12Z", - "expirationDateTime": "2020-11-13T19:34:12Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4a1157b9-2367-4883-aeba-4fac4c759100?$top=1\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json, text/json", - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", - "x-ms-client-request-id": "b36aefa4ccd1470681c5338f48c485c4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "2de350f5-2e15-4af9-815b-51fd058be8b1", - "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:34:16 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "35" - }, - "ResponseBody": { - "jobId": "4a1157b9-2367-4883-aeba-4fac4c759100", - "lastUpdateDateTime": "2020-11-12T19:34:16Z", - "createdDateTime": "2020-11-12T19:34:12Z", - "expirationDateTime": "2020-11-13T19:34:12Z", + "jobId": "0e3e0520-c84f-4633-8ebe-4b057c4d0b42", + "lastUpdateDateTime": "2020-11-13T22:26:41Z", + "createdDateTime": "2020-11-13T22:26:41Z", + "expirationDateTime": "2020-11-14T22:26:41Z", "status": "succeeded", "errors": [], "results": { @@ -329,7 +287,7 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4a1157b9-2367-4883-aeba-4fac4c759100?$skip=1\u0026$top=1" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0e3e0520-c84f-4633-8ebe-4b057c4d0b42?$skip=1\u0026$top=1" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json index 0a6bb1180fbcb..ea2e6729b4aee 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3ca4650a88246a43863bad73734f6c31-fc4818d5ba4eae4d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-9251e454c913924c9876306d78b9782b-3f58574e73b6604b-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "d727f8b3ab5caeec2a15d6a3b1743ade", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0174453c-9c80-46c9-be77-885fdb4bb8f0", + "apim-request-id": "3f967fdd-5c3e-48f3-ae57-d8ced4db9e21", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:34:16 GMT", + "Date": "Fri, 13 Nov 2020 22:26:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "21" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "30" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json index a68fd4e32d3b2..b6d244b2b903d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e5f70eb47348ba48ae4c89806f75b666-33f29f19031a2944-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-404a892e73f4b04da09d1a3c2ce6999f-7f6b587fa1ccab44-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "476534efbdc7cda5ab406b046713b5b6", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "87cba5a7-a04b-4caa-9259-10980e103a77", + "apim-request-id": "ffc6d6b2-8189-4d34-94f1-86237f413a31", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:34:20 GMT", + "Date": "Fri, 13 Nov 2020 22:26:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "18" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json index 7367cc695f020..5f33626b5a841 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d77cf1ff415e3149bbbac4ad4999083d-e644fcc11558ae40-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-176e677c94483b4c8b58ddcfb7e70ba4-173b123b1e184c4a-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "297e980ed9e8189820ebd45ff129bc5c", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d277cb16-23c2-4489-869d-c0b49df0d0df", + "apim-request-id": "015402e4-589b-4223-b814-cc8ec64ad1cf", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:34:16 GMT", + "Date": "Fri, 13 Nov 2020 22:26:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "22" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json index 99b42c3fb1b5e..829f876f624bd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-aff2879fbf517e4280c7b666c821b461-983e0a03d3b69d4f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-ca98df7c715a7848a51574d1d83e887d-9811d0948fcbc24a-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "efbfe45b25f6d2a2775e1edd2fe4e7aa", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "007e1ca6-febe-4516-a5e1-dc9e3f15d0f5", + "apim-request-id": "69e38fd8-166a-468c-8865-6441b2f8aa41", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:34:21 GMT", + "Date": "Fri, 13 Nov 2020 22:26:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "21" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json index ea3db61c73649..60de194c92fd7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0aedc0e18b83b042b11ddbab620c7ac7-87ec6e7949c80b4e-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-78a2f52fccac9944af81278b397d7657-c0a07b62b1fa2747-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "70aff255bc0a587f23734ec6facb2924", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "452fc603-4c3b-4cce-bb40-e1cc47c18af5", + "apim-request-id": "35ecab54-02a0-4dd6-8bfc-e1326e06b9d5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:34:17 GMT", + "Date": "Fri, 13 Nov 2020 22:26:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "25" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json index e98c35ac50199..ebea5615bc539 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5c445a51a8f7424786ef205ada6ac8b0-8fd88c9dabe2b046-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-279dc0d0e8da354c97b01ff9a7482fd4-c45c9ce6ef3bf84c-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b6c8d0c26960e1039b6b5addff48c5fe", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e0701df6-905b-4565-a8be-d3f13819743a", + "apim-request-id": "60254a2a-01b3-410a-860d-d47536837bff", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:34:21 GMT", + "Date": "Fri, 13 Nov 2020 22:26:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "24" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json index d158b009fd3bb..a7ec98f1b32ec 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "229", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c0ec2f5685618d42992a9918de82ab1b-2add9e623a927643-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-6a095851f1c1504a8a0b1edfa78d981f-d6a39f0b0b251b43-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "1199dc8afc6a0ac5f0743171c35d6934", "x-ms-return-client-request-id": "true" }, @@ -34,13 +40,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "578f0768-876e-4ca9-9d42-9d4fe3b848e0", + "apim-request-id": "1403893b-aec9-4c28-a248-500986b6d49b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:34:17 GMT", + "Date": "Fri, 13 Nov 2020 22:26:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "22" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json index 5fa00550a5a45..e58aa078a8ae4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "229", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-01ed7bc253dc8b4e872ea5824aa51162-a8274a639142344a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-bcd62920bd22bb4d8b879a0b68604d23-1522f1a3ab2b3740-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4f030e46456aaab2ab975c8325cfab86", "x-ms-return-client-request-id": "true" }, @@ -34,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "db9d6740-2305-47d2-b301-0b17a1562e07", + "apim-request-id": "9cb5059a-5359-464f-b35d-08e9f71d9606", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:34:21 GMT", + "Date": "Fri, 13 Nov 2020 22:26:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "24" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "20" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json index 38875341e1183..ac287c107cf1c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "561", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f213df335e01084fa72c26f7ec573cbf-c1a4614262d2e345-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-d5840aa7899a09489cd16c42adc017f5-c6b99dd32913714d-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "192c3c1f91647770ee90b0e32a189a79", "x-ms-return-client-request-id": "true" }, @@ -49,12 +55,12 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "ac043562-2f64-4fcf-a167-515fb7a84a5d", + "apim-request-id": "b2bcca10-a699-4a4a-ac74-779e5592348e", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:34:17 GMT", + "Date": "Fri, 13 Nov 2020 22:26:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "5" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json index fdb595f7a1568..a571d72f8d87f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "561", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e91f4de9b17461409f485cafc8d40fbe-1c20a63a1eee184a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-b3b3bce0c730704199267834a4cf7de9-2cccaeccf4fafc47-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "aa01d6b77b2b2d76ec0e72d5ad5d4024", "x-ms-return-client-request-id": "true" }, @@ -49,13 +55,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "2bcffdc4-e048-4482-960a-91851aa6250b", + "apim-request-id": "0953da0a-5bcb-428d-aa23-0b07b929a2a9", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:34:22 GMT", + "Date": "Fri, 13 Nov 2020 22:26:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "4" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json index 4716318c30aa9..4b473f8d258e4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b6fbbe67333ea54d8a343f13b8d06ee8-956fedfecd71214d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-9f34928fa6214f4fa5366736badda81b-2963207615a99841-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "39e775856c33e5040de74ed9f57d5d06", "x-ms-return-client-request-id": "true" }, @@ -24,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "47f83492-dfe2-4b68-baa1-521da44b52ee", + "apim-request-id": "9bf4b1e3-c5c6-4989-84fd-043fcceb73d7", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:34:18 GMT", + "Date": "Fri, 13 Nov 2020 22:26:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "5" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json index 06740b49eb9de..7d0b63ac5172d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b03c7c6294e8564bb935ec3c3d727bbb-470bfeae20b13749-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-0fca1c01870be2439d7a32f750431649-76c21023fc8cd345-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9f2af246abde141d1e5ee3f98d0120cc", "x-ms-return-client-request-id": "true" }, @@ -24,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "6422ff02-249c-4cec-8c69-d9334a375466", + "apim-request-id": "5ca336b2-97a5-44b6-8a45-a753bebc3cda", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:34:22 GMT", + "Date": "Fri, 13 Nov 2020 22:26:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "9" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json index 6d60c04793877..ce8f2ccbfd7fa 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-716e194a612a9949b95d142c70a2b3f4-1fd86dc988c15f4d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-53f3ee4da2c6a9468e3ec56f28ca2557-cef5ef4b02bf6348-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "73d297ac9bb0c1f746fd7bde1da9241c", "x-ms-return-client-request-id": "true" }, @@ -24,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3ae86983-d51f-4e7f-8d32-04a96698b59e", + "apim-request-id": "e6813235-efe0-48e3-a17c-ee49cd549b90", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:34:18 GMT", + "Date": "Fri, 13 Nov 2020 22:26:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "2" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json index 1b9b2ae72a219..3f232801fb5fb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bbc388a93a02834795335507eaaa960e-6bda62acfd75fb4b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-03d3607b9592b64c94aef471806e52c0-d1dd3d23fdf2f749-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "eb53c4f0f4de762a1a8dd9e931cc3cf8", "x-ms-return-client-request-id": "true" }, @@ -24,12 +30,12 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "01eef409-7541-483a-ab99-4f4e123fdb03", + "apim-request-id": "d6d9eb80-b995-4a4e-bbe7-aa0df12fc3a9", "Content-Type": "application/json; charset=utf-8", - "Date": "Thu, 12 Nov 2020 19:34:22 GMT", + "Date": "Fri, 13 Nov 2020 22:26:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "2" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json index aa9ad76d24cdc..3ae9e696afe6c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b19923a1162a9349bdcfe07693c223e3-7d0c465cc8ce5640-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-b24c6dd8ae451548ac0aa5e857473a62-5052a4097035b242-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "07178a1f00e9eae492911a1486f7f75f", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "493545fe-9335-42ab-b538-3928bc04b515", + "apim-request-id": "42bdee03-424b-4d49-8cba-35cacf23dd6f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:34:18 GMT", + "Date": "Fri, 13 Nov 2020 22:26:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "21" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json index 3e688b1e50e2c..047d3f2e4e7dd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?showStats=true\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dfd45d7db53e5e49891b34d5b0aa6b52-6c911dec880fc041-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-e7dfd931a2bddd45b805407aa8cb8b2b-d47f2f5b429c6042-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c81f2c7c8424b466b144609b6251448a", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c0310da9-9829-4b4f-a272-832c44684fbf", + "apim-request-id": "a67fcfbf-c849-4a8e-baaa-494c84fad881", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:34:23 GMT", + "Date": "Fri, 13 Nov 2020 22:26:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "20" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json index 370bd61fc9b3c..8c24a1a6a1429 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c268df962bb70047b22b71a7e83fc348-7d6e967e142b334e-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-f3d7391264ed7745bc307434abb3b20b-3cbca98cd84cfc44-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "5dbd0e4d74f1991eb1c26555a87606e8", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "462246be-26e3-434c-8385-203fdf909391", + "apim-request-id": "a304e406-5d39-48f2-a79d-06a984726083", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:34:20 GMT", + "Date": "Fri, 13 Nov 2020 22:26:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "17" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json index 2a962787f69a0..4ad53a2bcbfd7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-91f1c17498912d4e9151e1f4f2f12409-bdeac1097f11e04b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-bdef1ceb0953684f8a72c6354fda1964-6d7f89154c2a0f48-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "552924120f9751fcf8de062c168ba5ca", "x-ms-return-client-request-id": "true" }, @@ -24,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b35d4608-9980-4f80-8e42-47dbece3a5b7", + "apim-request-id": "4d4428f0-1d67-48bb-a9ed-402c1f0bb6e8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:34:23 GMT", + "Date": "Fri, 13 Nov 2020 22:26:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "23" }, "ResponseBody": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json index 82019f441403c..174836f25a4b9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3d4bd48307511c419a4984c282c8bdca-e94d446f1061fc4a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-c869b17595e37a40b4d3633001db7c2c-64230fab70ae874e-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "934878dc21c8a0a984e7d2d9ad60c773", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3157fda1-ec75-43eb-8dd1-c159005820f8", + "apim-request-id": "31a80666-3755-4d44-93f9-54a05e299e30", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:34:20 GMT", + "Date": "Fri, 13 Nov 2020 22:26:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "15" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json index b35870fea900f..8538d6cd8dbcb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/linking?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3ae10523ec69d949852c72cdb5bfb2e7-f297f5b116b80842-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-7fc93bfd5087594586a161c4916139f8-83393a7443ff6840-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "25dfcc445911727a9003f8f77dc4c2e5", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5100f861-1edb-4b5a-8209-e2c1d6df24f8", + "apim-request-id": "fd847ade-6755-4d39-a337-a4776f1d31a0", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:34:23 GMT", + "Date": "Fri, 13 Nov 2020 22:26:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "16" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json index 7b7ce37b66e84..dd14a99a6f26e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-65e00f8f66a96c46b14c2cf6169bb284-e2f8a03d9b4bbd4b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-d3d1c535b4ebd9439e1d2ce5e5f898d2-1cd96c10d1215f4c-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "c173c94341dba618c4f393086e026774", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a24e58e6-78dc-4c20-9156-75e6c21559da", + "apim-request-id": "3514bce1-a0ae-480c-a0cb-c5f25356ea55", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:34:24 GMT", + "Date": "Fri, 13 Nov 2020 22:26:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "103" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "102" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json index 185880522658c..a9a24446037e8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f93ec77e1da4b04ebbd1c0b306556dd7-66525f9b7ef33645-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-b30c454845cd4047a25d0906cab01aca-f7eee4831be70c4e-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "2cf317139685f87e3e57184c7620cca1", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "820daaa0-b7d7-4b56-a4e2-1bafd7d8d0d9", + "apim-request-id": "1b972f8d-db9c-4bdf-901f-d7028d65634a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:34:28 GMT", + "Date": "Fri, 13 Nov 2020 22:26:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "153" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "186" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json index 4b8b3ebb1c061..9c0949295bc01 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e437c0373c740b47a620e5fe347ff371-68dc981cdf0cd448-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-6ff412000b88e249ab4bb2ad0bfece7e-bec2728a73e6044c-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "eecc011d319477b6a3836264a1185b02", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cf058223-6549-4bcf-ac71-a08e3e8531fb", + "apim-request-id": "79196188-6afa-4f50-8895-c32cf38fa510", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:34:24 GMT", + "Date": "Fri, 13 Nov 2020 22:26:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "161" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "130" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json index 5f319e528dd89..b50936c2916e5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a3c2a51992444849a51161cd6f8b3269-a45f248f9b75c743-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-7a042cb32f3dc949b21e4aa1060bb424-103f38e708b14c44-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "8ceec0e33c8ae486f712d7bec0815450", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "922c9fc2-0d93-4b3c-a192-fd99101a739a", + "apim-request-id": "1d064c84-79c6-40b6-ade4-5974dbcfc2c2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:34:28 GMT", + "Date": "Fri, 13 Nov 2020 22:26:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "106" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "90" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json index e3080fef0f602..0606695270050 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-09344bb1682e5d4ea4d9d5fd2fc70a6b-85fcdeaccf742b4d-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-376ef55ea3046a4cab154448fbe11781-b2f4069b2811a445-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "f53bbc38a2b6814e4c65b541758c5e0a", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2d9765f7-3184-44ac-80bf-17f997e52fb7", + "apim-request-id": "b335ad1d-e7c6-4ef1-afd0-941dd37667a9", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:34:24 GMT", + "Date": "Fri, 13 Nov 2020 22:26:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "119" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "120" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json index ddb0cbf8d07a9..74d4aea5a8440 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-cb6f0afd66b94049a0aa8fc05b11b54f-02169cd7c0e48942-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-a5f12f119ee17043a3d15db1a197d22e-9e8b6666a9277e4b-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "79f5f1883ef14a0947e802df013a4e11", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "24d5d1b7-3610-4641-bfa9-ac0803ee07e5", + "apim-request-id": "1c7e8525-856f-4662-91ec-2fd46721ff34", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:34:28 GMT", + "Date": "Fri, 13 Nov 2020 22:26:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "146" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "135" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json index 3cdc75d3c9f47..6e4c7df7d3317 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "331", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-41fdd24c227fb147bf27a13cce5971bf-0dc1e7a97c5d804e-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-328220028873804bb024e78c4ab05cc9-5385224fb7577549-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e382b2e96bf3675f4d7d7960b8b32916", "x-ms-return-client-request-id": "true" }, @@ -34,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6d057572-1c47-4dfe-a233-d21a375ff77b", + "apim-request-id": "c9fefe88-97c4-472e-9509-535b5bd55a5a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:34:25 GMT", + "Date": "Fri, 13 Nov 2020 22:26:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "129" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "130" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json index 6f1f5ea4ae445..dfcf1f2ead790 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "331", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-90a3bbdd54c92845893c3ecebaaa4479-30773a13bc014740-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-4bee46afccb11f49a5370c66fe159f8a-41694500c10e9a42-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "e218864f9605e01c86941869a0be6841", "x-ms-return-client-request-id": "true" }, @@ -34,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cd90a0bf-cfc4-42da-83c7-7b4651cc8a52", + "apim-request-id": "188e6f02-231b-4295-8506-b8e351e53650", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:34:29 GMT", + "Date": "Fri, 13 Nov 2020 22:26:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "136" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "124" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json index 1c52a78e45fdc..f4cbbb5376fe4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-26492620ec0f3942a8bba9fa8993b596-c54b091624a8104c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-4536764c1fcb2144aad25a56b5ed3484-ed22bf394588fc44-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9d7c7445e676a32cbc4854ae746d53b1", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0a95687c-e416-4faa-b45a-142856f298cd", + "apim-request-id": "72cab6dc-26f0-4f2d-8477-790245f36d1c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:34:25 GMT", + "Date": "Fri, 13 Nov 2020 22:26:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "117" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "94" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json index 4925d46581afd..3343d02c27d4c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=true\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f11ee77bc5ff364cb629e70d84d1194b-7a0c6fc78197814c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-26a8519ef26bdc4fa043201930c3b4f6-f3e1d96a2a508141-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "6372c6fc37bbef8068bba6a5d3c4483a", "x-ms-return-client-request-id": "true" }, @@ -29,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5ba7de66-48fb-4ef7-8ddc-5221fd03ba9f", + "apim-request-id": "81160720-5c67-477a-b7dd-d91d0de48c0b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Thu, 12 Nov 2020 19:34:29 GMT", + "Date": "Fri, 13 Nov 2020 22:26:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "132" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "127" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json index 0284f5a7f833b..33ca318d52dea 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bc88ec72bf387646ba9f9aba8add6c84-ac1264c8ede4c646-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-734400562e9e5944a016a25c2ba8eb72-36b46e731c64df47-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "40f3d388777c07f3a5efa0af174b7c81", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b3950b5b-031d-45e7-835f-33b0c7efe774", + "apim-request-id": "1ade129a-6b25-4f49-907a-ddaaaa44f102", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:34:26 GMT", + "Date": "Fri, 13 Nov 2020 22:26:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "104" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "93" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json index dd006a4cdb563..4ffab21eb2193 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7f34d33029d61946856a3ba6ff4ed87a-6789bf9892b62442-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-e323daa222c04f40bedda8ac5f8e308c-66d7dab669a65840-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "b40e3ff9f3697ab649fbbfa57575c10c", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "76f02ab8-5446-4300-8f7b-2c640a16ba0e", + "apim-request-id": "898a2efe-555a-40be-8828-1adf8f4b4f4f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:34:29 GMT", + "Date": "Fri, 13 Nov 2020 22:26:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "113" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "87" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json index c34e5e52a596f..12d7b495b1043 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "107", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3dcfef489155484480abbca42ce16550-cd77a66c22ece443-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-8b29a25deba39b4099755f2381af07b1-87f7d71363a4af4c-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "5757e3544f245670b8a4c82d4b10bc4c", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8e484457-2c88-4287-bfe2-062e61c663ea", + "apim-request-id": "17257f6f-30b8-4e6b-bac0-484443e7d7e4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:34:26 GMT", + "Date": "Fri, 13 Nov 2020 22:26:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "79" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "88" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json index b23a46a3a41db..ac1be190d929a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "107", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b42f7f880995784e90aefea92fc6439d-3800ecdf2df2f745-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-e2c1fdae14979240a2e09af06d5ded78-1a1777aca935f642-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "4a37fade57ea6b5a5ff8ab22891b6b20", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c44415a2-8f32-4b81-a713-1810344f794a", + "apim-request-id": "8edacc0d-adcb-4443-aacc-96a274c08acc", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:34:30 GMT", + "Date": "Fri, 13 Nov 2020 22:26:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "80" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "69" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json index aebc5f03c9dd0..d6856a66a00a3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3f12b638954e4b47893d4354debae7d5-9465c76bfaa37a46-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-5cd82eedd7715d469e741f39bba85cbc-2461e1c2f8831c40-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "2a5fd4f3bf3db4629b14e3f9050dd01c", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "433d621d-8d2f-4313-b6b9-2e13ac1a5965", + "apim-request-id": "2e3c5ff5-7265-4fda-9c07-068a8c555b33", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:34:26 GMT", + "Date": "Fri, 13 Nov 2020 22:26:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "90" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "154" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json index aa55506f09bd4..ee604c1907b6b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/pii?showStats=false\u0026domain=PHI\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-736e28ecc6d27e438a1a793b7179599b-2e1bed4ab1106f49-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-452898512d9341458b73e820236ced87-c66fb0e222c36b41-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "df1d0a85dc552d663ac944ac69a80a0d", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "216eb0d1-e2cb-489a-843c-098c4e705d5e", + "apim-request-id": "650826cd-71ed-4309-be69-36df4d863521", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:34:30 GMT", + "Date": "Fri, 13 Nov 2020 22:26:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "95" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "106" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json index 6a7bdf4620e54..ef68f1503be6d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?model-version=2020-02-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-22a68fc0730e9d4c9e05369e6ff93655-d8b429669f85fc46-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-0f8a56a0bbd0e74abd6b3ab5c8938c34-68718a6fd1cf514a-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "2bbb7414e3ce80e03f8df0adf3eb7d0c", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "11778971-bd5d-462c-aac3-a13fdf5282ef", + "apim-request-id": "fe683de5-a4b0-4b4e-9634-29066cdd9447", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:34:30 GMT", + "Date": "Fri, 13 Nov 2020 22:26:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "61" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "53" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json index 22ab2dd996b0b..7a308ae01cec3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?model-version=2020-02-01\u0026showStats=false\u0026stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-59e2cff27bcca244b8c45ce72e9803c0-19453dfc1e9ec045-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-c16cdc7355e7394481a0c43c4671e3f5-4672ffa6a9ee3141-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "6470d4cf3910c27ceead9bc2cf6c8aa0", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c33a2238-338d-4249-8ae4-76f1340a3672", + "apim-request-id": "2c9f472b-a9e1-47a9-a0f6-fb209b0b02bd", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:34:34 GMT", + "Date": "Fri, 13 Nov 2020 22:26:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "64" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "55" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json index 70c40a0c7519f..42a4134b4832b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1ecd99c30bc13548af6e65463b62dac3-0bc33716c4bbc441-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-58db378e901c8a4c866e179e844414f5-f6b1e5b8dcbebe49-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "31841aab9edddcddb56c91e8fafcead5", "x-ms-return-client-request-id": "true" }, @@ -24,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "26795c6a-639f-4a21-9c69-316a7494d8ef", + "apim-request-id": "c576bf68-1a9c-4aa1-8ab6-f6c471dc2a0a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:34:32 GMT", + "Date": "Fri, 13 Nov 2020 22:26:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", + "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "7" }, "ResponseBody": { @@ -53,12 +59,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8cd1b1ed0d42274ba0de7f1831805ef0-b523cfb19f048d47-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-b20c397863211849b60bc2caace354f7-f3bbbd9054e3d24a-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "13daa31269993bffe7f19e3dc94f204e", "x-ms-return-client-request-id": "true" }, @@ -74,7 +86,7 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Length": "224", - "Date": "Thu, 12 Nov 2020 19:34:32 GMT" + "Date": "Fri, 13 Nov 2020 22:26:51 GMT" }, "ResponseBody": "eyJlcnJvciI6eyJjb2RlIjoiNDAxIiwibWVzc2FnZSI6IkFjY2VzcyBkZW5pZWQgZHVlIHRvIGludmFsaWQgc3Vic2NyaXB0aW9uIGtleSBvciB3cm9uZyBBUEkgZW5kcG9pbnQuIE1ha2Ugc3VyZSB0byBwcm92aWRlIGEgdmFsaWQga2V5IGZvciBhbiBhY3RpdmUgc3Vic2NyaXB0aW9uIGFuZCB1c2UgYSBjb3JyZWN0IHJlZ2lvbmFsIEFQSSBlbmRwb2ludCBmb3IgeW91ciByZXNvdXJjZS4ifX0=" }, @@ -82,12 +94,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1b7b23de979e854986a1d4064469b8ee-8a03347e0374c543-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-92b4af3279cfdd44bce95f3a8cfe047f-5253edb39be6e549-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "d85ee288a420af625bce0d2748754fc8", "x-ms-return-client-request-id": "true" }, @@ -102,14 +120,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ac67f1b4-b22e-4cca-9f04-08aba6d9a104", + "apim-request-id": "d62b0b62-a9ad-4b53-86a2-56f65a8d1704", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:34:32 GMT", + "Date": "Fri, 13 Nov 2020 22:26:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json index 1db35a01ac36a..5e67b759bd996 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e81bcb2f6486fd40a15609ce7286a2fe-6b9a8aca5ae3a441-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-907c4b3a9ca2764d932913a20ae38b50-a42196b995ea6245-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "fb9f47ae04f9d825012386a2a51b9727", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4d4749bc-b417-413e-9166-3599b98ea3c2", + "apim-request-id": "79c98dd5-683f-4627-8ecb-e0885ff3514c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:34:34 GMT", + "Date": "Fri, 13 Nov 2020 22:26:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "6" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "7" }, "ResponseBody": { "documents": [ @@ -53,12 +59,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-60ed4dda5ce7694ebc90522a7e4d6abb-d85bfd153529334b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-e201aa6fc3e2684aa840173e96d2a0a7-de29a1843bbc7649-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "5aa0f7e4723c7c582e8ca602e03d8c8c", "x-ms-return-client-request-id": "true" }, @@ -74,7 +86,7 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Length": "224", - "Date": "Thu, 12 Nov 2020 19:34:34 GMT" + "Date": "Fri, 13 Nov 2020 22:26:53 GMT" }, "ResponseBody": "eyJlcnJvciI6eyJjb2RlIjoiNDAxIiwibWVzc2FnZSI6IkFjY2VzcyBkZW5pZWQgZHVlIHRvIGludmFsaWQgc3Vic2NyaXB0aW9uIGtleSBvciB3cm9uZyBBUEkgZW5kcG9pbnQuIE1ha2Ugc3VyZSB0byBwcm92aWRlIGEgdmFsaWQga2V5IGZvciBhbiBhY3RpdmUgc3Vic2NyaXB0aW9uIGFuZCB1c2UgYSBjb3JyZWN0IHJlZ2lvbmFsIEFQSSBlbmRwb2ludCBmb3IgeW91ciByZXNvdXJjZS4ifX0=" }, @@ -82,12 +94,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/languages", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b9ebab0c375b734d8f3ebdee0160f9a9-24b7c61ebba1094a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-df565e8d3ddd364b9cd57a186ba6291a-61ec698bfff4b549-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "1a26406b44799ec461ce0951aebc7b46", "x-ms-return-client-request-id": "true" }, @@ -102,14 +120,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bfafa848-16ab-4bc4-acd8-b58e8815bd8b", + "apim-request-id": "53687b11-1a0f-4731-b97e-f00716b6e767", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:34:35 GMT", + "Date": "Fri, 13 Nov 2020 22:26:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "7" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json index cc83e871ed98c..d90ee7394b216 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-58c25e3dd1f8384db1cc3586b194cbfd-a40f9595da807f4a-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-ed7e86697bdc8346b27424ca368e620b-a22afd3f9bfb0641-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "af25edec94c2cbbfd63455e84047f9b5", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "48152561-9886-4877-aca5-1231a7df7dfc", + "apim-request-id": "3c067ab5-1a3d-44e9-8de5-750d8761ddfd", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:34:33 GMT", + "Date": "Fri, 13 Nov 2020 22:26:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "70" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "96" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json index bf35ef552bb4a..30d36823f2355 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3ff80c611dd06a4e9a11e89e9deb80bd-67c5432ff1514e44-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-6099df3ef214604a8b52ef459584d5ff-c7a77917a158c74a-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "66b8ef6aed4353af1a0a6380bef4513f", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0defa2f9-e153-4c30-9505-2018470b060a", + "apim-request-id": "f89a5619-6914-4db4-9433-d269046faa64", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:34:35 GMT", + "Date": "Fri, 13 Nov 2020 22:26:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "66" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "58" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json index 6f1fa0217267c..1a61974a0e4ca 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "70", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c1290e50eb70324381773e5f1d96ee7a-3f3df6970bea6b4f-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-9fa84c71c8e12044a7a0f8eac90b6505-7cfb9aca6ea86f40-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "9c096f0bd3a36f626316eda5be1e28c8", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c2da88e3-6d53-4647-858b-32117441cbfd", + "apim-request-id": "8747a1b4-4bee-443c-a5c4-481509eeb19a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:34:33 GMT", + "Date": "Fri, 13 Nov 2020 22:26:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "53" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "52" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json index 3eab25f2435c0..b353173ed9406 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "70", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4bb69d30247e654680e892751d2219e4-82fef23fb3378941-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-ffa40bf489f7564bb3a0b228b5181c12-c2a866922dffdc45-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "a71f02631f3c7a05f4cb179d2fb85aac", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dc70862c-d218-4161-a2a9-a008b7576b38", + "apim-request-id": "6478ed38-dc1f-4a35-a933-fd0b164e4db2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:34:35 GMT", + "Date": "Fri, 13 Nov 2020 22:26:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "51" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json index 50c15e56b8b6e..3b9952b56de8e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fff298b2f735dc40917c6529dbb03b1c-5a7a035a84b8404b-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-2b00de15cce81348bb15bd85b30893ad-5a6f357225b99944-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "a12918df519b0dc53f87435017a62e99", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d9ecf9de-1b4b-4339-9a9d-ceee811ffbc9", + "apim-request-id": "0198f122-9f14-441f-a5a2-d0080867ca3c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:34:33 GMT", + "Date": "Fri, 13 Nov 2020 22:26:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "63" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "88" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json index 596ff31286115..cb3fe18cf8025 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json @@ -4,12 +4,18 @@ "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/recognition/general?stringIndexType=Utf16CodeUnit", "RequestMethod": "POST", "RequestHeaders": { - "Accept": "application/json, text/json", + "Accept": [ + "application/json", + "text/json" + ], "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c82fae960be8a54fa900d4eb03f9381f-7b2bef819fa6274c-00", - "User-Agent": "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201112.1 (.NET Framework 4.8.4250.0; Microsoft Windows 10.0.19042 )", + "traceparent": "00-14aba7c99e01994eb63e18e8aa736bb4-bc320c60c536794d-00", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], "x-ms-client-request-id": "05b9b9c88ccd2f82a72e96b9014b88fb", "x-ms-return-client-request-id": "true" }, @@ -24,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f80bb208-c78c-46da-82cd-f0103bd1e8d0", + "apim-request-id": "019c12f1-a39a-4bcf-bb41-629fb6170de8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Thu, 12 Nov 2020 19:34:36 GMT", + "Date": "Fri, 13 Nov 2020 22:26:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "x-content-type-options": "nosniff", - "x-envoy-upstream-service-time": "68" + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "71" }, "ResponseBody": { "documents": [ From 714c8821ff26f3c5ff9e33d99ce29a582b334bfa Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Fri, 13 Nov 2020 18:02:26 -0800 Subject: [PATCH 53/58] update docstrings --- .../src/TextAnalyticsClient.cs | 96 +++++++++++++++---- 1 file changed, 80 insertions(+), 16 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index f4ad4c76a8b3e..b885f07378451 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -2466,20 +2466,36 @@ async Task> NextPageFunc(string nextLink, int? pa #region Analyze Operation /// - /// Analyze Operation enables the application to have multiple tasks including NER, PII and KPE. + /// StartAnalyzeOperationBatchAsync enables the application to have multiple tasks including NER, PII and KPE. + /// Accepts a list of strings which are analyzed asynchronously. /// For document length limits, maximum batch size, and supported text encoding, see /// . /// - /// The documents to analyze. + /// The list of documents to analyze. /// The language that the document is written in. - /// The additional configurable - /// + /// The different operations to pass as options. + /// You can use it to have multiple tasks to analyze as well as multiple task item per each individual task. + /// For example - + /// AnalyzeOperationOptions operationOptions = new AnalyzeOperationOptions() + /// { + /// KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters(), + /// EntitiesTaskParameters = new EntitiesTaskParameters(), + /// PiiTaskParameters = new PiiTaskParameters(), + /// DisplayName = "AnalyzeOperation" + /// }; + /// By default ModelVersion is set as 'latest' and it can set from the task parameters. + /// KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters() + /// { + /// ModelVersion = "latest" + /// }, + /// For additional configurable options see + /// A controlling the request lifetime. /// Service returned a non-success /// status code. public virtual async Task StartAnalyzeOperationBatchAsync(IEnumerable documents, string language = default, AnalyzeOperationOptions options = default, CancellationToken cancellationToken = default) { Argument.AssertNotNullOrEmpty(documents, nameof(documents)); - options ??= new AnalyzeOperationOptions(); + Argument.AssertNotNull(options, nameof(options)); MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents, language); return await StartAnalyzeOperationBatchAsync(documentInputs, options, cancellationToken).ConfigureAwait(false); @@ -2487,13 +2503,29 @@ public virtual async Task StartAnalyzeOperationBatchAsync(IEnu /// /// Analyze Operation enables the application to have multiple tasks including NER, PII and KPE. + /// Accepts a list of strings which are analyzed asynchronously. /// For document length limits, maximum batch size, and supported text encoding, see /// . /// - /// The documents to analyze. + /// The list of documents to analyze. /// The language that the document is written in. - /// The additional configurable - /// + /// The different operations to pass as options. + /// You can use it to have multiple tasks to analyze as well as multiple task item per each individual task. + /// For example - + /// AnalyzeOperationOptions operationOptions = new AnalyzeOperationOptions() + /// { + /// KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters(), + /// EntitiesTaskParameters = new EntitiesTaskParameters(), + /// PiiTaskParameters = new PiiTaskParameters(), + /// DisplayName = "AnalyzeOperation" + /// }; + /// By default ModelVersion is set as 'latest' and it can set from the task parameters. + /// KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters() + /// { + /// ModelVersion = "latest" + /// }, + /// For additional configurable options see + /// A controlling the request lifetime. /// Service returned a non-success /// status code. public virtual AnalyzeOperation StartAnalyzeOperationBatch(IEnumerable documents, string language = default, AnalyzeOperationOptions options = default, CancellationToken cancellationToken = default) @@ -2507,18 +2539,34 @@ public virtual AnalyzeOperation StartAnalyzeOperationBatch(IEnumerable d /// /// Analyze Operation enables the application to have multiple tasks including NER, PII and KPE. + /// Accepts a list of strings which are analyzed asynchronously. /// For document length limits, maximum batch size, and supported text encoding, see /// . /// - /// The documents to analyze. - /// The additional configurable - /// + /// The list of documents to analyze. + /// The different operations to pass as options. + /// You can use it to have multiple tasks to analyze as well as multiple task item per each individual task. + /// For example - + /// AnalyzeOperationOptions operationOptions = new AnalyzeOperationOptions() + /// { + /// KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters(), + /// EntitiesTaskParameters = new EntitiesTaskParameters(), + /// PiiTaskParameters = new PiiTaskParameters(), + /// DisplayName = "AnalyzeOperation" + /// }; + /// By default ModelVersion is set as 'latest' and it can set from the task parameters. + /// KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters() + /// { + /// ModelVersion = "latest" + /// }, + /// For additional configurable options see + /// A controlling the request lifetime. /// Service returned a non-success /// status code. public virtual AnalyzeOperation StartAnalyzeOperationBatch(IEnumerable documents, AnalyzeOperationOptions options, CancellationToken cancellationToken = default) { Argument.AssertNotNullOrEmpty(documents, nameof(documents)); - options ??= new AnalyzeOperationOptions(); + Argument.AssertNotNull(options, nameof(options)); MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents); return StartAnalyzeOperationBatch(documentInputs, options, cancellationToken); @@ -2526,18 +2574,34 @@ public virtual AnalyzeOperation StartAnalyzeOperationBatch(IEnumerable /// Analyze Operation enables the application to have multiple tasks including NER, PII and KPE. + /// Accepts a list of strings which are analyzed asynchronously. /// For document length limits, maximum batch size, and supported text encoding, see /// . /// - /// The documents to analyze. - /// The additional configurable - /// + /// The list of documents to analyze. + /// The different operations to pass as options. + /// You can use it to have multiple tasks to analyze as well as multiple task item per each individual task. + /// For example - + /// AnalyzeOperationOptions operationOptions = new AnalyzeOperationOptions() + /// { + /// KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters(), + /// EntitiesTaskParameters = new EntitiesTaskParameters(), + /// PiiTaskParameters = new PiiTaskParameters(), + /// DisplayName = "AnalyzeOperation" + /// }; + /// By default ModelVersion is set as 'latest' and it can set from the task parameters. + /// KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters() + /// { + /// ModelVersion = "latest" + /// }, + /// For additional configurable options see + /// A controlling the request lifetime. /// Service returned a non-success /// status code. public virtual async Task StartAnalyzeOperationBatchAsync(IEnumerable documents, AnalyzeOperationOptions options, CancellationToken cancellationToken = default) { Argument.AssertNotNullOrEmpty(documents, nameof(documents)); - options ??= new AnalyzeOperationOptions(); + Argument.AssertNotNull(options, nameof(options)); MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents); return await StartAnalyzeOperationBatchAsync(documentInputs, options, cancellationToken).ConfigureAwait(false); From 3f7fa6c5b12a1f2ffae88ba9117885ee209ba8dc Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Mon, 16 Nov 2020 10:27:03 -0800 Subject: [PATCH 54/58] make options non default --- .../Generated/Models/TasksStateTasksDetails.Serialization.cs | 2 +- .../src/Generated/Models/TasksStateTasksDetails.cs | 2 +- .../Azure.AI.TextAnalytics/src/TasksStateTasksDetails.cs | 2 +- .../Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.Serialization.cs index f150465870edc..202fd938af415 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.Serialization.cs @@ -11,7 +11,7 @@ namespace Azure.AI.TextAnalytics { - public partial class TasksStateTasksDetails + internal partial class TasksStateTasksDetails { internal static TasksStateTasksDetails DeserializeTasksStateTasksDetails(JsonElement element) { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.cs index f04956440793f..bcc2741dae68f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.cs @@ -10,7 +10,7 @@ namespace Azure.AI.TextAnalytics { /// The TasksStateTasksDetails. - public partial class TasksStateTasksDetails : TaskState + internal partial class TasksStateTasksDetails : TaskState { /// Initializes a new instance of TasksStateTasksDetails. /// . diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasksDetails.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasksDetails.cs index 46472bc69df42..245ca2320ec4c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasksDetails.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasksDetails.cs @@ -10,7 +10,7 @@ namespace Azure.AI.TextAnalytics /// TasksStateTasksDetails. /// [CodeGenModel("TasksStateTasksDetails")] - public partial class TasksStateTasksDetails + internal partial class TasksStateTasksDetails { } } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index b885f07378451..c14477d072fcd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -2492,7 +2492,7 @@ async Task> NextPageFunc(string nextLink, int? pa /// A controlling the request lifetime. /// Service returned a non-success /// status code. - public virtual async Task StartAnalyzeOperationBatchAsync(IEnumerable documents, string language = default, AnalyzeOperationOptions options = default, CancellationToken cancellationToken = default) + public virtual async Task StartAnalyzeOperationBatchAsync(IEnumerable documents, AnalyzeOperationOptions options, string language = default, CancellationToken cancellationToken = default) { Argument.AssertNotNullOrEmpty(documents, nameof(documents)); Argument.AssertNotNull(options, nameof(options)); @@ -2528,7 +2528,7 @@ public virtual async Task StartAnalyzeOperationBatchAsync(IEnu /// A controlling the request lifetime. /// Service returned a non-success /// status code. - public virtual AnalyzeOperation StartAnalyzeOperationBatch(IEnumerable documents, string language = default, AnalyzeOperationOptions options = default, CancellationToken cancellationToken = default) + public virtual AnalyzeOperation StartAnalyzeOperationBatch(IEnumerable documents, AnalyzeOperationOptions options, string language = default, CancellationToken cancellationToken = default) { Argument.AssertNotNullOrEmpty(documents, nameof(documents)); options ??= new AnalyzeOperationOptions(); From 34c67b51ad166f58a4ede58308369a59e04dbc4e Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Mon, 16 Nov 2020 10:49:58 -0800 Subject: [PATCH 55/58] cleanup --- .../api/Azure.AI.TextAnalytics.netstandard2.0.cs | 4 ++-- .../Generated/Models/TasksStateTasksDetails.Serialization.cs | 2 +- .../src/Generated/Models/TasksStateTasksDetails.cs | 2 +- .../Azure.AI.TextAnalytics/src/TasksStateTasksDetails.cs | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/api/Azure.AI.TextAnalytics.netstandard2.0.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/api/Azure.AI.TextAnalytics.netstandard2.0.cs index 91cb1878eefe2..9c5487131e86d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/api/Azure.AI.TextAnalytics.netstandard2.0.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/api/Azure.AI.TextAnalytics.netstandard2.0.cs @@ -520,9 +520,9 @@ public TextAnalyticsClient(System.Uri endpoint, Azure.Core.TokenCredential crede public virtual System.Threading.Tasks.Task> RecognizePiiEntitiesBatchAsync(System.Collections.Generic.IEnumerable documents, Azure.AI.TextAnalytics.RecognizePiiEntitiesOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task> RecognizePiiEntitiesBatchAsync(System.Collections.Generic.IEnumerable documents, string language = null, Azure.AI.TextAnalytics.RecognizePiiEntitiesOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.AI.TextAnalytics.AnalyzeOperation StartAnalyzeOperationBatch(System.Collections.Generic.IEnumerable documents, Azure.AI.TextAnalytics.AnalyzeOperationOptions options, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual Azure.AI.TextAnalytics.AnalyzeOperation StartAnalyzeOperationBatch(System.Collections.Generic.IEnumerable documents, string language = null, Azure.AI.TextAnalytics.AnalyzeOperationOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual Azure.AI.TextAnalytics.AnalyzeOperation StartAnalyzeOperationBatch(System.Collections.Generic.IEnumerable documents, Azure.AI.TextAnalytics.AnalyzeOperationOptions options, string language = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task StartAnalyzeOperationBatchAsync(System.Collections.Generic.IEnumerable documents, Azure.AI.TextAnalytics.AnalyzeOperationOptions options, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } - public virtual System.Threading.Tasks.Task StartAnalyzeOperationBatchAsync(System.Collections.Generic.IEnumerable documents, string language = null, Azure.AI.TextAnalytics.AnalyzeOperationOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } + public virtual System.Threading.Tasks.Task StartAnalyzeOperationBatchAsync(System.Collections.Generic.IEnumerable documents, Azure.AI.TextAnalytics.AnalyzeOperationOptions options, string language = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual string StartCancelHealthJob(Azure.AI.TextAnalytics.HealthcareOperation operation, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual System.Threading.Tasks.Task StartCancelHealthJobAsync(Azure.AI.TextAnalytics.HealthcareOperation operation, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } public virtual Azure.AI.TextAnalytics.HealthcareOperation StartHealthcare(string document, string language = null, Azure.AI.TextAnalytics.HealthcareOptions options = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)) { throw null; } diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.Serialization.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.Serialization.cs index 202fd938af415..f150465870edc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.Serialization.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.Serialization.cs @@ -11,7 +11,7 @@ namespace Azure.AI.TextAnalytics { - internal partial class TasksStateTasksDetails + public partial class TasksStateTasksDetails { internal static TasksStateTasksDetails DeserializeTasksStateTasksDetails(JsonElement element) { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.cs index bcc2741dae68f..f04956440793f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/Generated/Models/TasksStateTasksDetails.cs @@ -10,7 +10,7 @@ namespace Azure.AI.TextAnalytics { /// The TasksStateTasksDetails. - internal partial class TasksStateTasksDetails : TaskState + public partial class TasksStateTasksDetails : TaskState { /// Initializes a new instance of TasksStateTasksDetails. /// . diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasksDetails.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasksDetails.cs index 245ca2320ec4c..46472bc69df42 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasksDetails.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TasksStateTasksDetails.cs @@ -10,7 +10,7 @@ namespace Azure.AI.TextAnalytics /// TasksStateTasksDetails. /// [CodeGenModel("TasksStateTasksDetails")] - internal partial class TasksStateTasksDetails + public partial class TasksStateTasksDetails { } } From 472bfbaf45e6a127cf1bb12253242b9816cd9550 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Mon, 16 Nov 2020 10:57:56 -0800 Subject: [PATCH 56/58] cleanup --- .../Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs index c14477d072fcd..5de81938d018c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/src/TextAnalyticsClient.cs @@ -2531,7 +2531,7 @@ public virtual async Task StartAnalyzeOperationBatchAsync(IEnu public virtual AnalyzeOperation StartAnalyzeOperationBatch(IEnumerable documents, AnalyzeOperationOptions options, string language = default, CancellationToken cancellationToken = default) { Argument.AssertNotNullOrEmpty(documents, nameof(documents)); - options ??= new AnalyzeOperationOptions(); + Argument.AssertNotNull(options, nameof(options)); MultiLanguageBatchInput documentInputs = ConvertToMultiLanguageInputs(documents, language); return StartAnalyzeOperationBatch(documentInputs, options, cancellationToken); @@ -2609,8 +2609,6 @@ public virtual async Task StartAnalyzeOperationBatchAsync(IEnu private AnalyzeOperation StartAnalyzeOperationBatch(MultiLanguageBatchInput batchInput, AnalyzeOperationOptions options, CancellationToken cancellationToken = default) { - options ??= new AnalyzeOperationOptions(); - JobManifestTasks tasks = new JobManifestTasks(); if (options.PiiTaskParameters != null) @@ -2654,8 +2652,6 @@ private AnalyzeOperation StartAnalyzeOperationBatch(MultiLanguageBatchInput batc private async Task StartAnalyzeOperationBatchAsync(MultiLanguageBatchInput batchInput, AnalyzeOperationOptions options, CancellationToken cancellationToken = default) { - options ??= new AnalyzeOperationOptions(); - JobManifestTasks tasks = new JobManifestTasks(); if (options.PiiTaskParameters != null) From 36825c5afe76599a5584621a79f94a85a5439476 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Mon, 16 Nov 2020 11:29:35 -0800 Subject: [PATCH 57/58] fix tests --- .../tests/AnalyzeOperationTests.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs index 6d02be43d75ae..39b0efa43198c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/AnalyzeOperationTests.cs @@ -41,7 +41,7 @@ public async Task AnalyzeOperationTest() KeyPhrasesTaskParameters = new KeyPhrasesTaskParameters(), }; - AnalyzeOperation operation = await client.StartAnalyzeOperationBatchAsync(batchConvenienceDocuments, "en", operationOptions); + AnalyzeOperation operation = await client.StartAnalyzeOperationBatchAsync(batchConvenienceDocuments, operationOptions, "en"); await operation.WaitForCompletionAsync(); @@ -219,7 +219,7 @@ public async Task AnalyzeOperationWithSkipParameter() //Skip = 1 }; - AnalyzeOperation operation = await client.StartAnalyzeOperationBatchAsync(batchConvenienceDocuments, "en", operationOptions); + AnalyzeOperation operation = await client.StartAnalyzeOperationBatchAsync(batchConvenienceDocuments, operationOptions, "en"); await operation.WaitForCompletionAsync(); @@ -252,7 +252,7 @@ public async Task AnalyzeOperationWithTopParameter() //Top = 1 }; - AnalyzeOperation operation = await client.StartAnalyzeOperationBatchAsync(batchConvenienceDocuments, "en", operationOptions); + AnalyzeOperation operation = await client.StartAnalyzeOperationBatchAsync(batchConvenienceDocuments, operationOptions, "en"); await operation.WaitForCompletionAsync(); @@ -295,7 +295,7 @@ public async Task AnalyzeOperationBatchWithErrorTest() await Task.Run(() => { RequestFailedException ex = Assert.ThrowsAsync(async () => { - AnalyzeOperation operation = await client.StartAnalyzeOperationBatchAsync(documents, "en", operationOptions); + AnalyzeOperation operation = await client.StartAnalyzeOperationBatchAsync(documents, operationOptions, "en"); }); Assert.IsTrue(ex.ErrorCode.Equals("InvalidArgument")); @@ -323,7 +323,7 @@ public async Task AnalyzeOperationBatchWithPHIDomain() DisplayName = "AnalyzeOperationWithPHIDomain" }; - AnalyzeOperation operation = await client.StartAnalyzeOperationBatchAsync(documents, "en", operationOptions); + AnalyzeOperation operation = await client.StartAnalyzeOperationBatchAsync(documents, operationOptions, "en"); await operation.WaitForCompletionAsync(); From 579878de7a5c81ec08d1a8eb7b610b3b882a2488 Mon Sep 17 00:00:00 2001 From: Suhas Mehta Date: Mon, 16 Nov 2020 11:29:52 -0800 Subject: [PATCH 58/58] update session records --- .../AnalyzeOperationBatchWithPHIDomain.json | 2226 ++++----- ...alyzeOperationBatchWithPHIDomainAsync.json | 2098 ++++---- .../AnalyzeOperationTest.json | 147 +- .../AnalyzeOperationTestAsync.json | 101 +- .../AnalyzeOperationWithLanguageTest.json | 147 +- ...AnalyzeOperationWithLanguageTestAsync.json | 105 +- .../AnalyzeOperationWithMultipleTasks.json | 4364 +++++++++++------ ...nalyzeOperationWithMultipleTasksAsync.json | 2206 ++++----- ...lyzeSentimentBatchConvenienceFullTest.json | 10 +- ...entimentBatchConvenienceFullTestAsync.json | 10 +- .../AnalyzeSentimentBatchConvenienceTest.json | 8 +- ...yzeSentimentBatchConvenienceTestAsync.json | 10 +- ...tBatchConvenienceWithCancellationTest.json | 10 +- ...hConvenienceWithCancellationTestAsync.json | 10 +- ...nienceWithLanguageAndCancellationTest.json | 10 +- ...eWithLanguageAndCancellationTestAsync.json | 10 +- ...venienceWithLanguageAndStatisticsTest.json | 10 +- ...nceWithLanguageAndStatisticsTestAsync.json | 10 +- ...imentBatchConvenienceWithLanguageTest.json | 10 +- ...BatchConvenienceWithLanguageTestAsync.json | 10 +- ...BatchConvenienceWithOpinionMiningTest.json | 10 +- ...ConvenienceWithOpinionMiningTestAsync.json | 10 +- ...enceWithStatisticsAndCancellationTest.json | 10 +- ...ithStatisticsAndCancellationTestAsync.json | 10 +- ...entBatchConvenienceWithStatisticsTest.json | 10 +- ...tchConvenienceWithStatisticsTestAsync.json | 10 +- .../AnalyzeSentimentBatchTest.json | 10 +- .../AnalyzeSentimentBatchTestAsync.json | 10 +- .../AnalyzeSentimentBatchWithErrorTest.json | 10 +- ...alyzeSentimentBatchWithErrorTestAsync.json | 10 +- .../AnalyzeSentimentBatchWithNullIdTest.json | 10 +- ...lyzeSentimentBatchWithNullIdTestAsync.json | 10 +- ...AnalyzeSentimentBatchWithNullTextTest.json | 10 +- ...zeSentimentBatchWithNullTextTestAsync.json | 8 +- ...zeSentimentBatchWithOpinionMiningTest.json | 10 +- ...timentBatchWithOpinionMiningTestAsync.json | 10 +- ...alyzeSentimentBatchWithStatisticsTest.json | 10 +- ...SentimentBatchWithStatisticsTestAsync.json | 10 +- .../AnalyzeSentimentTest.json | 10 +- .../AnalyzeSentimentTestAsync.json | 10 +- .../AnalyzeSentimentWithCancellationTest.json | 10 +- ...yzeSentimentWithCancellationTestAsync.json | 10 +- ...timentWithLanguageAndCancellationTest.json | 10 +- ...tWithLanguageAndCancellationTestAsync.json | 10 +- .../AnalyzeSentimentWithLanguageTest.json | 10 +- ...AnalyzeSentimentWithLanguageTestAsync.json | 10 +- .../AnalyzeSentimentWithOpinionMining.json | 10 +- ...nalyzeSentimentWithOpinionMiningAsync.json | 10 +- ...nalyzeSentimentWithOpinionMiningEmpty.json | 10 +- ...eSentimentWithOpinionMiningEmptyAsync.json | 10 +- ...lyzeSentimentWithOpinionMiningNegated.json | 10 +- ...entimentWithOpinionMiningNegatedAsync.json | 10 +- .../DetectLanguageBatchConvenienceTest.json | 10 +- ...tectLanguageBatchConvenienceTestAsync.json | 10 +- ...ageBatchConvenienceWithStatisticsTest.json | 10 +- ...tchConvenienceWithStatisticsTestAsync.json | 10 +- .../DetectLanguageBatchTest.json | 10 +- .../DetectLanguageBatchTestAsync.json | 10 +- .../DetectLanguageBatchWithErrorTest.json | 10 +- ...DetectLanguageBatchWithErrorTestAsync.json | 10 +- .../DetectLanguageBatchWithNullIdTest.json | 10 +- ...etectLanguageBatchWithNullIdTestAsync.json | 10 +- .../DetectLanguageBatchWithNullTextTest.json | 10 +- ...ectLanguageBatchWithNullTextTestAsync.json | 10 +- ...DetectLanguageBatchWithStatisticsTest.json | 8 +- ...tLanguageBatchWithStatisticsTestAsync.json | 10 +- .../DetectLanguageTest.json | 10 +- .../DetectLanguageTestAsync.json | 8 +- .../DetectLanguageWithCountryHintTest.json | 10 +- ...etectLanguageWithCountryHintTestAsync.json | 10 +- ...etectLanguageWithErrorCountryHintTest.json | 8 +- ...LanguageWithErrorCountryHintTestAsync.json | 8 +- ...DetectLanguageWithNoneCountryHintTest.json | 10 +- ...tLanguageWithNoneCountryHintTestAsync.json | 10 +- ...anguageWithNoneDefaultCountryHintTest.json | 10 +- ...geWithNoneDefaultCountryHintTestAsync.json | 10 +- ...ExtractKeyPhrasesBatchConvenienceTest.json | 10 +- ...ctKeyPhrasesBatchConvenienceTestAsync.json | 10 +- ...sesBatchConvenienceWithStatisticsTest.json | 10 +- ...tchConvenienceWithStatisticsTestAsync.json | 10 +- .../ExtractKeyPhrasesBatchTest.json | 10 +- .../ExtractKeyPhrasesBatchTestAsync.json | 10 +- .../ExtractKeyPhrasesBatchWithErrorTest.json | 10 +- ...ractKeyPhrasesBatchWithErrorTestAsync.json | 10 +- .../ExtractKeyPhrasesBatchWithNullIdTest.json | 10 +- ...actKeyPhrasesBatchWithNullIdTestAsync.json | 8 +- ...xtractKeyPhrasesBatchWithNullTextTest.json | 8 +- ...tKeyPhrasesBatchWithNullTextTestAsync.json | 8 +- ...tractKeyPhrasesBatchWithSatisticsTest.json | 10 +- ...KeyPhrasesBatchWithSatisticsTestAsync.json | 10 +- .../ExtractKeyPhrasesTest.json | 8 +- .../ExtractKeyPhrasesTestAsync.json | 10 +- .../ExtractKeyPhrasesWithLanguageTest.json | 10 +- ...xtractKeyPhrasesWithLanguageTestAsync.json | 10 +- .../ExtractKeyPhrasesWithWarningTest.json | 10 +- ...ExtractKeyPhrasesWithWarningTestAsync.json | 10 +- ...RecognizeEntitiesBatchConvenienceTest.json | 10 +- ...nizeEntitiesBatchConvenienceTestAsync.json | 10 +- ...iesBatchConvenienceWithStatisticsTest.json | 10 +- ...tchConvenienceWithStatisticsTestAsync.json | 10 +- .../RecognizeEntitiesBatchTest.json | 10 +- .../RecognizeEntitiesBatchTestAsync.json | 10 +- .../RecognizeEntitiesBatchWithErrorTest.json | 10 +- ...ognizeEntitiesBatchWithErrorTestAsync.json | 10 +- ...EntitiesBatchWithInvalidDocumentBatch.json | 10 +- ...iesBatchWithInvalidDocumentBatchAsync.json | 10 +- .../RecognizeEntitiesBatchWithNullIdTest.json | 10 +- ...gnizeEntitiesBatchWithNullIdTestAsync.json | 10 +- ...ecognizeEntitiesBatchWithNullTextTest.json | 8 +- ...izeEntitiesBatchWithNullTextTestAsync.json | 10 +- ...ognizeEntitiesBatchWithStatisticsTest.json | 10 +- ...eEntitiesBatchWithStatisticsTestAsync.json | 10 +- .../RecognizeEntitiesTest.json | 10 +- .../RecognizeEntitiesTestAsync.json | 10 +- .../RecognizeEntitiesWithLanguageTest.json | 10 +- ...ecognizeEntitiesWithLanguageTestAsync.json | 10 +- .../RecognizeEntitiesWithSubCategoryTest.json | 10 +- ...gnizeEntitiesWithSubCategoryTestAsync.json | 10 +- ...ealthcareEntitiesBatchConvenienceTest.json | 338 +- ...careEntitiesBatchConvenienceTestAsync.json | 102 +- ...iesBatchConvenienceWithStatisticsTest.json | 194 +- ...tchConvenienceWithStatisticsTestAsync.json | 118 +- .../RecognizeHealthcareEntitiesBatchTest.json | 120 +- ...gnizeHealthcareEntitiesBatchTestAsync.json | 140 +- ...eHealthcareEntitiesBatchWithErrorTest.json | 84 +- ...thcareEntitiesBatchWithErrorTestAsync.json | 156 +- ...HealthcareEntitiesBatchWithPagination.json | 192 +- ...hcareEntitiesBatchWithPaginationAsync.json | 226 +- ...thcareEntitiesBatchWithStatisticsTest.json | 68 +- ...eEntitiesBatchWithStatisticsTestAsync.json | 84 +- .../RecognizeHealthcareEntitiesTest.json | 120 +- .../RecognizeHealthcareEntitiesTestAsync.json | 46 +- ...izeHealthcareEntitiesWithLanguageTest.json | 86 +- ...althcareEntitiesWithLanguageTestAsync.json | 102 +- ...zeHealthcareEntitiesWithSkipParameter.json | 84 +- ...lthcareEntitiesWithSkipParameterAsync.json | 120 +- ...izeHealthcareEntitiesWithTopParameter.json | 86 +- ...althcareEntitiesWithTopParameterAsync.json | 88 +- ...izeLinkedEntitiesBatchConvenienceTest.json | 10 +- ...nkedEntitiesBatchConvenienceTestAsync.json | 10 +- ...iesBatchConvenienceWithStatisticsTest.json | 10 +- ...tchConvenienceWithStatisticsTestAsync.json | 8 +- .../RecognizeLinkedEntitiesBatchTest.json | 10 +- ...RecognizeLinkedEntitiesBatchTestAsync.json | 10 +- ...gnizeLinkedEntitiesBatchWithErrorTest.json | 10 +- ...LinkedEntitiesBatchWithErrorTestAsync.json | 10 +- ...EntitiesBatchWithInvalidDocumentBatch.json | 8 +- ...iesBatchWithInvalidDocumentBatchAsync.json | 8 +- ...nizeLinkedEntitiesBatchWithNullIdTest.json | 10 +- ...inkedEntitiesBatchWithNullIdTestAsync.json | 8 +- ...zeLinkedEntitiesBatchWithNullTextTest.json | 10 +- ...kedEntitiesBatchWithNullTextTestAsync.json | 8 +- ...LinkedEntitiesBatchWithStatisticsTest.json | 10 +- ...dEntitiesBatchWithStatisticsTestAsync.json | 8 +- .../RecognizeLinkedEntitiesTest.json | 10 +- .../RecognizeLinkedEntitiesTestAsync.json | 10 +- ...cognizeLinkedEntitiesWithLanguageTest.json | 10 +- ...zeLinkedEntitiesWithLanguageTestAsync.json | 10 +- ...ognizePiiEntitiesBatchConvenienceTest.json | 10 +- ...ePiiEntitiesBatchConvenienceTestAsync.json | 10 +- ...iesBatchConvenienceWithStatisticsTest.json | 10 +- ...tchConvenienceWithStatisticsTestAsync.json | 10 +- .../RecognizePiiEntitiesBatchTest.json | 10 +- .../RecognizePiiEntitiesBatchTestAsync.json | 10 +- ...ecognizePiiEntitiesBatchWithErrorTest.json | 10 +- ...izePiiEntitiesBatchWithErrorTestAsync.json | 10 +- ...izePiiEntitiesBatchWithStatisticsTest.json | 10 +- ...iEntitiesBatchWithStatisticsTestAsync.json | 10 +- .../RecognizePiiEntitiesTest.json | 10 +- .../RecognizePiiEntitiesTestAsync.json | 10 +- .../RecognizePiiEntitiesWithDomainTest.json | 10 +- ...cognizePiiEntitiesWithDomainTestAsync.json | 10 +- .../RecognizePiiEntitiesWithLanguageTest.json | 10 +- ...gnizePiiEntitiesWithLanguageTestAsync.json | 10 +- .../EntitiesCategories.json | 10 +- .../EntitiesCategoriesAsync.json | 10 +- .../RotateApiKey.json | 24 +- .../RotateApiKeyAsync.json | 26 +- .../TextInKoreanNFC.json | 10 +- .../TextInKoreanNFCAsync.json | 10 +- .../TextWithDiacriticsNFC.json | 10 +- .../TextWithDiacriticsNFCAsync.json | 10 +- .../TextWithEmoji.json | 10 +- .../TextWithEmojiAsync.json | 10 +- 184 files changed, 8202 insertions(+), 7302 deletions(-) diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json index 9d4a0be9a7b98..33ad4a2155740 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomain.json @@ -11,9 +11,9 @@ "Content-Length": "311", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5523eef104b44246ae1f18ff282add45-2d320cdbac1c9348-00", + "traceparent": "00-38e02d671206d5449eeeb1b9a30ee5f0-7389bc200e60df48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cfe8e2f8ee3911d883f149c5ba708a25", @@ -43,18 +43,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "29596475-4146-468c-a76f-0408f92699d4", - "Date": "Fri, 13 Nov 2020 22:16:07 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", + "apim-request-id": "4f7aee5c-bc89-4cbe-a49f-f278684fd439", + "Date": "Mon, 16 Nov 2020 19:11:09 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "300" + "x-envoy-upstream-service-time": "209" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -63,7 +63,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0af6547e6d21f99df5e133f9fb1abff6", @@ -72,26 +72,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "219d6f80-a546-46c2-9b59-31e2a261f2d5", + "apim-request-id": "b235429f-4ab1-4f65-ad6a-7ebc9cc3977c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:07 GMT", + "Date": "Mon, 16 Nov 2020 19:11:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:07Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:09Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:07Z" + "lastUpdateDateTime": "2020-11-16T19:11:09Z" }, "completed": 0, "failed": 0, @@ -101,7 +101,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -110,7 +110,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1ffe04ae50f965a11f4bc1da8e14f022", @@ -119,26 +119,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c4e9b36c-e9a4-47b4-9e09-800945a37065", + "apim-request-id": "250b3a22-def3-443d-9672-59fd545a5a8f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:08 GMT", + "Date": "Mon, 16 Nov 2020 19:11:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "65" + "x-envoy-upstream-service-time": "80" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", - "status": "running", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", + "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -148,7 +148,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -157,7 +157,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1647a062e0a88b5844efda57badf1569", @@ -166,26 +166,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e4fcb880-c30f-4b74-a8e0-b703ded5f751", + "apim-request-id": "993135b5-fd41-4daf-9a2c-988a9c93bcef", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:09 GMT", + "Date": "Mon, 16 Nov 2020 19:11:12 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": "65" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -195,7 +195,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -204,7 +204,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b61653316b722e2cb391ead5abc26ae0", @@ -213,26 +213,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a845bec5-97dd-4885-b55d-de58195bde86", + "apim-request-id": "3c6c7ea4-98fb-41c0-9aea-63bee7194a87", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:11 GMT", + "Date": "Mon, 16 Nov 2020 19:11:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "61" + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -242,7 +242,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -251,7 +251,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5a9611f1a9d2cd4dab72da09754aaa40", @@ -260,26 +260,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7d736b56-42dd-4ed9-a29a-5c69b421efdd", + "apim-request-id": "3e95507a-4c7e-455c-aa99-05fcd076f01e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:12 GMT", + "Date": "Mon, 16 Nov 2020 19:11:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "89" + "x-envoy-upstream-service-time": "91" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -289,7 +289,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -298,7 +298,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3ba9583539fdf7af74196317f682e081", @@ -307,26 +307,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "64b50e6d-2a4c-4a65-a1d8-cc39d743f179", + "apim-request-id": "41c80699-036e-440c-96c7-c6c32062cce3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:14 GMT", + "Date": "Mon, 16 Nov 2020 19:11:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -336,7 +336,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -345,7 +345,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a966f984bb48889605490aff9122b869", @@ -354,26 +354,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3860e325-564e-43b1-a009-75ebcabdcb1e", + "apim-request-id": "6b6767a3-0583-4196-b7f7-45d4dbd65325", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:15 GMT", + "Date": "Mon, 16 Nov 2020 19:11:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -383,7 +383,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -392,7 +392,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "52a0a9e62e19b7e3619fe5b94536d629", @@ -401,26 +401,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b06ded95-7e97-4195-b394-3272bd02620a", + "apim-request-id": "44834e79-3f45-46a1-9850-246606ee5fb6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:16 GMT", + "Date": "Mon, 16 Nov 2020 19:11:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -430,7 +430,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -439,7 +439,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7c84589201e47af8c22036b42eb06652", @@ -448,26 +448,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "09e85156-0446-4356-98a6-7bc622fd7a84", + "apim-request-id": "e78849fc-212c-4b3e-82d2-7d1e157757d2", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:17 GMT", + "Date": "Mon, 16 Nov 2020 19:11:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "62" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -477,7 +477,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -486,7 +486,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4c31fa618de2566816ae47a9d5dc42cf", @@ -495,26 +495,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eedb4f47-8372-47d4-8e71-fe7c8ecefe16", + "apim-request-id": "ee3f1c47-cafb-4d26-a381-c279d181c0a4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:18 GMT", + "Date": "Mon, 16 Nov 2020 19:11:21 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": "59" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -524,7 +524,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -533,7 +533,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "386ce1723b9de485b12590f8f82e88b1", @@ -542,26 +542,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3f45e237-92aa-4f4a-a604-1853ceda9cde", + "apim-request-id": "6f0efa83-0052-4e4e-8954-9f753a26cd1c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:19 GMT", + "Date": "Mon, 16 Nov 2020 19:11:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "62" + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -571,7 +571,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -580,7 +580,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4b5893388a040546f02e6635b94ea5e5", @@ -589,26 +589,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7fc2cc6d-1450-4b29-b8ff-fe899fd9cb18", + "apim-request-id": "a32d40a2-0486-4fd1-a1b4-efccb81156ee", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:20 GMT", + "Date": "Mon, 16 Nov 2020 19:11:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -618,7 +618,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -627,7 +627,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4d4166de2e4325b5754c9abcfc6f5de7", @@ -636,26 +636,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "33cb3776-2e2e-48af-a0a0-5191785aa356", + "apim-request-id": "91d1af76-180e-453b-b1e9-522c46a5244f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:21 GMT", + "Date": "Mon, 16 Nov 2020 19:11:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -665,7 +665,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -674,7 +674,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "41709625f784e8cb9b67476ed54f2b62", @@ -683,26 +683,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "08437e54-70ef-4526-b0fa-528808acc0de", + "apim-request-id": "b0ed706c-3d48-4645-a06e-0caebb72e997", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:24 GMT", + "Date": "Mon, 16 Nov 2020 19:11:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" + "x-envoy-upstream-service-time": "72" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -712,7 +712,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -721,7 +721,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "921aaa803bed0a6edd33d6b7ef8a0880", @@ -730,26 +730,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a5a37144-9ffc-472c-8e79-da5eecd83950", + "apim-request-id": "423edd90-fb0f-43ba-b2eb-5cdd73470657", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:25 GMT", + "Date": "Mon, 16 Nov 2020 19:11:27 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": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -759,7 +759,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -768,7 +768,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "220f7ed163dee7609b59b2dbe6464f25", @@ -777,26 +777,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9de2a918-1bd4-4ecb-9f9f-f7a23c6255f0", + "apim-request-id": "c103197f-8f29-42ed-bab9-61006ead7ece", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:26 GMT", + "Date": "Mon, 16 Nov 2020 19:11:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "68" + "x-envoy-upstream-service-time": "65" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -806,7 +806,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -815,7 +815,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "513b3721cb55eafa286564512013f810", @@ -824,9 +824,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f37fe1c6-68cc-45fc-8406-224b2e942499", + "apim-request-id": "c22100f0-8b48-4f3e-9d88-dd28253d444d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:27 GMT", + "Date": "Mon, 16 Nov 2020 19:11:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -834,16 +834,16 @@ }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -853,7 +853,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -862,7 +862,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "569dc65e083f1d844a33f69389922497", @@ -871,26 +871,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d6fc0458-c75a-426e-ab7c-bbda5398948c", + "apim-request-id": "1dd7ef8e-424b-4341-9aab-dbd185eec723", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:28 GMT", + "Date": "Mon, 16 Nov 2020 19:11:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -900,7 +900,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -909,7 +909,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b795b0e3b74e062b8425fa78ff0fc687", @@ -918,26 +918,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e3a47dae-f4df-4dde-9dba-d44f85f08265", + "apim-request-id": "038f5233-cebc-4ca4-b72e-bdc1bef19602", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:29 GMT", + "Date": "Mon, 16 Nov 2020 19:11:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "69" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -947,7 +947,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -956,7 +956,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1f7da160f8a919e6b31e0721d4676096", @@ -965,26 +965,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f82c1aab-0d3e-4d3d-852d-a50d94bb94bd", + "apim-request-id": "8c5d7206-6540-44d6-8ad7-fe20ec065951", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:30 GMT", + "Date": "Mon, 16 Nov 2020 19:11:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -994,7 +994,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1003,7 +1003,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "706dcc41417da7c29b97d2190d0c1e3a", @@ -1012,26 +1012,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3b202fb9-ba13-44ef-b796-6411ea6343ae", + "apim-request-id": "42240e9c-36bc-4b56-b751-77e710382ac3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:32 GMT", + "Date": "Mon, 16 Nov 2020 19:11:35 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": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -1041,7 +1041,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1050,7 +1050,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e8326f6d0514ebedca7c0430af09311d", @@ -1059,26 +1059,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aa752522-6ff3-483a-b85a-fe80b6834487", + "apim-request-id": "befcebec-073f-4729-a227-c852641c7ff5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:33 GMT", + "Date": "Mon, 16 Nov 2020 19:11:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "62" + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -1088,7 +1088,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1097,7 +1097,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "323763c556a21f09ded5841225cc0ba7", @@ -1106,26 +1106,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7191d879-f62f-4e25-9b26-2be9166c6b4c", + "apim-request-id": "a05cbd3a-8c52-48f5-a3e9-f3c59f9bf7a4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:34 GMT", + "Date": "Mon, 16 Nov 2020 19:11:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "67" + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -1135,7 +1135,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1144,7 +1144,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "64b4cdff78343c81df81a6013c91f891", @@ -1153,26 +1153,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b7d3cd31-225f-4504-baea-cefcabbf0542", + "apim-request-id": "1ba7a558-441c-4b51-85c3-188494db0706", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:35 GMT", + "Date": "Mon, 16 Nov 2020 19:11:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "67" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -1182,7 +1182,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1191,7 +1191,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "aa54b565ecd417976513093e80dbc5fd", @@ -1200,26 +1200,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ec36e7ff-e2d7-4fc0-90cf-d7015bd1ba6c", + "apim-request-id": "04b3b9ab-a00b-43a8-99a7-83544f180bee", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:36 GMT", + "Date": "Mon, 16 Nov 2020 19:11:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "64" + "x-envoy-upstream-service-time": "68" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -1229,7 +1229,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1238,7 +1238,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e2305d70cc544ce8e2fa5220af07e24c", @@ -1247,26 +1247,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6c0a4404-e323-4f32-bb7a-db7f3099c667", + "apim-request-id": "693b0c0c-7996-4982-8fd3-acc1ada2473e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:38 GMT", + "Date": "Mon, 16 Nov 2020 19:11:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "63" + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -1276,7 +1276,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1285,7 +1285,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "70acf2dd617813d2359dff216e43bb04", @@ -1294,26 +1294,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a6e3201b-83e4-48d3-bb51-0ccc5e8c01ce", + "apim-request-id": "7c4323a8-371f-4724-97b5-0dcad1c0ff72", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:40 GMT", + "Date": "Mon, 16 Nov 2020 19:11:42 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": "50" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -1323,7 +1323,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1332,7 +1332,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "df91a9bb1561983ccc07c8da9977675d", @@ -1341,26 +1341,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e1253bcc-5ccb-4c9f-a1f1-a0a49209ebff", + "apim-request-id": "6b7344cd-831e-463f-8d56-294775e31846", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:41 GMT", + "Date": "Mon, 16 Nov 2020 19:11:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "60" + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -1370,7 +1370,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1379,7 +1379,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8e60bc30552e0e848b1cacb7cdc7dd9f", @@ -1388,26 +1388,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "67356597-2434-42da-aeab-9923951e7921", + "apim-request-id": "4bbb9d2d-b3aa-4e2f-a705-bdde6d24a7a1", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:42 GMT", + "Date": "Mon, 16 Nov 2020 19:11:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "62" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -1417,7 +1417,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1426,7 +1426,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "06654e3f0376c7ebb614a37099f87abe", @@ -1435,26 +1435,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "af893cf2-6968-4756-9831-6b113e7011e2", + "apim-request-id": "5d0f5fd1-deaf-4918-95e3-6d2386554895", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:43 GMT", + "Date": "Mon, 16 Nov 2020 19:11:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -1464,7 +1464,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1473,7 +1473,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b2f0a1362de265d5248254446985cb04", @@ -1482,26 +1482,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c4d8c3ef-be08-4f0f-b145-4d1499cb1f51", + "apim-request-id": "0bb69956-2b22-4831-819a-dc877d190f8d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:44 GMT", + "Date": "Mon, 16 Nov 2020 19:11:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -1511,7 +1511,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1520,7 +1520,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4a9a282a60112de7d198d81ab1147592", @@ -1529,26 +1529,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c4f90d09-88f3-4e07-96ed-8b692eb62e3e", + "apim-request-id": "225890fd-fa09-4378-9e58-34523725d00d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:45 GMT", + "Date": "Mon, 16 Nov 2020 19:11:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "66" + "x-envoy-upstream-service-time": "67" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -1558,7 +1558,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1567,7 +1567,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2b80eea22bd612bc78ffe2f3aea65e30", @@ -1576,26 +1576,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7e0a6d3f-f429-40e5-a7f0-420ccf05abcb", + "apim-request-id": "a0737656-62ba-453b-b47b-7b8da86780c7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:46 GMT", + "Date": "Mon, 16 Nov 2020 19:11:49 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": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -1605,7 +1605,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1614,7 +1614,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "70459f492f5dd6acbac3e14954bbb40f", @@ -1623,26 +1623,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b22bb1a0-6edc-439d-8fe9-bdd6ddd139c0", + "apim-request-id": "a242cc43-6d49-4936-bbe1-687b98c1edca", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:48 GMT", + "Date": "Mon, 16 Nov 2020 19:11:50 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": "46" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -1652,7 +1652,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1661,7 +1661,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7aa2c10d9f04ff2e6c88d2127df37e2a", @@ -1670,26 +1670,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6d57631c-90db-4f8d-bca3-0d84abab5754", + "apim-request-id": "5aad212c-d183-48cc-8841-e80a8454fd3a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:49 GMT", + "Date": "Mon, 16 Nov 2020 19:11:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "54" + "x-envoy-upstream-service-time": "62" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -1699,7 +1699,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1708,7 +1708,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "12d1a73a04ce733541aa71124973bdbc", @@ -1717,26 +1717,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a1b21712-762d-417f-baca-0cdc39307261", + "apim-request-id": "f4c9613a-1337-42a8-af3f-78f29523bea0", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:50 GMT", + "Date": "Mon, 16 Nov 2020 19:11:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "62" + "x-envoy-upstream-service-time": "92" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -1746,7 +1746,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1755,7 +1755,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ede6d34be304a92c704604d55d9a58c6", @@ -1764,26 +1764,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2b3a2879-babf-4f7a-a2ce-d76ca7aa5757", + "apim-request-id": "19f121ff-c38a-4362-9f9b-05c48c6cd300", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:52 GMT", + "Date": "Mon, 16 Nov 2020 19:11:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -1793,7 +1793,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1802,7 +1802,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ad0eb645a1ea09408c2f395a2d1bb5f8", @@ -1811,26 +1811,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "816bb7cb-6ae7-4cdd-9287-681d8cb42daa", + "apim-request-id": "42775025-360c-40f6-af6d-b0d77bce824d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:53 GMT", + "Date": "Mon, 16 Nov 2020 19:11:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -1840,7 +1840,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1849,7 +1849,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "aac615ca910d56257b27a187ff5f15a7", @@ -1858,26 +1858,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2b46e8a6-f44f-447c-8a4b-ae7f4cbb6f01", + "apim-request-id": "093a45b5-53fd-45d7-9f77-983d1d1cabfd", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:54 GMT", + "Date": "Mon, 16 Nov 2020 19:11:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "82" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -1887,7 +1887,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1896,7 +1896,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "93cdab521065aad192dc60d5aad17c55", @@ -1905,26 +1905,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "96f2eb35-61a1-4347-88c1-5accc0c07ff3", + "apim-request-id": "6dba647d-e49b-4262-8b19-6aaf894b05c5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:56 GMT", + "Date": "Mon, 16 Nov 2020 19:11:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -1934,7 +1934,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1943,7 +1943,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "470b0c91add3b4b891b832c3ffb8092c", @@ -1952,26 +1952,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ef6b2a9e-ae92-4551-8206-086fb4024c93", + "apim-request-id": "7d2afb79-9724-4947-bb62-d04660bd2fa4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:57 GMT", + "Date": "Mon, 16 Nov 2020 19:11:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -1981,7 +1981,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1990,7 +1990,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "82089119214eba93431c18303050aca9", @@ -1999,26 +1999,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a8a5d9c6-73ac-47b3-aeb3-736128957936", + "apim-request-id": "ab409ba7-4fa5-4b46-a83e-1e9896dadbf0", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:58 GMT", + "Date": "Mon, 16 Nov 2020 19:12:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "76" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -2028,7 +2028,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2037,7 +2037,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f3f64caace54a4d3f21801addd0eabd9", @@ -2046,26 +2046,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a1b6f069-2ba6-47c1-8d67-d7d09d36004f", + "apim-request-id": "34f8cab0-a759-4b70-988d-080ed4692ff9", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:16:59 GMT", + "Date": "Mon, 16 Nov 2020 19:12:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "68" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -2075,7 +2075,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2084,7 +2084,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "18bc34d3fac96f07795003b695878341", @@ -2093,26 +2093,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bc875afe-339a-4acf-8f46-7cb7e0199b51", + "apim-request-id": "31156cac-805f-45a3-a71b-240ac37a939a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:00 GMT", + "Date": "Mon, 16 Nov 2020 19:12:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -2122,7 +2122,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2131,7 +2131,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b218890b15c24ad7be638f3520e6dc35", @@ -2140,9 +2140,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4e1a4f98-882b-4102-892d-2300ef3f2c5a", + "apim-request-id": "80ac0620-5933-4f64-977f-b7ec031103ba", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:02 GMT", + "Date": "Mon, 16 Nov 2020 19:12:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -2150,16 +2150,16 @@ }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -2169,7 +2169,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2178,7 +2178,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fc5d3e719393b0df45867a04ca1c0e6a", @@ -2187,26 +2187,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "48aa285b-c3be-46d0-abc6-cee8fd1d4eec", + "apim-request-id": "42257b2d-8bf8-46b5-8118-12cbda7337cd", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:03 GMT", + "Date": "Mon, 16 Nov 2020 19:12:05 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": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -2216,7 +2216,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2225,7 +2225,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "54a1c094f8f5be175c715a656ad14f92", @@ -2234,26 +2234,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e2d70afa-55c6-420a-8684-db3cab18ce11", + "apim-request-id": "a0f322b7-7bbf-4995-93ba-d37fa0257552", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:04 GMT", + "Date": "Mon, 16 Nov 2020 19:12:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "66" + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -2263,7 +2263,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2272,7 +2272,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5745cd74872a78ada9676d3c9ad37fa1", @@ -2281,26 +2281,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "88be9043-c137-4097-8e3c-69f1b81b7082", + "apim-request-id": "4428daf1-9115-4884-9503-864cc2c6820b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:05 GMT", + "Date": "Mon, 16 Nov 2020 19:12:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-envoy-upstream-service-time": "65" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -2310,7 +2310,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2319,7 +2319,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5fa0245588447940279e9f2239794674", @@ -2328,26 +2328,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0d3b5631-7275-4f1a-9b23-79741166d521", + "apim-request-id": "be89dc0b-5747-46c1-a638-8d6e39122c2e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:06 GMT", + "Date": "Mon, 16 Nov 2020 19:12:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -2357,7 +2357,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2366,7 +2366,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fd90e736b7d70d3f1329aa8d8bda2389", @@ -2375,26 +2375,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "90721526-89b0-498e-be8f-285cb0108482", + "apim-request-id": "8c335140-75b4-4688-afdb-06d68196652b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:08 GMT", + "Date": "Mon, 16 Nov 2020 19:12:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "78" + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -2404,7 +2404,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2413,7 +2413,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4510b9f1f030eb4d8dcc308be88b3e30", @@ -2422,26 +2422,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "93f34cf7-9269-4c55-9d3e-0720e55c722f", + "apim-request-id": "d7f131cd-8cc5-473f-8e4f-9b90e4d2c410", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:09 GMT", + "Date": "Mon, 16 Nov 2020 19:12:12 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": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -2451,7 +2451,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2460,7 +2460,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b305f92182439dc9e4934b1bddb2ed4c", @@ -2469,26 +2469,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "59764a4b-ac9d-4fe8-8593-f85b6907995e", + "apim-request-id": "bcfdacc2-b07f-401b-a6fa-7025922610d4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:10 GMT", + "Date": "Mon, 16 Nov 2020 19:12:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "78" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -2498,7 +2498,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2507,7 +2507,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7f30167b0168464399a46f0b87b42488", @@ -2516,26 +2516,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "16d8c3f4-a2f1-4709-ba25-b64d88c8dae4", + "apim-request-id": "9b39e1c8-d568-4e69-a697-a36678f05dfa", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:11 GMT", + "Date": "Mon, 16 Nov 2020 19:12:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "54" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -2545,7 +2545,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2554,7 +2554,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "926c7aea70d56f45ef72609da4320edb", @@ -2563,26 +2563,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cf4e13bf-1ea4-4bb2-9ad3-8d9b0bd9b192", + "apim-request-id": "01a9d3a7-c8db-4d25-9fa2-45a77f0bdb0e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:12 GMT", + "Date": "Mon, 16 Nov 2020 19:12:15 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": "38" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -2592,7 +2592,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2601,7 +2601,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d210e3debe5b20c7b5bf199f13bd1630", @@ -2610,26 +2610,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a3c40fc6-6883-4622-b654-9db542836a59", + "apim-request-id": "1897b62f-8c1c-4dfa-a1b5-a3dd800f5382", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:13 GMT", + "Date": "Mon, 16 Nov 2020 19:12:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "65" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -2639,7 +2639,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2648,7 +2648,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6331c36e5b460b76d0c190f6a0a5a167", @@ -2657,26 +2657,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d5b608fa-7426-4b3a-b4b0-328364a607d9", + "apim-request-id": "76baaba7-d15b-4b1f-9949-c32a6c9e05cf", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:15 GMT", + "Date": "Mon, 16 Nov 2020 19:12:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -2686,7 +2686,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2695,7 +2695,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a32d949552a32b2db24bdc1656a65b31", @@ -2704,26 +2704,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fd5ca136-a723-4761-a69e-07a1801815e6", + "apim-request-id": "15a2a74b-3a02-4233-94cd-ce74f58b040e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:16 GMT", + "Date": "Mon, 16 Nov 2020 19:12:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -2733,7 +2733,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2742,7 +2742,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e12e2f5caa0082946d05019a2ed17f10", @@ -2751,26 +2751,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1a0e3b13-653d-48af-a8d2-3b433a91e6ab", + "apim-request-id": "f8b340b0-6228-4cd4-b6e7-dbcc04ea3e90", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:17 GMT", + "Date": "Mon, 16 Nov 2020 19:12:20 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": "51" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -2780,7 +2780,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2789,7 +2789,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7f09b11d72901c8d9606b0fa7e60b42a", @@ -2798,26 +2798,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b413c516-edff-4658-86dd-a540b17e2f20", + "apim-request-id": "e8bb24e1-15d0-4d44-b728-eae07b954e39", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:18 GMT", + "Date": "Mon, 16 Nov 2020 19:12:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "59" + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -2827,7 +2827,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2836,7 +2836,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "71995e65c077eb67ffaa369e5093fce1", @@ -2845,26 +2845,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ef5701a9-134f-430c-87fb-5b99627b5133", + "apim-request-id": "16a9f739-b69d-4c65-8806-42a7a6ad6ce1", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:20 GMT", + "Date": "Mon, 16 Nov 2020 19:12:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -2874,7 +2874,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2883,7 +2883,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a5f8ccccdc9ce9a1a1124bf9f99a040c", @@ -2892,26 +2892,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0d8210e7-0d95-4b82-a168-0ce9775a7846", + "apim-request-id": "e1ac99ae-42f2-48e4-8071-adff1f466610", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:21 GMT", + "Date": "Mon, 16 Nov 2020 19:12:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -2921,7 +2921,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2930,7 +2930,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d034d7510e375d994a1e7fe63cefcb03", @@ -2939,26 +2939,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f11861b0-59f4-4d66-8a4f-6ffffa4b0c7d", + "apim-request-id": "beb9c467-c8c5-49e7-91d5-75c7c5bfd811", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:22 GMT", + "Date": "Mon, 16 Nov 2020 19:12:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "77" + "x-envoy-upstream-service-time": "56" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -2968,7 +2968,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2977,7 +2977,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b22ecf0a0e67888dbdb0cf65756df164", @@ -2986,26 +2986,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f8229de1-5e11-4b26-b573-73afb74f645b", + "apim-request-id": "e42abe50-e102-4945-a977-1a3d3fa0fe50", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:23 GMT", + "Date": "Mon, 16 Nov 2020 19:12:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "63" + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -3015,7 +3015,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3024,7 +3024,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "794d29a62c5ebda9339b5b7e5cbaacb2", @@ -3033,26 +3033,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c5965b74-34fe-4b67-8d3b-1cf91ff2f1a3", + "apim-request-id": "abc24296-9904-43d3-b61c-3e5c0821b897", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:25 GMT", + "Date": "Mon, 16 Nov 2020 19:12:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -3062,7 +3062,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3071,7 +3071,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "29ef4846516c42a549ac12863f33e8dc", @@ -3080,26 +3080,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d16ca38f-b557-4118-a770-7a4aa05e6e6e", + "apim-request-id": "b3151ad1-d6e1-4c29-ae76-d87de584138c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:26 GMT", + "Date": "Mon, 16 Nov 2020 19:12:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -3109,7 +3109,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3118,7 +3118,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "12401b2c51a2dda425707fcbb30f2b02", @@ -3127,26 +3127,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "52a85b7a-ec16-4918-bfa1-04915885bc3a", + "apim-request-id": "6390b488-b2dd-441d-b90d-a2cb85fd8eab", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:27 GMT", + "Date": "Mon, 16 Nov 2020 19:12:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -3156,7 +3156,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3165,7 +3165,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2c1e1c03c77d54f8840a30b119237eff", @@ -3174,26 +3174,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ea7e692b-aa79-4dd0-a0ec-0736e688e7fe", + "apim-request-id": "4531b8f7-f058-4337-8e82-0f1d17d4a310", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:28 GMT", + "Date": "Mon, 16 Nov 2020 19:12:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "65" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -3203,7 +3203,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3212,7 +3212,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "41517eb39a7af410a31103fcd2d98e39", @@ -3221,26 +3221,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "375a34d2-4ad0-4e58-aa82-fce793ee6936", + "apim-request-id": "099c79d9-db43-4c25-9e2d-c91debdaeb8f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:30 GMT", + "Date": "Mon, 16 Nov 2020 19:12:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "68" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -3250,7 +3250,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3259,7 +3259,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "22821080bb15655e22eb8e9721f2c402", @@ -3268,26 +3268,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "10dc80f2-1bea-4a87-a22e-e60d93e91ab9", + "apim-request-id": "60af9086-d150-4b0a-9c23-ff031942fe63", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:31 GMT", + "Date": "Mon, 16 Nov 2020 19:12:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -3297,7 +3297,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3306,7 +3306,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "341880f1eabe69880c29896cc3fc82aa", @@ -3315,26 +3315,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6a51ddc9-6f4d-4b56-8083-6b66b0a98d1b", + "apim-request-id": "5706cd69-c881-456c-ad9e-0bbc5a0316de", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:32 GMT", + "Date": "Mon, 16 Nov 2020 19:12:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "83" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -3344,7 +3344,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3353,7 +3353,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0831f67c5ca0f7e920ec1e8e0b78d3b0", @@ -3362,26 +3362,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9407aed8-ce84-49d9-87e0-11e92302d3f1", + "apim-request-id": "9c74980c-b612-4a55-9665-102f2a49e0f0", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:33 GMT", + "Date": "Mon, 16 Nov 2020 19:12:36 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": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -3391,7 +3391,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3400,7 +3400,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "520a014c59c1967b871815eb31f2a126", @@ -3409,26 +3409,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fb19604b-0e6e-4f1d-b9be-2d0ee1c4bba0", + "apim-request-id": "86277a7f-cbf6-4498-8b50-cb5c914e2978", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:34 GMT", + "Date": "Mon, 16 Nov 2020 19:12:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "61" + "x-envoy-upstream-service-time": "52" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -3438,7 +3438,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3447,7 +3447,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2b1ae469bbc19462962014d1cbfa5e93", @@ -3456,26 +3456,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f5d94cc3-be9c-4fb2-840f-4e1ea5e457cb", + "apim-request-id": "0df18151-f8a2-427f-bf4f-0eb8afbeda45", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:35 GMT", + "Date": "Mon, 16 Nov 2020 19:12:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -3485,7 +3485,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3494,7 +3494,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c21fd95630f122e97a9b818746fec62e", @@ -3503,26 +3503,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4517363e-38c7-4ec1-991d-421a9573ef44", + "apim-request-id": "673cce9e-ee89-4938-b45c-a8819297a428", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:37 GMT", + "Date": "Mon, 16 Nov 2020 19:12:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "63" + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -3532,7 +3532,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3541,7 +3541,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2725f84aa75d91ef9e76bba045aaca8d", @@ -3550,26 +3550,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "05fd55a4-d3fc-4e77-addf-a86cef538b8a", + "apim-request-id": "5433edfa-bb9a-4cba-aa7d-8f8b777113e8", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:38 GMT", + "Date": "Mon, 16 Nov 2020 19:12:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "52" + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -3579,7 +3579,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3588,7 +3588,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "589582baded33935faf8b0263ada4d98", @@ -3597,26 +3597,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "adac11c5-9a2f-4db5-a307-a4fa9e298640", + "apim-request-id": "df4c1922-48ff-462f-a4be-d6fca3957dd7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:39 GMT", + "Date": "Mon, 16 Nov 2020 19:12:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "57" + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -3626,7 +3626,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3635,7 +3635,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d386e55a36d4ae35e98e237b7449ddd0", @@ -3644,26 +3644,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a4878140-b33f-4865-be2c-bbafc9b6ec10", + "apim-request-id": "2f88ef3b-9d63-4e20-b3ec-a9565e036a29", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:40 GMT", + "Date": "Mon, 16 Nov 2020 19:12:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "64" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -3673,7 +3673,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3682,7 +3682,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c4cdf3d06d686c5bc3ec2c65f7c956c3", @@ -3691,26 +3691,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aca42629-fed2-42b4-aa60-e825d69537df", + "apim-request-id": "d091eeff-929b-414d-88fd-cb23737d0c57", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:41 GMT", + "Date": "Mon, 16 Nov 2020 19:12:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -3720,7 +3720,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3729,7 +3729,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5f452328f72383b84ce66e44bab9c4b1", @@ -3738,26 +3738,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9b2c54cb-faf2-4c5a-9b06-b6a0079746e7", + "apim-request-id": "eec330f8-a2c9-4849-8e1f-958fbbaf422a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:43 GMT", + "Date": "Mon, 16 Nov 2020 19:12:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "73" + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -3767,7 +3767,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3776,7 +3776,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4655e01b890ded2f8a1a0fe80acfb720", @@ -3785,26 +3785,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "702343f9-6119-4aae-bbad-0c8d2be3f05e", + "apim-request-id": "44b0ed61-907b-4da3-a509-be2e2ba9b3b2", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:45 GMT", + "Date": "Mon, 16 Nov 2020 19:12:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -3814,7 +3814,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3823,7 +3823,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "505260377d03d8ad3b497782fe16b109", @@ -3832,26 +3832,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9536c6e6-2be4-4ac0-8dad-6b23b0710631", + "apim-request-id": "11a4e937-0bbb-4edb-9030-76e6bbefbd8f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:46 GMT", + "Date": "Mon, 16 Nov 2020 19:12:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -3861,7 +3861,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3870,7 +3870,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "174a7b270f739fb5f458d508e7cf797c", @@ -3879,26 +3879,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d96a9bf6-5748-450e-b26d-c7cbfb7ac39a", + "apim-request-id": "c2874abf-dd39-459b-9dcd-2cb05ae7cf6b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:47 GMT", + "Date": "Mon, 16 Nov 2020 19:12:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "63" + "x-envoy-upstream-service-time": "72" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -3908,7 +3908,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3917,7 +3917,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5a0d4d2f73679dae327c0bc411adee74", @@ -3926,26 +3926,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5559035e-3963-42a1-b399-6256f6fd9774", + "apim-request-id": "81911eae-290a-4d30-ba07-4a76d74ac4b0", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:48 GMT", + "Date": "Mon, 16 Nov 2020 19:12:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-envoy-upstream-service-time": "68" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -3955,7 +3955,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3964,7 +3964,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8ec10668a08527adaab35caba8a4f16b", @@ -3973,26 +3973,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dc0b22d6-d2db-45e9-843b-71af6bf1f780", + "apim-request-id": "1852e8a5-ead9-49a7-a5ee-981e0d7106f5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:50 GMT", + "Date": "Mon, 16 Nov 2020 19:12:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "57" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -4002,7 +4002,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4011,7 +4011,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b052fbd05708b3a2cdade4f604f18d46", @@ -4020,26 +4020,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "47ad424d-d35e-435e-936e-d07b0c1d57fb", + "apim-request-id": "d785b4ba-cd15-4307-8b2c-0c886bffbd1b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:51 GMT", + "Date": "Mon, 16 Nov 2020 19:12:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "52" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -4049,7 +4049,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4058,7 +4058,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e19f6069ea0e8ff7a0e5b0b31702f58e", @@ -4067,26 +4067,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7503881b-5091-4c5e-a9b5-d494d3024f14", + "apim-request-id": "b3503b5d-1b66-4b32-8030-b6813bcdee1a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:52 GMT", + "Date": "Mon, 16 Nov 2020 19:12:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -4096,7 +4096,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4105,7 +4105,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "16f39f8b3d5a116b640dc1d8bbb623b8", @@ -4114,26 +4114,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a347f4bb-d1c2-4b4f-8365-3f6a05671fbd", + "apim-request-id": "2fd975fe-25e8-4659-886c-ed9d12c3b8f3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:53 GMT", + "Date": "Mon, 16 Nov 2020 19:12:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -4143,7 +4143,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4152,7 +4152,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "474115251004e55c03c31023a6ee9cca", @@ -4161,26 +4161,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c036ce2e-5622-4973-acfa-0a41d683a404", + "apim-request-id": "5262c526-f6f3-4c85-8939-c6e00d85895e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:54 GMT", + "Date": "Mon, 16 Nov 2020 19:12:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "64" + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -4190,7 +4190,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4199,7 +4199,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "646b55b777fd2cecf58e7c01291fd3e9", @@ -4208,26 +4208,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ed9d1325-eac8-4bd3-bf1d-ec8828ce18aa", + "apim-request-id": "18501b49-f146-40f6-b28c-479592cd1fbe", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:56 GMT", + "Date": "Mon, 16 Nov 2020 19:12:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -4237,7 +4237,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4246,7 +4246,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "018ef7c2adc17b89430e12972d486a75", @@ -4255,26 +4255,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8e65d04f-8438-4fab-8a14-bcc75e82319a", + "apim-request-id": "02cd1c2d-d5a1-4edd-9845-436b118e6995", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:57 GMT", + "Date": "Mon, 16 Nov 2020 19:12: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": "69" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -4284,7 +4284,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4293,7 +4293,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6520f670be4aadba29155276935bbbe3", @@ -4302,26 +4302,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8ff4d4fc-6f7a-45c1-934d-648ad7d1dbef", + "apim-request-id": "d71259be-44b5-4c1b-b669-51e46097a6ba", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:58 GMT", + "Date": "Mon, 16 Nov 2020 19:13:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -4331,7 +4331,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4340,7 +4340,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "af6026ef9b600a08ccf021ef6454fead", @@ -4349,26 +4349,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "97f0c88e-ba25-434c-a89a-5729ee6f9b03", + "apim-request-id": "54b68537-0a5d-45b2-b045-ef1561cc0b30", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:17:59 GMT", + "Date": "Mon, 16 Nov 2020 19:13:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "58" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -4378,7 +4378,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4387,7 +4387,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "329006236dff039f3de0d7ac5a13e8e8", @@ -4396,26 +4396,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "980e9bbb-0d9e-4827-8095-c84b4b5e3bee", + "apim-request-id": "cd54583d-7f4e-44cc-abb6-d26a831a3cba", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:00 GMT", + "Date": "Mon, 16 Nov 2020 19:13:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "50" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -4425,7 +4425,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4434,7 +4434,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "06a72f52bbe7d515ee15995a9dcb49d5", @@ -4443,26 +4443,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7af582e4-459c-47ba-b4e8-e2787143f38b", + "apim-request-id": "268e2050-49c6-4954-be66-831efb203b89", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:01 GMT", + "Date": "Mon, 16 Nov 2020 19:13:04 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": "51" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -4472,7 +4472,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4481,7 +4481,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8c53a51688ca81e4875d717fc45cafb8", @@ -4490,26 +4490,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a12bcd7c-a43e-434b-8680-48b8a367b162", + "apim-request-id": "69bedaa4-b53a-4850-912c-6b47ece29773", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:03 GMT", + "Date": "Mon, 16 Nov 2020 19:13:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -4519,7 +4519,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4528,7 +4528,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "359c3808f8ad67c5f1bb44e9d4446572", @@ -4537,26 +4537,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "46f2b302-2f70-461b-a829-e69cdb76f709", + "apim-request-id": "6f830c34-57b0-4432-9f18-c679b1d6021e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:04 GMT", + "Date": "Mon, 16 Nov 2020 19:13:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -4566,7 +4566,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4575,7 +4575,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b59602975bc0ca1d4a257f894a961191", @@ -4584,26 +4584,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8aeb56b7-e0b5-4fb2-84fb-18ead23ebeaf", + "apim-request-id": "38d3255a-d9d9-432a-bf15-6b8cb9cfff65", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:05 GMT", + "Date": "Mon, 16 Nov 2020 19:13:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -4613,7 +4613,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4622,7 +4622,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6552e166132e1d28dfeb9b0e44faad42", @@ -4631,26 +4631,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f1d72ae9-8585-4eb8-9d49-84e14981191d", + "apim-request-id": "e806b182-8fe4-4c1a-8b69-a6a470178268", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:06 GMT", + "Date": "Mon, 16 Nov 2020 19:13:09 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": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -4660,7 +4660,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4669,7 +4669,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c2e8fff7fac6acf81ad2ea87783c1d5a", @@ -4678,26 +4678,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a0bef8e3-a725-471c-97f3-35426f265793", + "apim-request-id": "87465950-0b63-42a1-9a72-bd20417957d8", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:07 GMT", + "Date": "Mon, 16 Nov 2020 19:13:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -4707,7 +4707,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4716,7 +4716,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f283b3aa00f28343d978d6d4c00f8550", @@ -4725,26 +4725,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bdf91fd8-fcdd-4294-a070-31796cdd25f8", + "apim-request-id": "2d2001f6-e052-4c58-89e1-5a3a53b4dc42", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:09 GMT", + "Date": "Mon, 16 Nov 2020 19:13:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -4754,7 +4754,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4763,7 +4763,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4a913c774ead6bcbe9a54a5c28a0a4a3", @@ -4772,26 +4772,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fa68e7f7-954f-413d-938e-4f20c1953862", + "apim-request-id": "691acd4d-619f-42b1-bce7-939b528324dd", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:10 GMT", + "Date": "Mon, 16 Nov 2020 19:13:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -4801,7 +4801,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4810,7 +4810,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "916440cebb76f74fbc64e84d2423eb0b", @@ -4819,26 +4819,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "359df090-4ed7-4b51-859b-63b999567c3a", + "apim-request-id": "e5dce1d8-1527-4375-9022-55c0861962fd", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:11 GMT", + "Date": "Mon, 16 Nov 2020 19:13:14 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": "55" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -4848,7 +4848,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4857,7 +4857,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3b0f9a4cd2aa5bade717094db6e65a39", @@ -4866,26 +4866,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9144aefc-dc92-49c1-940d-c7ba6039c5c1", + "apim-request-id": "dbed4900-ac8a-4c0b-8f7a-3c5c8087b316", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:12 GMT", + "Date": "Mon, 16 Nov 2020 19:13:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "55" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -4895,7 +4895,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4904,7 +4904,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "800532d3f4abbcd9ed9a8d48667d47c5", @@ -4913,26 +4913,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b4554935-8c23-4cca-8890-5ef5bc791b9c", + "apim-request-id": "ea764056-040c-4bd9-b4bd-b1ca293ecd02", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:13 GMT", + "Date": "Mon, 16 Nov 2020 19:13:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-envoy-upstream-service-time": "66" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -4942,7 +4942,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4951,7 +4951,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8d103eb96990fcf89308a95fb10240d6", @@ -4960,26 +4960,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a0677d00-31f6-4d8f-9b32-015af56e5fdb", + "apim-request-id": "9305f961-884a-4bbd-a3db-33ac98fe4f9d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:15 GMT", + "Date": "Mon, 16 Nov 2020 19:13:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "54" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 0, "failed": 0, @@ -4989,7 +4989,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4998,7 +4998,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f17aae096b1e5760c1534e104464f469", @@ -5007,120 +5007,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7961a00b-0d70-42a5-b7a3-330685405566", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:17 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "41" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "779344d0cdd56aa93a09eda24b790bea", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "045c5698-2579-4415-88d1-c9b68811faf4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:18 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "b73eb75956034ea6deb9cb3d1ae8b72e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "963c2d88-0f80-48f5-a60f-8948fa5959fb", + "apim-request-id": "4d0120a1-6df3-4ffb-b6dd-72111c7e99c3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:19 GMT", + "Date": "Mon, 16 Nov 2020 19:13:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "105" + "x-envoy-upstream-service-time": "166" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "8a73d00a-416e-40b3-8126-f12390f0d971_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:16:08Z", - "createdDateTime": "2020-11-13T22:16:07Z", - "expirationDateTime": "2020-11-14T22:16:07Z", + "jobId": "ff9efa53-d406-45e4-8db1-b7a08879c959_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:11:10Z", + "createdDateTime": "2020-11-16T19:11:09Z", + "expirationDateTime": "2020-11-17T19:11:09Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08Z" + "lastUpdateDateTime": "2020-11-16T19:11:10Z" }, "completed": 1, "failed": 0, @@ -5129,7 +5035,7 @@ "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:16:08.2716535Z", + "lastUpdateDateTime": "2020-11-16T19:11:10.4401542Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomainAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomainAsync.json index 5111223d986cd..f4663462887f8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomainAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationBatchWithPHIDomainAsync.json @@ -11,9 +11,9 @@ "Content-Length": "311", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a89cecf1bd66c14c8a8f558649d4bb1c-6deba77d112ad145-00", + "traceparent": "00-f7a71da1ff1272419b62b9c798076c0d-2863fe2908fcd047-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "dbcf75b1d6cb24fdb41d742a5d142b0a", @@ -43,18 +43,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "3dae3757-55fb-4c62-bf9b-40da8a15438f", - "Date": "Fri, 13 Nov 2020 22:20:37 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", + "apim-request-id": "3ac58cbe-e29f-4a72-83fe-9590d65a4d79", + "Date": "Mon, 16 Nov 2020 19:15:40 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "214" + "x-envoy-upstream-service-time": "257" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -63,7 +63,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4c8042efa9b72511ebff89e389aea38e", @@ -72,26 +72,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a44a378e-c31f-40cb-bc4c-e5814b58bff5", + "apim-request-id": "b1699e2e-70bc-4eb3-8ddf-41524aed3b4d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:37 GMT", + "Date": "Mon, 16 Nov 2020 19:15:40 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": "13" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:40Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:40Z" }, "completed": 0, "failed": 0, @@ -101,7 +101,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -110,7 +110,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d874985d95266ebb9878278edaa670b9", @@ -119,26 +119,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "786f028e-6678-4361-8b96-4bd2ca502fd3", + "apim-request-id": "fc505549-d2f8-4d7d-85d4-794d67a41824", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:38 GMT", + "Date": "Mon, 16 Nov 2020 19:15:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", - "status": "notStarted", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", + "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -148,7 +148,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -157,7 +157,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "75458861a56107e864a9f0cb4c199a06", @@ -166,26 +166,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8e90cde5-bb62-4ddd-b602-b3a6ce0cae28", + "apim-request-id": "af2ab3d2-f4a1-4269-860b-65cc928e3a7a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:39 GMT", + "Date": "Mon, 16 Nov 2020 19:15:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -195,7 +195,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -204,7 +204,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c4cce67952a059e38711b33f82834b45", @@ -213,26 +213,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "48c2c604-ab00-41b2-92e1-09b801cfe54c", + "apim-request-id": "d8190be8-be7e-4ba6-8bf0-3e3f7093587e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:41 GMT", + "Date": "Mon, 16 Nov 2020 19:15:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "77" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -242,7 +242,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -251,7 +251,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0182d08f2e68b82daf6c747ca5ef217e", @@ -260,26 +260,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b9ee03ae-0e46-402c-865a-fbbcdb818995", + "apim-request-id": "f3a6f64a-44dc-43cc-80b8-c0cbad791a74", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:42 GMT", + "Date": "Mon, 16 Nov 2020 19:15:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -289,7 +289,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -298,7 +298,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f31420deabd90f18a4ecee4ff1a985e1", @@ -307,9 +307,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ff058a01-32c3-4a5d-b0cf-2fb8de3179a5", + "apim-request-id": "53a94840-e4a6-4fbf-bb23-50a8b6a91f58", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:43 GMT", + "Date": "Mon, 16 Nov 2020 19:15:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -317,16 +317,16 @@ }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -336,7 +336,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -345,7 +345,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7c3cab5e99974b9db9141433dd67b397", @@ -354,26 +354,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "97780943-08ca-4a34-b907-636560a8d645", + "apim-request-id": "83c03df3-b5a2-4022-b3eb-a16265c2ce4c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:44 GMT", + "Date": "Mon, 16 Nov 2020 19:15:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "67" + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -383,7 +383,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -392,7 +392,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "616034ef576ee36bb7725c7c40ddc605", @@ -401,26 +401,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2f0e74c8-542d-437d-a535-7e81db01670a", + "apim-request-id": "c0eec639-9a21-4f5b-b800-e3742abfcdf6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:45 GMT", + "Date": "Mon, 16 Nov 2020 19:15:49 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": "73" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -430,7 +430,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -439,7 +439,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fa1e93e7a5b345e782c93ac496e4323d", @@ -448,26 +448,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f5098e5e-98de-4046-b967-e9777d764556", + "apim-request-id": "358f720d-f82d-4dd9-974b-283158c6d7de", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:46 GMT", + "Date": "Mon, 16 Nov 2020 19:15:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -477,7 +477,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -486,7 +486,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bc5f5738234907723f58c4243c200bdb", @@ -495,26 +495,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cb738336-48ce-4aed-8187-75548e997500", + "apim-request-id": "2247d9cf-a3f5-4527-965a-8c4a006a34f8", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:47 GMT", + "Date": "Mon, 16 Nov 2020 19:15:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -524,7 +524,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -533,7 +533,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "494c0e4db9494ae34d1bdea41ca64cd2", @@ -542,26 +542,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2c91bbf1-9c5e-49e2-9cce-83fdcc2f64f1", + "apim-request-id": "45ec4c9d-2679-4f22-bb24-736538013c2c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:49 GMT", + "Date": "Mon, 16 Nov 2020 19:15:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -571,7 +571,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -580,7 +580,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e8441e400a7ec3bc2017ba5be0c20861", @@ -589,9 +589,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dfd2621b-bf94-437f-9efb-2e96e110a768", + "apim-request-id": "ccf77599-1d8c-4184-993e-17021ebca7d3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:50 GMT", + "Date": "Mon, 16 Nov 2020 19:15:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -599,16 +599,16 @@ }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -618,7 +618,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -627,7 +627,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "88775fbee8987ff473156e2e45cdea98", @@ -636,26 +636,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b343f2e2-4a07-43a8-a539-5b17f631cab1", + "apim-request-id": "0c3a58b5-0e27-4538-bc37-d9c2b546afb4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:52 GMT", + "Date": "Mon, 16 Nov 2020 19:15:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "70" + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -665,7 +665,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -674,7 +674,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1de4f20b22dc435d52892831fe88698a", @@ -683,26 +683,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5eee1967-fee2-4c5b-b78b-e0bb1dbadd11", + "apim-request-id": "d2bd383b-8ed8-45cd-aad4-056249fb7c55", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:53 GMT", + "Date": "Mon, 16 Nov 2020 19:15:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -712,7 +712,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -721,7 +721,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bce67c12c42f583a2ac475689b8e7e53", @@ -730,26 +730,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5422aa1b-cb7a-4a0a-be5d-cd0441361895", + "apim-request-id": "73b765ad-da57-4a49-a443-ac9f06e7cf20", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:54 GMT", + "Date": "Mon, 16 Nov 2020 19:15:58 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": "46" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -759,7 +759,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -768,7 +768,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ee4f222cebde9c850234350ebfc281ea", @@ -777,26 +777,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "88f7f582-fc3a-4c9e-bd4e-8069f1d1d948", + "apim-request-id": "58523a58-02b1-4557-9116-252b9c22c6f6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:55 GMT", + "Date": "Mon, 16 Nov 2020 19:15:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-envoy-upstream-service-time": "53" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -806,7 +806,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -815,7 +815,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c81ce4ab2de74668b78bf218acf4a7c3", @@ -824,26 +824,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8cefe35f-df21-4081-b2bc-4b1ede2a2c31", + "apim-request-id": "610f3415-1eae-4e0c-8bde-b9b61e1414f0", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:57 GMT", + "Date": "Mon, 16 Nov 2020 19:16:01 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": "65" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -853,7 +853,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -862,7 +862,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "db05d50a7b3926acf74abafb8f2b9868", @@ -871,26 +871,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "44f9850f-68eb-49cc-900d-2f6a4129f3da", + "apim-request-id": "f7b3d33b-5b86-4f59-91d7-4574582daeee", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:58 GMT", + "Date": "Mon, 16 Nov 2020 19:16:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-envoy-upstream-service-time": "64" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -900,7 +900,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -909,7 +909,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b7bd8a43b672fe6bb9083652f86cef0e", @@ -918,26 +918,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b8ec0f40-50d7-4fa7-9034-5d7fc90fd329", + "apim-request-id": "0009d162-0179-4ea6-962e-bf254db4f232", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:59 GMT", + "Date": "Mon, 16 Nov 2020 19:16:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "52" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -947,7 +947,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -956,7 +956,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e903718ca5bc2fb137f5d09d736db78b", @@ -965,26 +965,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cc0b1405-9dc8-4a1a-bb8a-8583cd90429e", + "apim-request-id": "2b1d7c2b-8b51-4c97-b5d3-b00aaa719e7f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:00 GMT", + "Date": "Mon, 16 Nov 2020 19:16:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "48" + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -994,7 +994,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1003,7 +1003,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "21d58af3ef3754516a06223045592e8a", @@ -1012,26 +1012,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c5ef2485-ece2-4156-bf49-b5aeb1a1defe", + "apim-request-id": "17113a1f-0f6c-428b-8443-8d2f694c991d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:02 GMT", + "Date": "Mon, 16 Nov 2020 19:16:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "62" + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -1041,7 +1041,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1050,7 +1050,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1d6fac5aaf289dabd98d7f7de5ce8b4c", @@ -1059,9 +1059,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "45518e76-1d15-452f-8d36-48d47b12bd0d", + "apim-request-id": "bbf039ba-b071-4f03-8ab0-f42448d701a4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:03 GMT", + "Date": "Mon, 16 Nov 2020 19:16:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -1069,16 +1069,16 @@ }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -1088,7 +1088,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1097,7 +1097,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6d5faa51cd979cd620ae7fb58381eadd", @@ -1106,26 +1106,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "40f6cd6d-2c31-4d14-b38b-4a612a6ec9ac", + "apim-request-id": "90660f29-6f0a-4bca-862d-19f1c58818e5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:04 GMT", + "Date": "Mon, 16 Nov 2020 19:16:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -1135,7 +1135,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1144,7 +1144,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c74245c69afd4363df3748a970d46f9b", @@ -1153,26 +1153,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1758747a-00ba-4529-9704-139f1970720f", + "apim-request-id": "c9cce4f2-6232-43a0-8d7b-3d57178bd36f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:05 GMT", + "Date": "Mon, 16 Nov 2020 19:16:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "36" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -1182,7 +1182,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1191,7 +1191,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9aded57bc1fa8df3d5d2fc792ff51a58", @@ -1200,26 +1200,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "54f9aea0-0219-47b5-b397-9f8f13a55f5f", + "apim-request-id": "85e35a5d-d437-49cd-bdd0-e8069e886de5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:06 GMT", + "Date": "Mon, 16 Nov 2020 19:16:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -1229,7 +1229,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1238,7 +1238,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9fb6a1a2c38cb74e461b8e60852d2c4c", @@ -1247,26 +1247,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "198179c6-ab8a-4d6e-ba95-a0f5fb992be5", + "apim-request-id": "eb95bdc9-c3b5-4161-8765-b9f6bacb31a7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:07 GMT", + "Date": "Mon, 16 Nov 2020 19:16:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "64" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -1276,7 +1276,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1285,7 +1285,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ad3ae33f4fa205e352b5f12b9dea13ea", @@ -1294,26 +1294,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1793536f-c66c-4cf4-95b2-511077621a6b", + "apim-request-id": "d047543a-9d25-4638-a76d-0401c1795068", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:08 GMT", + "Date": "Mon, 16 Nov 2020 19:16:13 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": "65" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -1323,7 +1323,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1332,7 +1332,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ce06f01cd01db70f872753de339208a8", @@ -1341,26 +1341,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9fefe89c-f578-45c3-a896-c1ae0601c8e5", + "apim-request-id": "f9a51a6e-126f-495a-bd38-eb10373ead1f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:09 GMT", + "Date": "Mon, 16 Nov 2020 19:16:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "88" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -1370,7 +1370,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1379,7 +1379,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4c39b0a66dbb52b5beb14cd6d2231a5b", @@ -1388,26 +1388,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "392623b2-39c7-48a0-87ba-2e6f3c90b3ed", + "apim-request-id": "18b446d9-a667-4863-91da-d9e5a866fc5c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:11 GMT", + "Date": "Mon, 16 Nov 2020 19:16:15 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": "43" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -1417,7 +1417,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1426,7 +1426,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9444a3075d266f2ed382257bfc04d2c0", @@ -1435,26 +1435,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5deaaf25-8769-480a-882c-967ff33ee47b", + "apim-request-id": "fc735272-52ec-4348-9454-d1cde38817a9", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:13 GMT", + "Date": "Mon, 16 Nov 2020 19:16:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -1464,7 +1464,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1473,7 +1473,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ec8449adc7b1ae2f3bb3106c8338e564", @@ -1482,26 +1482,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6b1fd6eb-3554-4651-bae0-08e37b6bc106", + "apim-request-id": "b302ae99-3f20-4880-8baf-694f1761669a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:14 GMT", + "Date": "Mon, 16 Nov 2020 19:16:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "34" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -1511,7 +1511,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1520,7 +1520,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8fd6f80d734e488181c97838483956b9", @@ -1529,26 +1529,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ec5e4207-e0b8-461d-99af-c7f8277afcfa", + "apim-request-id": "f2c58c2b-4e23-4b18-b875-c78a372b7b2d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:15 GMT", + "Date": "Mon, 16 Nov 2020 19:16:19 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": "54" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -1558,7 +1558,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1567,7 +1567,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "88298cde2d9e40aa749559724dc2eb9b", @@ -1576,26 +1576,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2cb4c80d-8597-4d62-95c6-cce4c5fd2756", + "apim-request-id": "8accf654-065e-4efa-9aa8-edc0af4fcbe6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:16 GMT", + "Date": "Mon, 16 Nov 2020 19:16:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -1605,7 +1605,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1614,7 +1614,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "046ec19c432d3971c73c6be74ef66601", @@ -1623,26 +1623,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2bf06388-913a-4d82-929c-310aa681693f", + "apim-request-id": "e01e5240-7a54-40bb-b165-2c2dc0c3c603", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:17 GMT", + "Date": "Mon, 16 Nov 2020 19:16:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "58" + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -1652,7 +1652,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1661,7 +1661,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f78d565c5d0edfc54d961ab91a0ffbbf", @@ -1670,26 +1670,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b73e9693-d413-481b-a758-5e2ecc53e057", + "apim-request-id": "6814984f-315f-4993-8df0-74d33c3620a1", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:18 GMT", + "Date": "Mon, 16 Nov 2020 19:16:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "58" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -1699,7 +1699,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1708,7 +1708,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "869bddde52cb9b8b1af0c061c2c3f17e", @@ -1717,26 +1717,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ca525441-bd3e-4bd0-b6f6-2d7c6fa8d937", + "apim-request-id": "e7869bcf-f4b4-467e-b7c3-69e46d1310c7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:20 GMT", + "Date": "Mon, 16 Nov 2020 19:16:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -1746,7 +1746,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1755,7 +1755,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f615582ef4353f8cfb8eb69728b81fb8", @@ -1764,26 +1764,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "21a4afdc-9c8c-4b4f-9dca-d7b555a77ced", + "apim-request-id": "5a0bcc56-508b-4d8e-b5e1-664f5f08a767", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:21 GMT", + "Date": "Mon, 16 Nov 2020 19:16:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -1793,7 +1793,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1802,7 +1802,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7109ac41e05a0a35cbf1dd1e9c631d8a", @@ -1811,26 +1811,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "90faa8bd-b893-4866-a65c-816a01854cac", + "apim-request-id": "a4b6670a-f907-43f7-99e4-1bac8cfd02cb", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:22 GMT", + "Date": "Mon, 16 Nov 2020 19:16:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "64" + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -1840,7 +1840,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1849,7 +1849,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c18a9ba404f9e989505c8a3c9cf37261", @@ -1858,26 +1858,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "376cbbdd-c039-4674-bf11-9c41336f88a0", + "apim-request-id": "28250d2a-f5d8-45a6-aa61-ed2f5ed07ce9", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:23 GMT", + "Date": "Mon, 16 Nov 2020 19:16:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "69" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -1887,7 +1887,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1896,7 +1896,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "162008d080b94e23220b2a44176da397", @@ -1905,26 +1905,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c90c0af3-41c2-4f2d-86d0-5da378c1ca1f", + "apim-request-id": "d9246d38-af09-4c9c-9540-4b9cb0853195", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:25 GMT", + "Date": "Mon, 16 Nov 2020 19:16:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "65" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -1934,7 +1934,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1943,7 +1943,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8df32c715d2d3cbf221f20fe55f86dd7", @@ -1952,26 +1952,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ecbaa579-91ea-4b28-ba84-417c52a84c14", + "apim-request-id": "b360349f-bbad-4a8b-93dc-1acf0ed4933b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:26 GMT", + "Date": "Mon, 16 Nov 2020 19:16:30 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": "55" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -1981,7 +1981,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1990,7 +1990,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "944d7b7e074324d0783c9fedd945d2e2", @@ -1999,26 +1999,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cf5a180a-db46-49f5-aa37-92d1c800732d", + "apim-request-id": "9cbada19-54b2-4b26-b802-d916fcdbae32", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:27 GMT", + "Date": "Mon, 16 Nov 2020 19:16:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "58" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -2028,7 +2028,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2037,7 +2037,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "70cbf3b8e500723348e3f3995f25f929", @@ -2046,26 +2046,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6c8f6959-b2d6-49f8-a810-3fb9eec564e3", + "apim-request-id": "3a744b90-c103-43a6-971a-680b7df77409", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:28 GMT", + "Date": "Mon, 16 Nov 2020 19:16:33 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": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -2075,7 +2075,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2084,7 +2084,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9bc5539d0f1f6a545bce14f1bed163dd", @@ -2093,26 +2093,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3bee8b14-f30a-42e2-884f-74e9b3397fa6", + "apim-request-id": "704fcf6b-dc4a-4cf8-96c0-27670335efa1", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:30 GMT", + "Date": "Mon, 16 Nov 2020 19:16:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "37" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -2122,7 +2122,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2131,7 +2131,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "62463d4dfd2d98d748db4b5f1336c453", @@ -2140,26 +2140,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "486ef43f-e5ab-46e3-84aa-9c6330747bab", + "apim-request-id": "0b0d78fb-2216-49fc-b7b9-55da563b22fd", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:31 GMT", + "Date": "Mon, 16 Nov 2020 19:16:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -2169,7 +2169,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2178,7 +2178,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "86507643377fa9c39e611431d142b477", @@ -2187,26 +2187,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1cca62c5-3516-4c89-be94-054e7b4930ec", + "apim-request-id": "ba1c8576-a2ab-45d0-9c73-b77ad040adce", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:32 GMT", + "Date": "Mon, 16 Nov 2020 19:16:36 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": "49" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -2216,7 +2216,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2225,7 +2225,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "214c168097de9ffc7b2d5244c4f55624", @@ -2234,26 +2234,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bfe71724-a592-49b8-9d4d-5031fe86ce7a", + "apim-request-id": "370c1981-edda-4411-b11f-a033422aa85b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:34 GMT", + "Date": "Mon, 16 Nov 2020 19:16:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "55" + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -2263,7 +2263,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2272,7 +2272,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "48aec109dc81165e7a9dc3cbe8a5c706", @@ -2281,26 +2281,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f4ca7310-47bd-4a21-8bc6-db047cf44426", + "apim-request-id": "32aa8f76-79f1-478a-bd31-4896d203ef2f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:35 GMT", + "Date": "Mon, 16 Nov 2020 19:16:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "56" + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -2310,7 +2310,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2319,7 +2319,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fdded326a3eaab747ab00a52e47ee4a9", @@ -2328,26 +2328,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f62b8345-3289-410b-9180-38bc114a1f73", + "apim-request-id": "7faa5ad8-264b-4a53-a43c-b368fd68a435", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:36 GMT", + "Date": "Mon, 16 Nov 2020 19:16:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -2357,7 +2357,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2366,7 +2366,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0f27f00a6c93a3f5b736a641d330b7d5", @@ -2375,26 +2375,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a912a2b2-7685-40b7-8d9e-305849f66e18", + "apim-request-id": "c4bbcb85-cfb0-4d4f-a2c8-677fac0beaf7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:37 GMT", + "Date": "Mon, 16 Nov 2020 19:16:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "70" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -2404,7 +2404,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2413,7 +2413,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f01e4c655916663a4d02ced1d10c31fc", @@ -2422,26 +2422,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6cbe037e-a6e7-4b07-8848-d7e05d5118fa", + "apim-request-id": "162b1716-d40c-4b59-ae21-076b8781cc80", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:39 GMT", + "Date": "Mon, 16 Nov 2020 19:16:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-envoy-upstream-service-time": "66" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -2451,7 +2451,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2460,7 +2460,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f8c11ab8b87eba72dd3a45b4fc32d849", @@ -2469,26 +2469,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "19b6f579-6354-44dd-98f0-3f4f2465c8dd", + "apim-request-id": "d371603c-9848-4780-9cec-4ed35ac86d87", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:40 GMT", + "Date": "Mon, 16 Nov 2020 19:16:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -2498,7 +2498,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2507,7 +2507,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "98ec34f9f460b192b6c1c2919e24d2ab", @@ -2516,26 +2516,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "80a18541-6d7c-4d80-8afc-c56f25d51aff", + "apim-request-id": "39b897fa-d946-4952-83b2-f751df81c3b5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:41 GMT", + "Date": "Mon, 16 Nov 2020 19:16:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "63" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -2545,7 +2545,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2554,7 +2554,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b889aa04be6ead57d96312db1385691a", @@ -2563,26 +2563,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a9e129ed-4c5c-499a-9185-e283ab45e474", + "apim-request-id": "96e601bc-6851-4849-8c4c-16975423c4e4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:42 GMT", + "Date": "Mon, 16 Nov 2020 19:16:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" + "x-envoy-upstream-service-time": "58" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -2592,7 +2592,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2601,7 +2601,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9dd88429991fc49b870f42bdf5e11bb9", @@ -2610,26 +2610,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "644d2c33-f3e0-437a-98a9-fc7a4e34e744", + "apim-request-id": "86b581be-c565-4753-ab82-e9feb14d1a53", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:43 GMT", + "Date": "Mon, 16 Nov 2020 19:16:47 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": "50" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -2639,7 +2639,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2648,7 +2648,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "52af9a681fa93adadd3fbefce1b79d30", @@ -2657,26 +2657,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "72db237a-f2f5-4e01-8218-5833e5527e8a", + "apim-request-id": "469dcba8-8392-4af2-bbf3-5434c0d14320", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:45 GMT", + "Date": "Mon, 16 Nov 2020 19:16:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -2686,7 +2686,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2695,7 +2695,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1a67a757344c6b8b0ec5315f7b9ab7f7", @@ -2704,26 +2704,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f9efb377-ce9f-4a17-b651-a81903b8036b", + "apim-request-id": "0b3ffb2f-5154-4e8e-b285-89acc312e1af", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:46 GMT", + "Date": "Mon, 16 Nov 2020 19:16:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-envoy-upstream-service-time": "87" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -2733,7 +2733,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2742,7 +2742,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7972594717d60a71a99dbfdfda9fe2d0", @@ -2751,26 +2751,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "11856bc3-55f5-4e84-864d-cc4459c1c334", + "apim-request-id": "77245a59-fd61-440b-8cae-867d01fa11f5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:47 GMT", + "Date": "Mon, 16 Nov 2020 19:16:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "71" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -2780,7 +2780,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2789,7 +2789,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4e651271017a346c0e4444e3ee7bbf42", @@ -2798,9 +2798,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d406a318-814d-43f6-8618-fe1d4e7b6a03", + "apim-request-id": "35a3b995-90b1-49b7-87a7-fb4672984e68", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:48 GMT", + "Date": "Mon, 16 Nov 2020 19:16:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -2808,16 +2808,16 @@ }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -2827,7 +2827,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2836,7 +2836,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "87b4c6882444405a365d71ae74ac906f", @@ -2845,26 +2845,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f89b54ac-e068-4250-8068-0318447f3941", + "apim-request-id": "850c2206-9da3-491f-9500-8c52b9d4ec06", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:50 GMT", + "Date": "Mon, 16 Nov 2020 19:16:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -2874,7 +2874,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2883,7 +2883,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "69ed61e26934467dec3e6a91d38d1b2d", @@ -2892,26 +2892,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2bf875aa-e99b-4d06-91fd-f9f826e04ee7", + "apim-request-id": "d8e6a6a4-468c-4c2b-ae44-3eb257cab6c5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:51 GMT", + "Date": "Mon, 16 Nov 2020 19:16:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-envoy-upstream-service-time": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -2921,7 +2921,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2930,7 +2930,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "14567dde5bea4d8bb825171d90bebf62", @@ -2939,26 +2939,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b4a98972-0bf4-44f9-81f2-8674f10b8da6", + "apim-request-id": "ee9e7397-60df-4c2a-8437-da07eb47490f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:52 GMT", + "Date": "Mon, 16 Nov 2020 19:16:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -2968,7 +2968,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2977,7 +2977,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8d01d5b4558e1f0e496e9a06b9c86da8", @@ -2986,26 +2986,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8a7ae557-87b7-443b-bad1-9d4a2f1bd9a4", + "apim-request-id": "f37cf98c-f23d-4c60-ae59-ba43a3ee539e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:53 GMT", + "Date": "Mon, 16 Nov 2020 19:16:57 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": "47" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -3015,7 +3015,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3024,7 +3024,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f7d043417c558784d5a0b10f5160b52e", @@ -3033,26 +3033,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "939778f1-68e3-46e0-b6c7-a2f2af3e9267", + "apim-request-id": "daecbd81-38e0-4f9c-973a-18f6feb70a5e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:54 GMT", + "Date": "Mon, 16 Nov 2020 19:16:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "67" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -3062,7 +3062,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3071,7 +3071,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fedd087f8e8c889f6f37cb7cc08593ef", @@ -3080,26 +3080,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "77274928-dc4e-4156-802b-9ab11f48f4a4", + "apim-request-id": "96939be0-63c6-4465-8326-e181e970a339", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:55 GMT", + "Date": "Mon, 16 Nov 2020 19:17:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -3109,7 +3109,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3118,7 +3118,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4cdb6eb7c7ee380c5079b7eea4fecee8", @@ -3127,26 +3127,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "94970a7d-a639-4589-870f-2c9d0d2badee", + "apim-request-id": "c2339577-0dbd-408b-a61b-5dc6fdcc8c37", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:56 GMT", + "Date": "Mon, 16 Nov 2020 19:17:01 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": "39" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -3156,7 +3156,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3165,7 +3165,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b1866cb86feab31ca447881eb008c650", @@ -3174,26 +3174,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3661f2b6-e86d-40a5-93e0-89d18c56dbcd", + "apim-request-id": "a3d1d432-352e-41e3-bed5-99c6d317b288", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:58 GMT", + "Date": "Mon, 16 Nov 2020 19:17:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-envoy-upstream-service-time": "67" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -3203,7 +3203,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3212,7 +3212,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e257c10c6985b840fca5ad12d6b0e470", @@ -3221,26 +3221,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6e91a451-f1fd-43e6-822a-7b464d8ce20f", + "apim-request-id": "c9ee5648-75c4-46cf-afb1-39acc3db75db", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:21:59 GMT", + "Date": "Mon, 16 Nov 2020 19:17:03 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": "77" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -3250,7 +3250,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3259,7 +3259,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "54c3e269e2fe48045228a7a63eee8748", @@ -3268,26 +3268,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "98691952-e10e-49ea-8ef5-c044844a3ea3", + "apim-request-id": "f57095c8-78f2-436a-b5c9-a517651a22e8", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:00 GMT", + "Date": "Mon, 16 Nov 2020 19:17:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "71" + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -3297,7 +3297,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3306,7 +3306,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e2e167b2eba74f632bceb445c109ddf3", @@ -3315,26 +3315,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "71796c67-94d9-4494-8460-3b1ccb1c6b92", + "apim-request-id": "47ae4efd-6f8c-418a-a821-208eeb07390b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:01 GMT", + "Date": "Mon, 16 Nov 2020 19:17:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -3344,7 +3344,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3353,7 +3353,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ceb4186272442a51bd0e905dc199790d", @@ -3362,26 +3362,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "211d38ef-d8de-4013-a553-df4836854a26", + "apim-request-id": "3fc69da9-b7c0-401e-a919-aafed69bf030", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:02 GMT", + "Date": "Mon, 16 Nov 2020 19:17:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "38" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -3391,7 +3391,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3400,7 +3400,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6e5f651e02cf7dc97f7328302dbf8648", @@ -3409,9 +3409,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d7d2458d-20b1-42a1-82bc-976367ef8412", + "apim-request-id": "f46f2b8b-51fd-4bce-81c7-321eabe7b412", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:04 GMT", + "Date": "Mon, 16 Nov 2020 19:17:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -3419,16 +3419,16 @@ }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -3438,7 +3438,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3447,7 +3447,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2644b34ab839400316b625985b068e92", @@ -3456,26 +3456,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b9505254-e9ac-483d-8559-36e5dbf1fbe8", + "apim-request-id": "9bd6ce54-5f9d-48bc-bd59-07076e0f7e84", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:05 GMT", + "Date": "Mon, 16 Nov 2020 19:17:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -3485,7 +3485,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3494,7 +3494,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5c26a7556ea95f244f374ed14921fcfd", @@ -3503,26 +3503,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "397ac66f-0f66-479d-bf20-f5d7b7360ffc", + "apim-request-id": "bd890e7b-0f6a-42b2-aa37-9cc3d8408356", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:06 GMT", + "Date": "Mon, 16 Nov 2020 19:17:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "39" + "x-envoy-upstream-service-time": "55" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -3532,7 +3532,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3541,7 +3541,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0d124788525465d3611f5718dd312279", @@ -3550,26 +3550,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c7884a52-61b9-4f98-b6d5-2754ad903028", + "apim-request-id": "a0d87cb9-6abb-4c0e-804e-4467359a38f6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:07 GMT", + "Date": "Mon, 16 Nov 2020 19:17:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "54" + "x-envoy-upstream-service-time": "52" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -3579,7 +3579,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3588,7 +3588,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "86da96e52998dc9e8fe5d7026a32f6f5", @@ -3597,26 +3597,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d32fb9f4-25f9-4bca-a98c-32fd73cc51ea", + "apim-request-id": "46201b08-e96d-4521-9f01-2df27528a7b3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:09 GMT", + "Date": "Mon, 16 Nov 2020 19:17:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "56" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -3626,7 +3626,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3635,7 +3635,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "131027b980f3023dd3c1fb8a160b811d", @@ -3644,26 +3644,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c591902b-c636-47fb-bf6e-d87dbb5ca281", + "apim-request-id": "d9915ad3-548d-4a7e-978b-08f06f5d10a1", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:10 GMT", + "Date": "Mon, 16 Nov 2020 19:17:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -3673,7 +3673,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3682,7 +3682,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b2ebd51576465e64a9367d6f7bd1fa2f", @@ -3691,9 +3691,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a00b0e3f-4d5a-4598-bc0a-71cc8e73f694", + "apim-request-id": "7e33641e-a0dd-4faf-9d8b-36d410fd303d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:11 GMT", + "Date": "Mon, 16 Nov 2020 19:17:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -3701,16 +3701,16 @@ }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -3720,7 +3720,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3729,7 +3729,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b55f62280e21658559d8b2d72e13c584", @@ -3738,26 +3738,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3f962fcf-e2cb-497b-aa4c-83d46c7b4f8e", + "apim-request-id": "a53aaefa-8ac7-458c-b220-a4fe317750f4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:13 GMT", + "Date": "Mon, 16 Nov 2020 19:17:17 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": "76" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -3767,7 +3767,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3776,7 +3776,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "95edb963434743afc2b16abd02ce8701", @@ -3785,26 +3785,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cedd65f2-b604-4493-a35b-2a9af2192f0a", + "apim-request-id": "350add1c-7594-4e82-a17f-6061e7359d31", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:14 GMT", + "Date": "Mon, 16 Nov 2020 19:17:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -3814,7 +3814,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3823,7 +3823,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b461ccc6cbac06fc4f86596ec38d2f95", @@ -3832,26 +3832,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d4a8c0d8-7b24-434d-a6f0-615446b9433a", + "apim-request-id": "18278b7c-4738-4a45-ad07-5ad288f1c9fd", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:15 GMT", + "Date": "Mon, 16 Nov 2020 19:17:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "63" + "x-envoy-upstream-service-time": "49" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -3861,7 +3861,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3870,7 +3870,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c10bf97065e4e4e8b31bf36fa3c7628b", @@ -3879,26 +3879,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9379d3b2-1fbf-402d-9446-32e653c71d1c", + "apim-request-id": "e4ca917a-7822-4ad0-b619-9ea387686772", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:16 GMT", + "Date": "Mon, 16 Nov 2020 19:17:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "57" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -3908,7 +3908,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3917,7 +3917,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6210b15010b298d8bce645c0ea417f35", @@ -3926,9 +3926,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "27fbf9c2-7e15-4403-82b3-80daaf30a5f3", + "apim-request-id": "690caa2c-8972-4e48-8227-283958c9ca2c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:17 GMT", + "Date": "Mon, 16 Nov 2020 19:17:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -3936,16 +3936,16 @@ }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -3955,7 +3955,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3964,7 +3964,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "094dd581c5c2601de47d0090d88d6287", @@ -3973,26 +3973,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "68759c5d-e3a7-407e-9731-46cb9f50cfcd", + "apim-request-id": "8e0af25e-1005-4d18-80af-222aeedbb927", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:19 GMT", + "Date": "Mon, 16 Nov 2020 19:17:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "58" + "x-envoy-upstream-service-time": "40" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -4002,7 +4002,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4011,7 +4011,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "121dce24cd7c5fe3207304fe1f27fa72", @@ -4020,26 +4020,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7b3599db-9acc-4977-8489-d23682a1e261", + "apim-request-id": "51f7e9de-db48-4f27-a9c7-b91ae1c64579", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:20 GMT", + "Date": "Mon, 16 Nov 2020 19:17:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "45" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -4049,7 +4049,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4058,7 +4058,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ceedbd9c587a8ac893af7e341048bf2f", @@ -4067,26 +4067,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4a54d4ae-95a6-492c-bb6c-935b47c8ce2f", + "apim-request-id": "dade24f5-e1d0-4631-a6da-000f7c4e534f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:21 GMT", + "Date": "Mon, 16 Nov 2020 19:17:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "70" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -4096,7 +4096,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4105,7 +4105,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1c9cbe836c23b4b8f2ede94fc01e41bc", @@ -4114,9 +4114,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0f0c628f-64a8-4498-9b7a-cf95fa1e3324", + "apim-request-id": "8c33091d-3f7e-4465-b9ff-3c5adac9316d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:22 GMT", + "Date": "Mon, 16 Nov 2020 19:17:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -4124,16 +4124,16 @@ }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -4143,7 +4143,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4152,7 +4152,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1bf38e8394a0cb0d05927ecc4fae4fd8", @@ -4161,26 +4161,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "54ef7185-4ca5-428c-8156-15e0bb19909f", + "apim-request-id": "0ff6eeff-df99-4884-8278-22bd1ca3c21e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:23 GMT", + "Date": "Mon, 16 Nov 2020 19:17:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "47" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -4190,7 +4190,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4199,7 +4199,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "617ad5b3dd8a304e0439db8d6f78ca75", @@ -4208,26 +4208,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e21afc38-a483-4ae6-9867-11ac889bcbd1", + "apim-request-id": "1d9f0875-9d34-479b-8481-be163314a892", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:24 GMT", + "Date": "Mon, 16 Nov 2020 19:17:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "70" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -4237,7 +4237,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4246,7 +4246,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "81b1c16ea454ee8fb1d01691edeb6544", @@ -4255,26 +4255,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6c19f4d4-fd44-49f8-8e61-20757f257dae", + "apim-request-id": "5a980e6f-1d08-4760-9b6a-3c64c0eea03d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:26 GMT", + "Date": "Mon, 16 Nov 2020 19:17:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "60" + "x-envoy-upstream-service-time": "70" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -4284,7 +4284,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4293,7 +4293,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "eb9b109ddfa4a5313fc31666b87f5c8c", @@ -4302,9 +4302,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2146e677-925b-4020-bc4a-7960fafd9952", + "apim-request-id": "3282b484-18d1-4074-99f1-ddb9405e0053", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:28 GMT", + "Date": "Mon, 16 Nov 2020 19:17:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -4312,16 +4312,16 @@ }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -4331,7 +4331,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4340,7 +4340,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8d5d09c8cefc0f84468bb0b9c6bd4219", @@ -4349,26 +4349,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cc738272-0529-465a-9773-704d842a60a8", + "apim-request-id": "803a902d-0557-4817-be5d-c02ac527e515", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:29 GMT", + "Date": "Mon, 16 Nov 2020 19:17:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "68" + "x-envoy-upstream-service-time": "42" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -4378,7 +4378,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4387,7 +4387,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5eef97d4dedc8fd08f0c41918e283631", @@ -4396,26 +4396,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "36057ab6-1678-4498-8745-d270f25add30", + "apim-request-id": "244bf9d9-dae8-4a0d-852e-c2878812f36a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:30 GMT", + "Date": "Mon, 16 Nov 2020 19:17:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -4425,7 +4425,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4434,7 +4434,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e3c98974d78dcf478c8ca4182e77de82", @@ -4443,26 +4443,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2a018797-ab17-4a5e-b2fa-6986f2e99a1d", + "apim-request-id": "7b988e27-ff33-4e5f-b65f-e0ecce66a259", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:31 GMT", + "Date": "Mon, 16 Nov 2020 19:17:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "58" + "x-envoy-upstream-service-time": "46" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -4472,7 +4472,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4481,7 +4481,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2092fc80fd8fe9b038cefdf08cf2811e", @@ -4490,26 +4490,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cd15dea1-1136-461b-8279-84ba5774ac83", + "apim-request-id": "35729f79-f100-40cf-8eaf-94ba0f2fb20e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:32 GMT", + "Date": "Mon, 16 Nov 2020 19:17:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "50" + "x-envoy-upstream-service-time": "85" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -4519,7 +4519,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4528,7 +4528,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3d457f555ef3fc8b5020d2503ab86018", @@ -4537,26 +4537,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5d591d46-12d0-41f9-bef5-da0054ca9fcd", + "apim-request-id": "1563d31c-b0a6-4471-8e8c-5389594f2268", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:34 GMT", + "Date": "Mon, 16 Nov 2020 19:17:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -4566,7 +4566,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4575,7 +4575,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9110bf2d159576a1d9dfabbfda574399", @@ -4584,26 +4584,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "efcc8935-af82-409c-8f42-e668207f2281", + "apim-request-id": "7bc97943-5e9a-4351-8ff9-bb4644e278ff", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:35 GMT", + "Date": "Mon, 16 Nov 2020 19:17:39 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": "64" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -4613,7 +4613,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4622,7 +4622,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "afc3850aa132228e7196d06f2b5fae80", @@ -4631,26 +4631,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e055373c-48a9-4a33-ac0f-7ece94c9a414", + "apim-request-id": "8377b97e-dada-4474-8a14-a3c22a5a1324", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:36 GMT", + "Date": "Mon, 16 Nov 2020 19:17: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": "72" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -4660,7 +4660,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4669,7 +4669,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ccc2e56ef0e23f88ddcf6313b3cc22f9", @@ -4678,26 +4678,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f1eaaa33-8370-49cf-b53a-abedde0d93c3", + "apim-request-id": "6cb71bda-9373-460b-9367-8a8478ed6a2e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:37 GMT", + "Date": "Mon, 16 Nov 2020 19:17:42 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": "46" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -4707,7 +4707,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4716,7 +4716,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b54638ddb0f58ce530ee1fff45324b7a", @@ -4725,26 +4725,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "50336e10-0e91-4e69-9f35-c9c9ce8f6943", + "apim-request-id": "abb13266-61d7-4f8c-bf11-58b652e4da57", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:39 GMT", + "Date": "Mon, 16 Nov 2020 19:17:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "58" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -4754,7 +4754,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4763,7 +4763,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f4512a3176941ab7fc83d2633e7a6ea5", @@ -4772,26 +4772,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dcde9eb4-6213-4e3d-a27f-1877be495afe", + "apim-request-id": "fce9048f-93a7-4e27-af46-8dbf55393ecf", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:40 GMT", + "Date": "Mon, 16 Nov 2020 19:17:44 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": "60" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -4801,7 +4801,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4810,7 +4810,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f292d774f919bd8bff369cf3d089f9ab", @@ -4819,26 +4819,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3a9ba6ef-ccfb-40c3-8906-0f78a69b69a0", + "apim-request-id": "a56ef3bd-194f-495d-b9ba-57136d22ef46", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:41 GMT", + "Date": "Mon, 16 Nov 2020 19:17:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "67" + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -4848,7 +4848,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4857,7 +4857,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "88e2e8842d7b6665812bb871de824db6", @@ -4866,26 +4866,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3e780dfd-4b5e-4443-9089-7269278ed826", + "apim-request-id": "ca65a5e4-d08a-4515-854d-3513418e678c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:42 GMT", + "Date": "Mon, 16 Nov 2020 19:17:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -4895,7 +4895,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4904,7 +4904,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6e8b797f589f37619f93f55ddac34973", @@ -4913,26 +4913,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5fd21f21-8876-4e08-915d-513224d65cf4", + "apim-request-id": "6bc67a24-41e2-4dfd-8d4b-d457a4808f54", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:43 GMT", + "Date": "Mon, 16 Nov 2020 19:17:48 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": "44" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 0, "failed": 0, @@ -4942,7 +4942,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4951,7 +4951,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "55de2689e598462a712b71ed4119de7c", @@ -4960,26 +4960,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f9de7ad2-21f7-452a-a7b1-2d2922cf4b38", + "apim-request-id": "6ef3c485-e1fc-4e5e-92dd-207a6de99630", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:44 GMT", + "Date": "Mon, 16 Nov 2020 19:17:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "79" + "x-envoy-upstream-service-time": "110" }, "ResponseBody": { "displayName": "AnalyzeOperationWithPHIDomain", - "jobId": "67c54dc7-3f4c-4adc-a2e0-bda1537057ae_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:20:37Z", - "createdDateTime": "2020-11-13T22:20:37Z", - "expirationDateTime": "2020-11-14T22:20:37Z", + "jobId": "4f78ef8c-d5d8-40df-94b8-66b292c2f1ef_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:15:41Z", + "createdDateTime": "2020-11-16T19:15:40Z", + "expirationDateTime": "2020-11-17T19:15:40Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37Z" + "lastUpdateDateTime": "2020-11-16T19:15:41Z" }, "completed": 1, "failed": 0, @@ -4988,7 +4988,7 @@ "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithPHIDomain", - "lastUpdateDateTime": "2020-11-13T22:20:37.7572598Z", + "lastUpdateDateTime": "2020-11-16T19:15:41.5404071Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json index 587e2ec7ebb14..86aa1e0161f36 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTest.json @@ -11,9 +11,9 @@ "Content-Length": "265", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-505112d7537f11409db7b134fa5c0e5f-2451c6e5cef4634c-00", + "traceparent": "00-e329415ca542f041acb42c1c1346de30-0377bd4391adc243-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bc10ae4f3809e9b40d4f6b783fc973c7", @@ -46,18 +46,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "6ae9efc7-6d62-44bf-a6af-7c1ba22f6798", - "Date": "Fri, 13 Nov 2020 22:18:19 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/aa1e2514-7dfa-44fe-b462-2e98f1b44c14_637408224000000000", + "apim-request-id": "c61f990a-fa8a-4c5e-8329-709d49f4e492", + "Date": "Mon, 16 Nov 2020 19:13:21 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/741d14dd-7bbc-44da-8405-d085cc95968f_637410816000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "222" + "x-envoy-upstream-service-time": "969" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/aa1e2514-7dfa-44fe-b462-2e98f1b44c14_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/741d14dd-7bbc-44da-8405-d085cc95968f_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -66,7 +66,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e45290396662ad6e1e38f63536f933b4", @@ -75,34 +75,34 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "513165d4-a4b0-4298-a108-e5bd4353be6c", + "apim-request-id": "d712d79a-4a9d-4249-87d1-d5984f1196f8", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:20 GMT", + "Date": "Mon, 16 Nov 2020 19:13:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { - "jobId": "aa1e2514-7dfa-44fe-b462-2e98f1b44c14_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:20Z", - "createdDateTime": "2020-11-13T22:18:20Z", - "expirationDateTime": "2020-11-14T22:18:20Z", + "jobId": "741d14dd-7bbc-44da-8405-d085cc95968f_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:20Z", + "createdDateTime": "2020-11-16T19:13:20Z", + "expirationDateTime": "2020-11-17T19:13:20Z", "status": "notStarted", "errors": [], "tasks": { "details": { - "lastUpdateDateTime": "2020-11-13T22:18:20Z" + "lastUpdateDateTime": "2020-11-16T19:13:20Z" }, "completed": 0, "failed": 0, - "inProgress": 1, - "total": 1 + "inProgress": 0, + "total": 0 } } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/aa1e2514-7dfa-44fe-b462-2e98f1b44c14_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/741d14dd-7bbc-44da-8405-d085cc95968f_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -111,7 +111,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "026f5447158ee5d664682b08d83e8d91", @@ -120,34 +120,34 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "826e1df2-639b-4e44-9732-bd3641c53dec", + "apim-request-id": "d2878e82-31e2-4fe6-bd17-0b5f75424449", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:21 GMT", + "Date": "Mon, 16 Nov 2020 19:13:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { - "jobId": "aa1e2514-7dfa-44fe-b462-2e98f1b44c14_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:20Z", - "createdDateTime": "2020-11-13T22:18:20Z", - "expirationDateTime": "2020-11-14T22:18:20Z", + "jobId": "741d14dd-7bbc-44da-8405-d085cc95968f_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:20Z", + "createdDateTime": "2020-11-16T19:13:20Z", + "expirationDateTime": "2020-11-17T19:13:20Z", "status": "notStarted", "errors": [], "tasks": { "details": { - "lastUpdateDateTime": "2020-11-13T22:18:20Z" + "lastUpdateDateTime": "2020-11-16T19:13:20Z" }, "completed": 0, "failed": 0, - "inProgress": 1, - "total": 1 + "inProgress": 0, + "total": 0 } } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/aa1e2514-7dfa-44fe-b462-2e98f1b44c14_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/741d14dd-7bbc-44da-8405-d085cc95968f_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -156,7 +156,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3f2ab8555934e81b40639ed1417fb313", @@ -165,24 +165,24 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ee13b82a-3d9e-4978-8ab5-1e0c20f45397", + "apim-request-id": "50703b8e-48ea-49a6-8dae-2c9310e3804d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:22 GMT", + "Date": "Mon, 16 Nov 2020 19:13:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "66" }, "ResponseBody": { - "jobId": "aa1e2514-7dfa-44fe-b462-2e98f1b44c14_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:20Z", - "createdDateTime": "2020-11-13T22:18:20Z", - "expirationDateTime": "2020-11-14T22:18:20Z", + "jobId": "741d14dd-7bbc-44da-8405-d085cc95968f_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:22Z", + "createdDateTime": "2020-11-16T19:13:20Z", + "expirationDateTime": "2020-11-17T19:13:20Z", "status": "notStarted", "errors": [], "tasks": { "details": { - "lastUpdateDateTime": "2020-11-13T22:18:20Z" + "lastUpdateDateTime": "2020-11-16T19:13:22Z" }, "completed": 0, "failed": 0, @@ -192,7 +192,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/aa1e2514-7dfa-44fe-b462-2e98f1b44c14_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/741d14dd-7bbc-44da-8405-d085cc95968f_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -201,7 +201,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ea31b61c715a2439ba6d7ff93a66d4df", @@ -210,69 +210,24 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c4cd34c2-b73b-4ee5-a9df-c75f12c1030c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:23 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" - }, - "ResponseBody": { - "jobId": "aa1e2514-7dfa-44fe-b462-2e98f1b44c14_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:20Z", - "createdDateTime": "2020-11-13T22:18:20Z", - "expirationDateTime": "2020-11-14T22:18:20Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "lastUpdateDateTime": "2020-11-13T22:18:20Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/aa1e2514-7dfa-44fe-b462-2e98f1b44c14_637408224000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7edf65aaf3ceed7f3986c12a7704a3e5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d8b835dd-8a52-4fca-b476-cf8e6355bc32", + "apim-request-id": "8e734ef4-1076-4ef0-9ab6-45fae70a422c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:24 GMT", + "Date": "Mon, 16 Nov 2020 19:13:25 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": "221" }, "ResponseBody": { - "jobId": "aa1e2514-7dfa-44fe-b462-2e98f1b44c14_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:20Z", - "createdDateTime": "2020-11-13T22:18:20Z", - "expirationDateTime": "2020-11-14T22:18:20Z", + "jobId": "741d14dd-7bbc-44da-8405-d085cc95968f_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:22Z", + "createdDateTime": "2020-11-16T19:13:20Z", + "expirationDateTime": "2020-11-17T19:13:20Z", "status": "succeeded", "errors": [], "tasks": { "details": { - "lastUpdateDateTime": "2020-11-13T22:18:20Z" + "lastUpdateDateTime": "2020-11-16T19:13:22Z" }, "completed": 1, "failed": 0, @@ -280,7 +235,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2020-11-13T22:18:20.4112222Z", + "lastUpdateDateTime": "2020-11-16T19:13:22.7701261Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTestAsync.json index bc2f0b23d391c..07298990c7f7d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "265", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7195132f6272644ebe7e61bf799c3f41-c6f109cda6dc7049-00", + "traceparent": "00-839e09a6bf971e4bab9019bdd47e44f8-7d7c3bc2ebe3494c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f64d021068f23b47239dc64d32ac0d55", @@ -46,18 +46,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "45a144ef-7a4c-4eb3-bb91-10c56c32f8d1", - "Date": "Fri, 13 Nov 2020 22:22:44 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/00584754-5738-4f79-b409-1dea92872274_637408224000000000", + "apim-request-id": "490c1041-dc7b-4f9f-94b1-bd24d17f66c1", + "Date": "Mon, 16 Nov 2020 19:17:49 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/51b62dcc-4191-4d9a-aeeb-eb6f9c557863_637410816000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "261" + "x-envoy-upstream-service-time": "208" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/00584754-5738-4f79-b409-1dea92872274_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/51b62dcc-4191-4d9a-aeeb-eb6f9c557863_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -66,7 +66,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "326f6a53ce870c398bb9ee51f13f5560", @@ -75,24 +75,69 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cb5763f3-b115-4a40-9987-0ee1434c0825", + "apim-request-id": "4b92be57-2656-4f41-b7f4-d37e961d57d1", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:44 GMT", + "Date": "Mon, 16 Nov 2020 19:17:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "45" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { - "jobId": "00584754-5738-4f79-b409-1dea92872274_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:45Z", - "createdDateTime": "2020-11-13T22:22:45Z", - "expirationDateTime": "2020-11-14T22:22:45Z", + "jobId": "51b62dcc-4191-4d9a-aeeb-eb6f9c557863_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:49Z", + "createdDateTime": "2020-11-16T19:17:49Z", + "expirationDateTime": "2020-11-17T19:17:49Z", "status": "notStarted", "errors": [], "tasks": { "details": { - "lastUpdateDateTime": "2020-11-13T22:22:45Z" + "lastUpdateDateTime": "2020-11-16T19:17:49Z" + }, + "completed": 0, + "failed": 0, + "inProgress": 0, + "total": 0 + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/51b62dcc-4191-4d9a-aeeb-eb6f9c557863_637410816000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4d2db5835d6ee56b0a068d1cd4f24286", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "69dd6d12-198e-45d4-923d-3ea0c70e4a9b", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 16 Nov 2020 19:17:50 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" + }, + "ResponseBody": { + "jobId": "51b62dcc-4191-4d9a-aeeb-eb6f9c557863_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:50Z", + "createdDateTime": "2020-11-16T19:17:49Z", + "expirationDateTime": "2020-11-17T19:17:49Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "lastUpdateDateTime": "2020-11-16T19:17:50Z" }, "completed": 0, "failed": 0, @@ -102,7 +147,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/00584754-5738-4f79-b409-1dea92872274_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/51b62dcc-4191-4d9a-aeeb-eb6f9c557863_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -111,33 +156,33 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "4d2db5835d6ee56b0a068d1cd4f24286", + "x-ms-client-request-id": "84470c68f8b742c6c8406a3979f549e3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "97c9420f-0a99-4631-b5d1-db9372eb0cae", + "apim-request-id": "777a662a-6628-4ccc-b0d0-8ef42780f402", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:47 GMT", + "Date": "Mon, 16 Nov 2020 19:17:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-envoy-upstream-service-time": "91" }, "ResponseBody": { - "jobId": "00584754-5738-4f79-b409-1dea92872274_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:45Z", - "createdDateTime": "2020-11-13T22:22:45Z", - "expirationDateTime": "2020-11-14T22:22:45Z", + "jobId": "51b62dcc-4191-4d9a-aeeb-eb6f9c557863_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:50Z", + "createdDateTime": "2020-11-16T19:17:49Z", + "expirationDateTime": "2020-11-17T19:17:49Z", "status": "succeeded", "errors": [], "tasks": { "details": { - "lastUpdateDateTime": "2020-11-13T22:22:45Z" + "lastUpdateDateTime": "2020-11-16T19:17:50Z" }, "completed": 1, "failed": 0, @@ -145,7 +190,7 @@ "total": 1, "keyPhraseExtractionTasks": [ { - "lastUpdateDateTime": "2020-11-13T22:22:45.8720855Z", + "lastUpdateDateTime": "2020-11-16T19:17:50.4261733Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json index bffecd603401b..78bc70bc398c3 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTest.json @@ -11,9 +11,9 @@ "Content-Length": "336", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d1c60f4f71809b4e82b07ac482bb5457-cbd11ca98ec1904b-00", + "traceparent": "00-d0d4786e4100394f90acd2509d551ec9-bc9d048aff9a4847-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a87cf6cc9d26e81e4ad3c40561433cdc", @@ -47,18 +47,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "e1c2491c-8171-4191-be87-4c0c1f1046f2", - "Date": "Fri, 13 Nov 2020 22:18:25 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e809a9b4-5507-4355-b6d8-deb7ee48011c_637408224000000000", + "apim-request-id": "e45c3cc7-cebd-4c6f-8997-fa7675fe586c", + "Date": "Mon, 16 Nov 2020 19:13:26 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d8c5e6c7-4109-4f36-bfa1-af5bf7fa0ad9_637410816000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "172" + "x-envoy-upstream-service-time": "972" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e809a9b4-5507-4355-b6d8-deb7ee48011c_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d8c5e6c7-4109-4f36-bfa1-af5bf7fa0ad9_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -67,7 +67,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "829f189700a91102b7313377687a2cfe", @@ -76,26 +76,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d7b93495-7c66-4adb-a259-5af6b39ff011", + "apim-request-id": "9a217ce3-7e0a-430f-9c69-d8b49422dc59", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:25 GMT", + "Date": "Mon, 16 Nov 2020 19:13:26 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": "14" }, "ResponseBody": { "displayName": "AnalyzeOperationWithLanguageTest", - "jobId": "e809a9b4-5507-4355-b6d8-deb7ee48011c_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:25Z", - "createdDateTime": "2020-11-13T22:18:25Z", - "expirationDateTime": "2020-11-14T22:18:25Z", + "jobId": "d8c5e6c7-4109-4f36-bfa1-af5bf7fa0ad9_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:25Z", + "createdDateTime": "2020-11-16T19:13:25Z", + "expirationDateTime": "2020-11-17T19:13:25Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2020-11-13T22:18:25Z" + "lastUpdateDateTime": "2020-11-16T19:13:25Z" }, "completed": 0, "failed": 0, @@ -105,7 +105,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e809a9b4-5507-4355-b6d8-deb7ee48011c_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d8c5e6c7-4109-4f36-bfa1-af5bf7fa0ad9_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -114,7 +114,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "84565c5816eeba49622c1ac1b6d8c94c", @@ -123,36 +123,36 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aad40c7a-ed49-4a83-a189-6554b53691fb", + "apim-request-id": "0c5acf30-0d85-43c2-8bbe-6fea088b6714", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:26 GMT", + "Date": "Mon, 16 Nov 2020 19:13:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "38" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "displayName": "AnalyzeOperationWithLanguageTest", - "jobId": "e809a9b4-5507-4355-b6d8-deb7ee48011c_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:25Z", - "createdDateTime": "2020-11-13T22:18:25Z", - "expirationDateTime": "2020-11-14T22:18:25Z", + "jobId": "d8c5e6c7-4109-4f36-bfa1-af5bf7fa0ad9_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:25Z", + "createdDateTime": "2020-11-16T19:13:25Z", + "expirationDateTime": "2020-11-17T19:13:25Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2020-11-13T22:18:25Z" + "lastUpdateDateTime": "2020-11-16T19:13:25Z" }, "completed": 0, "failed": 0, - "inProgress": 1, - "total": 1 + "inProgress": 0, + "total": 0 } } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e809a9b4-5507-4355-b6d8-deb7ee48011c_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d8c5e6c7-4109-4f36-bfa1-af5bf7fa0ad9_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -161,7 +161,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e6dbb519b5b4cb28f46af0f469a680d0", @@ -170,73 +170,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2de78c07-3d0e-463c-af0c-07e3514fa147", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:28 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "49" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithLanguageTest", - "jobId": "e809a9b4-5507-4355-b6d8-deb7ee48011c_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:25Z", - "createdDateTime": "2020-11-13T22:18:25Z", - "expirationDateTime": "2020-11-14T22:18:25Z", - "status": "notStarted", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2020-11-13T22:18:25Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e809a9b4-5507-4355-b6d8-deb7ee48011c_637408224000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "05acc6a6b8ec80eecfe5207de6405bde", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e3175b77-02f7-409b-a391-882191dd6fc7", + "apim-request-id": "0340a039-80b1-41bc-80c8-5b3a831c8bf4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:29 GMT", + "Date": "Mon, 16 Nov 2020 19:13:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "117" }, "ResponseBody": { "displayName": "AnalyzeOperationWithLanguageTest", - "jobId": "e809a9b4-5507-4355-b6d8-deb7ee48011c_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:25Z", - "createdDateTime": "2020-11-13T22:18:25Z", - "expirationDateTime": "2020-11-14T22:18:25Z", + "jobId": "d8c5e6c7-4109-4f36-bfa1-af5bf7fa0ad9_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:27Z", + "createdDateTime": "2020-11-16T19:13:25Z", + "expirationDateTime": "2020-11-17T19:13:25Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2020-11-13T22:18:25Z" + "lastUpdateDateTime": "2020-11-16T19:13:27Z" }, "completed": 0, "failed": 0, @@ -246,7 +199,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e809a9b4-5507-4355-b6d8-deb7ee48011c_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/d8c5e6c7-4109-4f36-bfa1-af5bf7fa0ad9_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -255,35 +208,35 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b25ee768459fa349338b9083255450bb", + "x-ms-client-request-id": "05acc6a6b8ec80eecfe5207de6405bde", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a5926de6-68dd-4f82-aed9-4667a2e4e15c", + "apim-request-id": "3c184340-9836-48af-86ab-38de03b1b841", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:30 GMT", + "Date": "Mon, 16 Nov 2020 19:13:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "82" + "x-envoy-upstream-service-time": "89" }, "ResponseBody": { "displayName": "AnalyzeOperationWithLanguageTest", - "jobId": "e809a9b4-5507-4355-b6d8-deb7ee48011c_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:25Z", - "createdDateTime": "2020-11-13T22:18:25Z", - "expirationDateTime": "2020-11-14T22:18:25Z", + "jobId": "d8c5e6c7-4109-4f36-bfa1-af5bf7fa0ad9_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:27Z", + "createdDateTime": "2020-11-16T19:13:25Z", + "expirationDateTime": "2020-11-17T19:13:25Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2020-11-13T22:18:25Z" + "lastUpdateDateTime": "2020-11-16T19:13:27Z" }, "completed": 1, "failed": 0, @@ -292,7 +245,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2020-11-13T22:18:25.9578135Z", + "lastUpdateDateTime": "2020-11-16T19:13:27.6832728Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTestAsync.json index 87e6eda432faf..ce48b11c61f65 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithLanguageTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "336", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d679df6c7266a54d9bfd8f93e827fee3-34f016c267087f49-00", + "traceparent": "00-3db6a6fb86b4f145a60471c909ba9afd-5861ad2ef042d24c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ff1f44cf0b7d52519f4611a53ca09dbe", @@ -47,18 +47,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "551dd8ac-77f0-4610-b541-3fdb3638a1cf", - "Date": "Fri, 13 Nov 2020 22:22:47 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2b4805e1-9b6b-4d27-ab76-4a843f6940e8_637408224000000000", + "apim-request-id": "4c88b4d3-2514-4e27-be1c-99b87e3c8f4c", + "Date": "Mon, 16 Nov 2020 19:17:52 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/bd20534f-80cb-478d-a101-df66e4b7842d_637410816000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "184" + "x-envoy-upstream-service-time": "109" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2b4805e1-9b6b-4d27-ab76-4a843f6940e8_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/bd20534f-80cb-478d-a101-df66e4b7842d_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -67,7 +67,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e5fe6af6690f6491194fc0223b355da1", @@ -76,36 +76,36 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aac0ab1d-6035-4124-a413-084aeba7a216", + "apim-request-id": "e2825f82-1205-4103-ba80-775abbec25bb", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:47 GMT", + "Date": "Mon, 16 Nov 2020 19:17:52 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": "13" }, "ResponseBody": { "displayName": "AnalyzeOperationWithLanguageTest", - "jobId": "2b4805e1-9b6b-4d27-ab76-4a843f6940e8_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:47Z", - "createdDateTime": "2020-11-13T22:22:47Z", - "expirationDateTime": "2020-11-14T22:22:47Z", + "jobId": "bd20534f-80cb-478d-a101-df66e4b7842d_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:52Z", + "createdDateTime": "2020-11-16T19:17:52Z", + "expirationDateTime": "2020-11-17T19:17:52Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2020-11-13T22:22:47Z" + "lastUpdateDateTime": "2020-11-16T19:17:52Z" }, "completed": 0, "failed": 0, - "inProgress": 1, - "total": 1 + "inProgress": 0, + "total": 0 } } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2b4805e1-9b6b-4d27-ab76-4a843f6940e8_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/bd20534f-80cb-478d-a101-df66e4b7842d_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -114,7 +114,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c22721a113540c5c7d4db56795b725e8", @@ -123,73 +123,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "846d532b-faa2-4c63-91dc-8f7932a2c53a", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:50 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "1824" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithLanguageTest", - "jobId": "2b4805e1-9b6b-4d27-ab76-4a843f6940e8_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:47Z", - "createdDateTime": "2020-11-13T22:22:47Z", - "expirationDateTime": "2020-11-14T22:22:47Z", - "status": "notStarted", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2020-11-13T22:22:47Z" - }, - "completed": 0, - "failed": 0, - "inProgress": 1, - "total": 1 - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/2b4805e1-9b6b-4d27-ab76-4a843f6940e8_637408224000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c5f8bf9fc78e66c8b2bbe62e4a2e1669", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8eeecc7f-8fab-4b4a-8b71-c77404f27e47", + "apim-request-id": "a0f4b9ed-7afe-49aa-a5d1-dc57984ca2b6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:51 GMT", + "Date": "Mon, 16 Nov 2020 19:17:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "90" + "x-envoy-upstream-service-time": "96" }, "ResponseBody": { "displayName": "AnalyzeOperationWithLanguageTest", - "jobId": "2b4805e1-9b6b-4d27-ab76-4a843f6940e8_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:47Z", - "createdDateTime": "2020-11-13T22:22:47Z", - "expirationDateTime": "2020-11-14T22:22:47Z", + "jobId": "bd20534f-80cb-478d-a101-df66e4b7842d_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:53Z", + "createdDateTime": "2020-11-16T19:17:52Z", + "expirationDateTime": "2020-11-17T19:17:52Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2020-11-13T22:22:47Z" + "lastUpdateDateTime": "2020-11-16T19:17:53Z" }, "completed": 1, "failed": 0, @@ -198,7 +151,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithLanguageTest", - "lastUpdateDateTime": "2020-11-13T22:22:47.7416575Z", + "lastUpdateDateTime": "2020-11-16T19:17:53.3636521Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasks.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasks.json index 7411221fc3364..3543ed4d5540f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasks.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasks.json @@ -11,9 +11,9 @@ "Content-Length": "478", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-40ece2322dfa7c488c2aab90d925dd05-14f3daa3b3f18640-00", + "traceparent": "00-a606a7547e0b0f46bd66a9522619a822-d1f3867012340e44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "36d74cae0543ad22b4752e104a677574", @@ -61,18 +61,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "5ed37af0-6d42-4c60-ba64-2c4704fbe036", - "Date": "Fri, 13 Nov 2020 22:18:30 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", + "apim-request-id": "e5a17943-7272-4b4e-90c9-b2581aac0d74", + "Date": "Mon, 16 Nov 2020 19:13:31 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "877" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -81,7 +81,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "360f939000899016ea2d36ca05142466", @@ -90,26 +90,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "106d8b38-8d1e-4c61-a75a-4718070a9c66", + "apim-request-id": "5bfe5cc9-336d-43e2-b9a2-a93c87799212", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:30 GMT", + "Date": "Mon, 16 Nov 2020 19:13:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "13" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:30Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:30Z" }, "completed": 0, "failed": 0, @@ -119,7 +119,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -128,7 +128,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "32033b4d84a2f3a2ac913141d710299b", @@ -137,36 +137,36 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ef50a774-7bdd-4e62-b8a5-f4502a2d1ff2", + "apim-request-id": "e89f85a4-277f-4cb8-86f9-d05c7cbeabd7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:32 GMT", + "Date": "Mon, 16 Nov 2020 19:13:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "101" + "x-envoy-upstream-service-time": "17" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:30Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:30Z" }, "completed": 0, "failed": 0, - "inProgress": 3, - "total": 3 + "inProgress": 0, + "total": 0 } } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -175,7 +175,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f287b823979aae6e35464c16cf57a89f", @@ -184,26 +184,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "824427f2-ccd8-44e5-a765-7ca1303ad148", + "apim-request-id": "07d6f212-2356-49fb-98be-9103d352fbd2", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:33 GMT", + "Date": "Mon, 16 Nov 2020 19:13:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "101" + "x-envoy-upstream-service-time": "91" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", - "status": "notStarted", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", + "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 0, "failed": 0, @@ -213,7 +213,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -222,7 +222,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0fc2c75142640bd1f11c89f7cfd5b8da", @@ -231,26 +231,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aab56389-58b9-4bb2-9f53-fd078dde9c29", + "apim-request-id": "1854cff0-5883-4906-b8cf-0bc4504b277a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:34 GMT", + "Date": "Mon, 16 Nov 2020 19:13:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "150" + "x-envoy-upstream-service-time": "185" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -259,7 +259,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -291,7 +291,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -300,7 +300,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4da79a03318db6cbcc54fd5b388b2454", @@ -309,26 +309,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2bcaefb2-2289-42cc-a6d1-75d60bb061ce", + "apim-request-id": "1de69961-0962-4e7c-972c-3c9d2a9c2c79", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:35 GMT", + "Date": "Mon, 16 Nov 2020 19:13:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "117" + "x-envoy-upstream-service-time": "175" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -337,7 +337,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -369,7 +369,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -378,7 +378,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "10ef92e91a4de036e67c017e0d76df5f", @@ -387,26 +387,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "23402ccc-4df1-4a0f-9d90-af8d387e9e4a", + "apim-request-id": "2576ddff-b8a9-43fe-bc23-885f4b470f45", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:36 GMT", + "Date": "Mon, 16 Nov 2020 19:13:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "151" + "x-envoy-upstream-service-time": "127" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -415,7 +415,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -447,7 +447,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -456,7 +456,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3412728d5bb02012fb0c420f4575d365", @@ -465,26 +465,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6fa4e0b3-3ee0-45b8-881e-daddf663810f", + "apim-request-id": "1a490911-38f1-46cb-9a83-610bd78a77bb", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:39 GMT", + "Date": "Mon, 16 Nov 2020 19:13:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "221" + "x-envoy-upstream-service-time": "142" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -493,7 +493,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -525,7 +525,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -534,7 +534,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3d0e35f7a8e5e98c63c76610304da856", @@ -543,26 +543,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bcc24ef9-44aa-4ea3-9ba4-8e8c06e9fe2b", + "apim-request-id": "39f9c645-8372-40de-8eff-2616ff0c077f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:40 GMT", + "Date": "Mon, 16 Nov 2020 19:13:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "123" + "x-envoy-upstream-service-time": "120" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -571,7 +571,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -603,7 +603,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -612,7 +612,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c5cd9d75ef798da47fcf1441d8269b70", @@ -621,26 +621,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "387ce6ab-948d-4a91-b2c7-b2af86684b60", + "apim-request-id": "12ded2db-9766-426b-b0f1-3a585f477293", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:41 GMT", + "Date": "Mon, 16 Nov 2020 19:13:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "128" + "x-envoy-upstream-service-time": "123" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -649,7 +649,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -681,7 +681,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -690,7 +690,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d8869ca8a267e579e629d0e8f401f0ae", @@ -699,26 +699,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c6204f04-12eb-4657-9748-bc9272c34f71", + "apim-request-id": "aaa6bea9-e1c4-4b9c-bcc6-289c9887d780", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:42 GMT", + "Date": "Mon, 16 Nov 2020 19:13:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "147" + "x-envoy-upstream-service-time": "152" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -727,7 +727,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -759,7 +759,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -768,7 +768,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a79aeb630da808eb9080bd16944a103c", @@ -777,26 +777,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "94a3c1f8-cb08-4d18-b75a-433d94a0194b", + "apim-request-id": "2d755918-80ae-407f-86b6-51fb4f99ec1c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:43 GMT", + "Date": "Mon, 16 Nov 2020 19:13:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "121" + "x-envoy-upstream-service-time": "174" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -805,7 +805,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -837,7 +837,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -846,7 +846,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9368f62bd0c6d3ee23e8df501fbb997e", @@ -855,26 +855,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "de533b31-8010-4c19-b97a-02bd0b50abe7", + "apim-request-id": "895f15d8-adcc-41ff-8cef-20abc4e02d03", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:44 GMT", + "Date": "Mon, 16 Nov 2020 19:13:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "141" + "x-envoy-upstream-service-time": "144" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -883,7 +883,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -915,7 +915,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -924,7 +924,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ecde66dff38c9bc8b17e47e7e563509b", @@ -933,26 +933,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7ec011bd-04b4-41a7-b9a9-6c94032f435c", + "apim-request-id": "d82b3366-c739-466d-9c10-e52c0ac41bbe", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:47 GMT", + "Date": "Mon, 16 Nov 2020 19:13:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "164" + "x-envoy-upstream-service-time": "131" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -961,7 +961,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -993,7 +993,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1002,7 +1002,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "febd93185c9993e7fdc784bf2d9ae8d4", @@ -1011,26 +1011,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0c469923-dc3f-41eb-8537-da49cb8c3ad4", + "apim-request-id": "285c40af-dfe7-4108-8691-4464c4ff48bd", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:48 GMT", + "Date": "Mon, 16 Nov 2020 19:13:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "130" + "x-envoy-upstream-service-time": "164" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -1039,7 +1039,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -1071,7 +1071,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1080,7 +1080,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2e363ee7236b38b02ecce2488807edc0", @@ -1089,26 +1089,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aaf8eee3-bdd4-484b-80e7-61abffeafe8b", + "apim-request-id": "a0f25a99-4e39-4714-9ae4-4ff578139850", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:49 GMT", + "Date": "Mon, 16 Nov 2020 19:13:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "123" + "x-envoy-upstream-service-time": "127" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -1117,7 +1117,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -1149,7 +1149,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1158,7 +1158,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8b3844989bfe83e57f4befc46f086d16", @@ -1167,26 +1167,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "20ee0a78-89e2-49d9-b751-f5bc54631211", + "apim-request-id": "052a635b-af57-46bd-9d4c-19f740d8b507", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:50 GMT", + "Date": "Mon, 16 Nov 2020 19:13:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "142" + "x-envoy-upstream-service-time": "153" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -1195,7 +1195,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -1227,7 +1227,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1236,7 +1236,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a6ff7395222cf430e384cfcc7a9e0af5", @@ -1245,26 +1245,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b3f9e808-19c5-42fd-a6d5-38ce78ed14e6", + "apim-request-id": "a7ee334e-f054-43e2-b18d-615113b2b109", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:51 GMT", + "Date": "Mon, 16 Nov 2020 19:13:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "181" + "x-envoy-upstream-service-time": "147" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -1273,7 +1273,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -1305,7 +1305,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1314,7 +1314,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e927c4d95d624cd658b3af2033ebc925", @@ -1323,26 +1323,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0cf05654-9fd8-4804-afe5-232f9ea44e76", + "apim-request-id": "d58f2e0f-0bd2-4be6-bfbd-d64459ec8883", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:53 GMT", + "Date": "Mon, 16 Nov 2020 19:13:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "150" + "x-envoy-upstream-service-time": "152" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -1351,7 +1351,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -1383,7 +1383,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1392,7 +1392,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "15b2cc5e470775931443a779cb1908e0", @@ -1401,26 +1401,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0d65bdce-a467-49d0-9536-6a567feeaf50", + "apim-request-id": "37a8da53-d688-4de6-b2c7-5eaefa0e677c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:54 GMT", + "Date": "Mon, 16 Nov 2020 19:13:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "136" + "x-envoy-upstream-service-time": "157" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -1429,7 +1429,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -1461,7 +1461,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1470,7 +1470,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "aaeaf94084e038b39db34d79720fc1f7", @@ -1479,26 +1479,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "79df2cad-47ab-4067-be5b-289af79fad30", + "apim-request-id": "da2dd32a-444d-4021-b388-b02bdba218d9", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:56 GMT", + "Date": "Mon, 16 Nov 2020 19:13:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "143" + "x-envoy-upstream-service-time": "132" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -1507,7 +1507,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -1539,7 +1539,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1548,7 +1548,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ae6daabbf5eb92ee30b1d51fb55c813f", @@ -1557,26 +1557,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "854e2a58-6d58-4aea-be3b-42c70abf5fb0", + "apim-request-id": "360cf7b4-166c-4df1-b5a3-5dc5d9ad711f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:57 GMT", + "Date": "Mon, 16 Nov 2020 19:13:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "160" + "x-envoy-upstream-service-time": "149" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -1585,7 +1585,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -1617,7 +1617,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1626,7 +1626,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3adfceaa1e00da44187a7854f91a0204", @@ -1635,26 +1635,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "40816a58-99d8-426b-89d0-c4eac3072d6c", + "apim-request-id": "d316ea7d-7b88-42ee-9ec0-521f0fb8fe42", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:58 GMT", + "Date": "Mon, 16 Nov 2020 19:13:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "118" + "x-envoy-upstream-service-time": "165" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -1663,7 +1663,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -1695,7 +1695,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1704,7 +1704,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "20beb0825aab4af40b58792fae948240", @@ -1713,26 +1713,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9898fc42-a207-42c9-8032-069d6a319351", + "apim-request-id": "987393b1-afa9-46ea-b928-477af253442f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:18:59 GMT", + "Date": "Mon, 16 Nov 2020 19:14:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "130" + "x-envoy-upstream-service-time": "203" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -1741,7 +1741,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -1773,7 +1773,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1782,7 +1782,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a3ce0e3286309cf6659295717d9a9916", @@ -1791,26 +1791,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "db414e29-b7ce-4ea9-92da-a497c5e49d5e", + "apim-request-id": "12d11911-cef8-4330-bac6-b8e5d3577478", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:01 GMT", + "Date": "Mon, 16 Nov 2020 19:14:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "140" + "x-envoy-upstream-service-time": "128" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -1819,7 +1819,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -1851,7 +1851,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1860,7 +1860,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "059dd1ae609d4f93da942ea8a4152b84", @@ -1869,26 +1869,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "56066cf6-193e-4c77-b83d-0f171ff9fd0d", + "apim-request-id": "cef60489-77f4-4c7a-b65d-3e47fa1e5ae8", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:02 GMT", + "Date": "Mon, 16 Nov 2020 19:14:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "122" + "x-envoy-upstream-service-time": "182" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -1897,7 +1897,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -1929,7 +1929,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1938,7 +1938,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ea2137f85e4bfbd4b922bb18c583cc71", @@ -1947,26 +1947,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0ec7fc6b-8faa-4273-87f9-23a96d7ff411", + "apim-request-id": "eb8ecbf2-4393-4ba9-b3f0-e9cfdeab4cfb", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:04 GMT", + "Date": "Mon, 16 Nov 2020 19:14:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "136" + "x-envoy-upstream-service-time": "139" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -1975,7 +1975,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -2007,7 +2007,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2016,7 +2016,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "dd8063bf7df6d2a37a7ec99b584ef74f", @@ -2025,26 +2025,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ed7a4c10-11df-44a6-a708-4b563ef5d28d", + "apim-request-id": "1816d1d9-d7e7-47cc-9172-4e46c4479264", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:05 GMT", + "Date": "Mon, 16 Nov 2020 19:14:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "137" + "x-envoy-upstream-service-time": "193" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -2053,7 +2053,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -2085,7 +2085,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2094,7 +2094,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "46791167ae784fcafca14b7ba47b8a57", @@ -2103,26 +2103,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "12b4726b-7778-4b72-b4a2-2d36aea7a1ec", + "apim-request-id": "1b222a5e-ac08-479c-8a46-1d66f557dcdd", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:06 GMT", + "Date": "Mon, 16 Nov 2020 19:14:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "158" + "x-envoy-upstream-service-time": "157" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -2131,7 +2131,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -2163,7 +2163,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2172,7 +2172,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "41e9bdc74d957a8d934f70cd9539a36b", @@ -2181,26 +2181,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "34ebdff6-8d39-489a-8b32-9b2ae9edca6e", + "apim-request-id": "956d8e24-f9ad-446c-b7b4-a534608b7209", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:08 GMT", + "Date": "Mon, 16 Nov 2020 19:14:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "146" + "x-envoy-upstream-service-time": "177" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -2209,7 +2209,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -2241,7 +2241,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2250,7 +2250,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b3b16b2a860a10f99830e15432272dff", @@ -2259,26 +2259,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bbd9ddc1-7ec8-4b72-ad87-0cb879a119fa", + "apim-request-id": "b1f1ae1f-3d9c-4423-8ef3-c349dde15d17", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:09 GMT", + "Date": "Mon, 16 Nov 2020 19:14:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "160" + "x-envoy-upstream-service-time": "125" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -2287,7 +2287,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -2319,7 +2319,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2328,7 +2328,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9ad372f3b66519ba84feb2283dfdbac3", @@ -2337,26 +2337,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7c62cc18-f3cd-4230-8545-8c879dbc7c10", + "apim-request-id": "232b3e2e-ba68-4d02-88bd-a03b06f1f8a6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:10 GMT", + "Date": "Mon, 16 Nov 2020 19:14:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "132" + "x-envoy-upstream-service-time": "164" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -2365,7 +2365,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -2397,7 +2397,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2406,7 +2406,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3851dffed7c9414cc4d8a9646c38486b", @@ -2415,26 +2415,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d26c96e2-79ae-49ba-938c-036d9b8af916", + "apim-request-id": "4e61d7cd-c4c6-4e5f-bca4-4e0258ac70b5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:11 GMT", + "Date": "Mon, 16 Nov 2020 19:14:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "137" + "x-envoy-upstream-service-time": "131" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -2443,7 +2443,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -2475,7 +2475,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2484,7 +2484,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "22d9702208667306b1982f0bd3d1d29a", @@ -2493,26 +2493,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d5f9bceb-0370-4089-892e-1f6ea27937c7", + "apim-request-id": "90fa86a8-45b0-41fe-bfba-42c2a3c427fa", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:13 GMT", + "Date": "Mon, 16 Nov 2020 19:14:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "143" + "x-envoy-upstream-service-time": "197" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -2521,7 +2521,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -2553,7 +2553,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2562,7 +2562,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "52561d75f4d61c352591d68d0d55ac4c", @@ -2571,26 +2571,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8ed38a72-d372-4fc7-ad10-3bf3f36e5315", + "apim-request-id": "dd08c226-59df-43ae-957a-0dd85f959762", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:14 GMT", + "Date": "Mon, 16 Nov 2020 19:14:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "133" + "x-envoy-upstream-service-time": "178" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -2599,7 +2599,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -2631,7 +2631,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2640,7 +2640,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cd0546b59724f55dd9dd8731a7416df3", @@ -2649,26 +2649,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "04e1f9a6-7961-49e0-b5a7-f0cdbaa338b6", + "apim-request-id": "5ee2709d-1c4f-4546-83e3-f6f1a8d4bc8d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:15 GMT", + "Date": "Mon, 16 Nov 2020 19:14:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "121" + "x-envoy-upstream-service-time": "162" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -2677,7 +2677,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -2709,7 +2709,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2718,7 +2718,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4fee0e05f6e12d953abcfdd43278665b", @@ -2727,26 +2727,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d24d8bbd-d937-4331-80b2-b672f843d209", + "apim-request-id": "b6ff6150-5498-4f18-bd71-f4257d34a0ab", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:16 GMT", + "Date": "Mon, 16 Nov 2020 19:14:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "152" + "x-envoy-upstream-service-time": "123" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -2755,7 +2755,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -2787,7 +2787,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2796,7 +2796,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8c55e2eb05cbde76c06078f86c0475e4", @@ -2805,26 +2805,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bd4dab7d-380b-40df-bb16-38ca91e11464", + "apim-request-id": "96c6ac9f-54d8-4291-a5e4-842fe089f66d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:18 GMT", + "Date": "Mon, 16 Nov 2020 19:14:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "179" + "x-envoy-upstream-service-time": "135" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -2833,7 +2833,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -2865,7 +2865,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2874,7 +2874,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ff87e3235d67bf6ab1d892679a88c360", @@ -2883,26 +2883,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fecc09cd-379f-44bf-955c-45dc5cf8222b", + "apim-request-id": "157e9cb8-9f52-4038-941c-dbdad20f8cd2", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:19 GMT", + "Date": "Mon, 16 Nov 2020 19:14:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "147" + "x-envoy-upstream-service-time": "173" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -2911,7 +2911,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -2943,7 +2943,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2952,7 +2952,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c4462c77e1ebff2897108e817d9cc036", @@ -2961,26 +2961,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5507f077-3578-4345-96b4-b76b141950fb", + "apim-request-id": "a0137eaf-ac59-47c2-a681-8c606bfa5de4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:21 GMT", + "Date": "Mon, 16 Nov 2020 19:14:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "137" + "x-envoy-upstream-service-time": "130" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -2989,7 +2989,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -3021,7 +3021,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3030,7 +3030,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4eb1184767f18df47896dbf2730f4437", @@ -3039,26 +3039,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3440858f-9d18-4446-b97d-fd975fe672f8", + "apim-request-id": "8c481b53-e34e-445e-ae34-a447560a1d33", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:22 GMT", + "Date": "Mon, 16 Nov 2020 19:14:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "142" + "x-envoy-upstream-service-time": "177" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -3067,7 +3067,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -3099,7 +3099,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3108,7 +3108,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4081179cb0be42f9bb886756cfe84114", @@ -3117,26 +3117,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4fea66ed-b79c-46c5-88af-f139af4d43c3", + "apim-request-id": "d990dfc0-a508-4dbc-987c-4f3023f6f29e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:24 GMT", + "Date": "Mon, 16 Nov 2020 19:14:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "138" + "x-envoy-upstream-service-time": "212" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -3145,7 +3145,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -3177,7 +3177,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3186,7 +3186,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "81205b1774d7106f38b84c5505358b88", @@ -3195,26 +3195,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "83a0b597-3598-4bd5-b8c6-4387d983d269", + "apim-request-id": "40d89fd8-30a2-448f-b492-abbda7f14811", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:25 GMT", + "Date": "Mon, 16 Nov 2020 19:14:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "120" + "x-envoy-upstream-service-time": "169" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -3223,7 +3223,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -3255,7 +3255,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3264,7 +3264,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "66e556cc801b97781f6e9368ff9dbe90", @@ -3273,26 +3273,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2d98e638-14a9-4594-9465-9090a2110032", + "apim-request-id": "c42bfd97-9019-46d7-b023-ddbde343f2f7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:26 GMT", + "Date": "Mon, 16 Nov 2020 19:14:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "114" + "x-envoy-upstream-service-time": "136" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -3301,7 +3301,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -3333,7 +3333,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3342,7 +3342,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "17dbc754c2ee2760a770070563a43d85", @@ -3351,26 +3351,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "58e608e8-ca6f-4f85-b5b6-e7462d83d2f8", + "apim-request-id": "a45e0c7a-90b1-4363-a5c6-f55a286b6df1", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:27 GMT", + "Date": "Mon, 16 Nov 2020 19:14:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "145" + "x-envoy-upstream-service-time": "146" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -3379,7 +3379,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -3411,7 +3411,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3420,7 +3420,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "788adefcdb0397f8e3886169e107109b", @@ -3429,26 +3429,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e66d7633-e814-47af-a2df-694b4317bbfb", + "apim-request-id": "867fb244-f342-4f5f-9823-e23d8d695172", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:28 GMT", + "Date": "Mon, 16 Nov 2020 19:14:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "140" + "x-envoy-upstream-service-time": "148" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -3457,7 +3457,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -3489,7 +3489,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3498,7 +3498,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3e00bcfa73590999f6bdbeab7872337b", @@ -3507,26 +3507,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "118aef29-d25e-4c00-ad3a-969751427645", + "apim-request-id": "5a262480-1da6-472f-9b8f-2a1a843f7978", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:30 GMT", + "Date": "Mon, 16 Nov 2020 19:14:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "126" + "x-envoy-upstream-service-time": "168" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -3535,7 +3535,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -3567,7 +3567,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3576,7 +3576,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "206b0d314612788cce44346561f646a0", @@ -3585,26 +3585,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2e953b2c-e29e-488a-9922-a842e8d3134b", + "apim-request-id": "6b07707f-f5cb-4aa4-b53c-e036b61c9022", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:31 GMT", + "Date": "Mon, 16 Nov 2020 19:14:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "204" + "x-envoy-upstream-service-time": "153" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -3613,7 +3613,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -3645,7 +3645,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3654,7 +3654,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a70a6c5ffea3892b458081461d4d1e71", @@ -3663,26 +3663,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "71a02d65-f592-4cac-8827-18c5a7661468", + "apim-request-id": "0affe321-c0f6-45be-8d99-f15f4b03adeb", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:33 GMT", + "Date": "Mon, 16 Nov 2020 19:14:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "139" + "x-envoy-upstream-service-time": "174" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -3691,7 +3691,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -3723,7 +3723,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3732,7 +3732,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d337e555ef9bb4882f8770153f33a8ff", @@ -3741,26 +3741,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "153b37c6-2b9d-4fcf-8198-4cd231fd68e4", + "apim-request-id": "39b0d77c-2e09-4812-a7fa-105ad2268d15", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:34 GMT", + "Date": "Mon, 16 Nov 2020 19:14:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "137" + "x-envoy-upstream-service-time": "224" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -3769,7 +3769,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -3801,7 +3801,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3810,7 +3810,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0b4b1d768b6732d8e1e2db92c4465b80", @@ -3819,26 +3819,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d9726177-275a-4326-8f3e-1ca7035d1995", + "apim-request-id": "ec1c71d3-79d9-4ae7-bed4-af4e9e9f8d93", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:35 GMT", + "Date": "Mon, 16 Nov 2020 19:14:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "127" + "x-envoy-upstream-service-time": "158" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -3847,7 +3847,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -3879,7 +3879,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3888,7 +3888,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7b10c32573be7005e456781b8e164911", @@ -3897,26 +3897,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "571462c6-4b40-4eb1-a27c-8c05eb1dffb3", + "apim-request-id": "efd208ba-47bb-4ea2-9b6b-58a11d4de2a9", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:36 GMT", + "Date": "Mon, 16 Nov 2020 19:14:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "140" + "x-envoy-upstream-service-time": "165" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 1, "failed": 0, @@ -3925,7 +3925,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -3957,7 +3957,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3966,7 +3966,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ffcf81d81202c9090d05f1b814f6efe8", @@ -3975,113 +3975,104 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "28a8c800-7720-4032-942c-8bfef5e07a70", + "apim-request-id": "c6acf545-79f2-41e0-9454-5eb01cae24f8", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:38 GMT", + "Date": "Mon, 16 Nov 2020 19:14:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "135" + "x-envoy-upstream-service-time": "341" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, - "completed": 1, + "completed": 2, "failed": 0, - "inProgress": 2, + "inProgress": 1, "total": 3, - "keyPhraseExtractionTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { "id": "1", - "keyPhrases": [ - "Bill Gates", - "Paul Allen", - "Microsoft" + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } ], "warnings": [] }, { "id": "2", - "keyPhrases": [ - "gato", - "perro", - "veterinario" + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } ], "warnings": [] } ], "errors": [], - "modelVersion": "2020-07-01" + "modelVersion": "2020-04-01" } } - ] - } - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "7cf0ef2c2c23034018db271113bca3cb", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e3365b96-2b57-45a3-8141-50ad4c782d9e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:39 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "163" - }, - "ResponseBody": { - "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", - "status": "running", - "errors": [], - "tasks": { - "details": { - "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" - }, - "completed": 1, - "failed": 0, - "inProgress": 2, - "total": 3, + ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -4113,7 +4104,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4122,49 +4113,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "43b9ca985b77127db9476db9814c5bee", + "x-ms-client-request-id": "7cf0ef2c2c23034018db271113bca3cb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cb9eff68-03fc-4618-bf64-f92908a13c8d", + "apim-request-id": "6cb5a2c2-c72f-4fb8-a554-0d17d6797fc3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:40 GMT", + "Date": "Mon, 16 Nov 2020 19:14:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "190" + "x-envoy-upstream-service-time": "270" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -4190,25 +4180,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -4240,7 +4251,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4249,18 +4260,18 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "9eef8f66cd25aced40cbe727ebf8b551", + "x-ms-client-request-id": "43b9ca985b77127db9476db9814c5bee", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7913bc5e-d757-4608-a8bb-e3c6f3c9a92b", + "apim-request-id": "d439a727-b249-438a-92d8-75cb72c5c382", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:42 GMT", + "Date": "Mon, 16 Nov 2020 19:14:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -4268,30 +4279,29 @@ }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -4317,25 +4327,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -4367,7 +4398,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4376,49 +4407,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "4a202662ac3cd07172ddc2dcbe8782cc", + "x-ms-client-request-id": "9eef8f66cd25aced40cbe727ebf8b551", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cf05224b-7dd5-47eb-9f55-5e653a95e3f9", + "apim-request-id": "7ac5b450-5a35-4d06-8b47-2318b5b1bca7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:43 GMT", + "Date": "Mon, 16 Nov 2020 19:14:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "205" + "x-envoy-upstream-service-time": "197" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -4444,25 +4474,193 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] } ], + "errors": [], "modelVersion": "2020-07-01" } } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4a202662ac3cd07172ddc2dcbe8782cc", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d4f43c7d-78a4-4b37-a0ba-0261ae55034c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 16 Nov 2020 19:14:45 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "173" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-16T19:13:33Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -4494,7 +4692,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4503,7 +4701,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "84aa387f04cccba5dc0d02ab745526c1", @@ -4512,40 +4710,39 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "85fbfd83-2422-4a5e-999a-9b122f500151", + "apim-request-id": "803a207e-04d7-4305-8faa-cb43ecf39af9", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:44 GMT", + "Date": "Mon, 16 Nov 2020 19:14:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "249" + "x-envoy-upstream-service-time": "228" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -4571,25 +4768,340 @@ } ], "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "errors": [ + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-07-01" + } + } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "5b571c91112cbab11d1f2c480b11edb8", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ac1211df-41d8-4891-bade-f533cccf9cc2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 16 Nov 2020 19:14:47 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "185" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-16T19:13:33Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } + ], + "keyPhraseExtractionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "keyPhrases": [ + "Bill Gates", + "Paul Allen", + "Microsoft" + ], + "warnings": [] + }, + { + "id": "2", + "keyPhrases": [ + "gato", + "perro", + "veterinario" + ], + "warnings": [] } ], + "errors": [], "modelVersion": "2020-07-01" } } + ] + } + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "b3a81b49314e5d8580546d2fa9c65b1c", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "9b7ab47b-3b22-4342-9692-9318cfe2cfa4", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 16 Nov 2020 19:14:49 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "183" + }, + "ResponseBody": { + "displayName": "AnalyzeOperationWithMultipleTasks", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", + "status": "running", + "errors": [], + "tasks": { + "details": { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-16T19:13:33Z" + }, + "completed": 2, + "failed": 0, + "inProgress": 1, + "total": 3, + "entityRecognitionTasks": [ + { + "name": "AnalyzeOperationWithMultipleTasks", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", + "results": { + "inTerminalState": true, + "documents": [ + { + "id": "1", + "entities": [ + { + "text": "Microsoft", + "category": "Organization", + "offset": 0, + "length": 9, + "confidenceScore": 0.83 + }, + { + "text": "Bill Gates", + "category": "Person", + "offset": 25, + "length": 10, + "confidenceScore": 0.85 + }, + { + "text": "Paul Allen", + "category": "Person", + "offset": 40, + "length": 10, + "confidenceScore": 0.9 + } + ], + "warnings": [] + }, + { + "id": "2", + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] + } + ], + "errors": [], + "modelVersion": "2020-04-01" + } + } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -4621,7 +5133,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4630,49 +5142,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "5b571c91112cbab11d1f2c480b11edb8", + "x-ms-client-request-id": "a24a00b726306da086ef66add75dc0ca", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c4dcc82e-b81a-46c0-9a63-4aa073304002", + "apim-request-id": "2e5329d6-c33b-4a7b-a401-b51a3c43f41b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:46 GMT", + "Date": "Mon, 16 Nov 2020 19:14:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "157" + "x-envoy-upstream-service-time": "182" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -4698,25 +5209,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -4748,7 +5280,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4757,49 +5289,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "b3a81b49314e5d8580546d2fa9c65b1c", + "x-ms-client-request-id": "59614a1f73ad5f7397f9dad7a4811156", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "54cd0668-5657-4a0e-8f64-2f322127a38c", + "apim-request-id": "12785d5d-ce6b-48a3-a737-236e2a2f3f86", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:48 GMT", + "Date": "Mon, 16 Nov 2020 19:14:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "166" + "x-envoy-upstream-service-time": "210" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -4825,25 +5356,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -4875,7 +5427,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4884,49 +5436,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "a24a00b726306da086ef66add75dc0ca", + "x-ms-client-request-id": "0a9110c34ac623887a3a2c5ecad88522", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "30c01fc7-07a3-4636-9ef5-5ae5b6a31e77", + "apim-request-id": "a61702b6-9bc0-4e56-9ddf-8b9c4a71313a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:49 GMT", + "Date": "Mon, 16 Nov 2020 19:14:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "319" + "x-envoy-upstream-service-time": "210" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -4952,25 +5503,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -5002,7 +5574,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -5011,49 +5583,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "59614a1f73ad5f7397f9dad7a4811156", + "x-ms-client-request-id": "5f10a2940265436f8deb0b364bc8c905", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "29fe6ebd-5661-40d5-b4d1-64e44c435e57", + "apim-request-id": "a55cb546-90cd-47cd-9814-0bfdfa73b1d8", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:50 GMT", + "Date": "Mon, 16 Nov 2020 19:14:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "234" + "x-envoy-upstream-service-time": "179" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -5079,25 +5650,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -5129,7 +5721,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -5138,49 +5730,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "0a9110c34ac623887a3a2c5ecad88522", + "x-ms-client-request-id": "c7e910deb5ccd404c13ede72461494bf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d371afe2-1643-4e3c-8cc1-decc12fca5cb", + "apim-request-id": "d7da5d24-18e9-450e-b3ac-06411f062912", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:52 GMT", + "Date": "Mon, 16 Nov 2020 19:14:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "154" + "x-envoy-upstream-service-time": "211" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -5206,25 +5797,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -5256,7 +5868,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -5265,49 +5877,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "5f10a2940265436f8deb0b364bc8c905", + "x-ms-client-request-id": "0142b773b171c1f1a14d7ddb3f51d7b2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8134a2b7-54d9-46a9-8df9-650f1c8eadcd", + "apim-request-id": "c1fa7d81-d666-4417-aeea-eb89da1a54d9", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:53 GMT", + "Date": "Mon, 16 Nov 2020 19:14:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "189" + "x-envoy-upstream-service-time": "215" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -5333,25 +5944,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -5383,7 +6015,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -5392,18 +6024,18 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "c7e910deb5ccd404c13ede72461494bf", + "x-ms-client-request-id": "ba802770beeedf569e3b9d2723fcfd78", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c8a207eb-943b-474b-b133-1d0fa2b089cb", + "apim-request-id": "a0799a3f-05d9-4d71-9c7d-6938e0c65b0d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:54 GMT", + "Date": "Mon, 16 Nov 2020 19:14:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -5411,30 +6043,29 @@ }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -5460,25 +6091,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -5510,7 +6162,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -5519,49 +6171,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "0142b773b171c1f1a14d7ddb3f51d7b2", + "x-ms-client-request-id": "93c24c56c8852c931f27267f37289570", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1a466676-9936-449e-98cf-a567441f34bf", + "apim-request-id": "0d0420a4-301e-4e76-9c26-34cb1eb2e2cc", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:56 GMT", + "Date": "Mon, 16 Nov 2020 19:15:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "190" + "x-envoy-upstream-service-time": "170" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -5587,25 +6238,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -5637,7 +6309,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -5646,49 +6318,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ba802770beeedf569e3b9d2723fcfd78", + "x-ms-client-request-id": "1f012c66da94b5d06163633614c99da4", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "27857572-6822-4655-8965-b773fc8a19a1", + "apim-request-id": "a7a482db-4619-413f-abf0-601c84d53999", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:57 GMT", + "Date": "Mon, 16 Nov 2020 19:15:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "190" + "x-envoy-upstream-service-time": "156" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -5714,25 +6385,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -5764,7 +6456,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -5773,49 +6465,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "93c24c56c8852c931f27267f37289570", + "x-ms-client-request-id": "f3850550438ea82c94539bc698d7a775", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "df789d3e-0429-49b2-ac3a-f00bd5f2e684", + "apim-request-id": "0ccd7c31-b326-44d3-bdfe-cc50fa930650", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:58 GMT", + "Date": "Mon, 16 Nov 2020 19:15:02 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "172" + "x-envoy-upstream-service-time": "190" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -5841,25 +6532,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -5891,7 +6603,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -5900,49 +6612,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "1f012c66da94b5d06163633614c99da4", + "x-ms-client-request-id": "f7c02da6defa7be37b0d3222655d1855", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6ea10490-cdeb-42db-9440-819092bfcf83", + "apim-request-id": "f7e5ea21-fbab-4bcc-9801-0eb72f059640", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:19:59 GMT", + "Date": "Mon, 16 Nov 2020 19:15:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "246" + "x-envoy-upstream-service-time": "177" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -5968,25 +6679,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -6018,7 +6750,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -6027,49 +6759,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "f3850550438ea82c94539bc698d7a775", + "x-ms-client-request-id": "322e818aa1a323e1ff598b413e091d8a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1ed8adfd-bdb5-475e-b5bd-e402d23267a5", + "apim-request-id": "a5f92df6-bd21-4392-9984-d44c0d444204", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:01 GMT", + "Date": "Mon, 16 Nov 2020 19:15:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "285" + "x-envoy-upstream-service-time": "248" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -6095,25 +6826,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -6145,7 +6897,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -6154,49 +6906,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "f7c02da6defa7be37b0d3222655d1855", + "x-ms-client-request-id": "e68fedbba60972a921097881110a4336", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7d347692-17aa-41d8-b539-cd3ec938fb07", + "apim-request-id": "2bc7e7d0-077f-4562-b055-6363149f8fc6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:02 GMT", + "Date": "Mon, 16 Nov 2020 19:15:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "237" + "x-envoy-upstream-service-time": "173" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -6222,25 +6973,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -6272,7 +7044,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -6281,49 +7053,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "322e818aa1a323e1ff598b413e091d8a", + "x-ms-client-request-id": "163c463b75a804d14b9cf7a152a23c71", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4ce9767b-fbc6-4391-a1f4-de0c8a79797c", + "apim-request-id": "6cecc461-bf34-4698-bc3a-20519768a0d3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:05 GMT", + "Date": "Mon, 16 Nov 2020 19:15:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "184" + "x-envoy-upstream-service-time": "215" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -6349,25 +7120,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -6399,7 +7191,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -6408,49 +7200,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e68fedbba60972a921097881110a4336", + "x-ms-client-request-id": "7766a8ef31cde44bd7bc109a296012f5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8d727a4a-ff01-4dca-9ec9-ea04db102fa5", + "apim-request-id": "8695e2ad-497e-43f2-aa13-084c9e256444", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:06 GMT", + "Date": "Mon, 16 Nov 2020 19:15:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "237" + "x-envoy-upstream-service-time": "166" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -6476,25 +7267,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -6526,7 +7338,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -6535,49 +7347,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "163c463b75a804d14b9cf7a152a23c71", + "x-ms-client-request-id": "f806541507cc46e11c8a9b6cae071f7f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a8a5ec21-d637-44b7-b81d-efea76dc2245", + "apim-request-id": "87fc90e8-f9d4-4238-93cc-02f3cbcc8602", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:07 GMT", + "Date": "Mon, 16 Nov 2020 19:15:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "329" + "x-envoy-upstream-service-time": "160" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -6603,25 +7414,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -6653,7 +7485,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -6662,49 +7494,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "7766a8ef31cde44bd7bc109a296012f5", + "x-ms-client-request-id": "689106cccca30969fa583eeb6536dbeb", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4dec4138-e044-485f-817a-2199ebda3674", + "apim-request-id": "4638c241-a646-426f-ab2b-7d31d193fcbc", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:08 GMT", + "Date": "Mon, 16 Nov 2020 19:15:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "220" + "x-envoy-upstream-service-time": "226" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -6730,25 +7561,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -6780,7 +7632,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -6789,49 +7641,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "f806541507cc46e11c8a9b6cae071f7f", + "x-ms-client-request-id": "fe8c028a449be8a4c6205a4295df35cf", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5cfbb405-77de-4208-a721-e0a3bb7683ec", + "apim-request-id": "f8732c06-793a-4ebc-98d7-93d415f59df5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:10 GMT", + "Date": "Mon, 16 Nov 2020 19:15:13 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "181" + "x-envoy-upstream-service-time": "206" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -6857,25 +7708,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -6907,7 +7779,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -6916,49 +7788,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "689106cccca30969fa583eeb6536dbeb", + "x-ms-client-request-id": "23ce909da9cf4952ebfcfe74c8f5e1e5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "79a2e658-af4f-4324-8158-875dd6032bf3", + "apim-request-id": "6c158d89-2b11-4892-b5fa-1ad53b4eb6d1", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:11 GMT", + "Date": "Mon, 16 Nov 2020 19:15:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "202" + "x-envoy-upstream-service-time": "204" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -6984,25 +7855,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -7034,7 +7926,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -7043,49 +7935,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "fe8c028a449be8a4c6205a4295df35cf", + "x-ms-client-request-id": "ace2b0af207b87e361a8a2837126731b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "19b27b01-3ddc-4b6b-a6ee-8e178481caa8", + "apim-request-id": "70c14935-5a6f-4fc7-8413-80f805fbcd01", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:12 GMT", + "Date": "Mon, 16 Nov 2020 19:15:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "177" + "x-envoy-upstream-service-time": "157" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -7111,25 +8002,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -7161,7 +8073,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -7170,49 +8082,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "23ce909da9cf4952ebfcfe74c8f5e1e5", + "x-ms-client-request-id": "d44e6e22b868e11baf42139f463020d0", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1f86e380-f101-416e-9cde-a73716e99d09", + "apim-request-id": "906e5b80-ca96-4a83-926a-a0958f7a1a4c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:14 GMT", + "Date": "Mon, 16 Nov 2020 19:15:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "251" + "x-envoy-upstream-service-time": "200" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -7238,25 +8149,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -7288,7 +8220,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -7297,49 +8229,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "ace2b0af207b87e361a8a2837126731b", + "x-ms-client-request-id": "e593743e89fc7d54ac46c12607ced8c5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9b82b442-7ab3-4176-8187-32625c6be41e", + "apim-request-id": "09040a7b-258f-416e-b8ff-23960b7c1ea9", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:15 GMT", + "Date": "Mon, 16 Nov 2020 19:15:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "180" + "x-envoy-upstream-service-time": "210" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -7365,25 +8296,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -7415,7 +8367,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -7424,49 +8376,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "d44e6e22b868e11baf42139f463020d0", + "x-ms-client-request-id": "5951e2890ca7f67d9401fc390d444130", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6b0f1e64-e4bb-4db8-bbf1-c1e298c29fbb", + "apim-request-id": "4adeb7b4-6416-4dbb-ac1e-d01e0d1c9751", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:17 GMT", + "Date": "Mon, 16 Nov 2020 19:15:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "225" + "x-envoy-upstream-service-time": "213" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -7492,25 +8443,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -7542,7 +8514,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -7551,49 +8523,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e593743e89fc7d54ac46c12607ced8c5", + "x-ms-client-request-id": "fc44d1888e92981e1ad12821f6f5d9e1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f6551a4f-e7f4-40d5-9e75-41cd4a4b2208", + "apim-request-id": "23cdab41-1e05-4ee4-a7e2-1ff2733749fb", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:18 GMT", + "Date": "Mon, 16 Nov 2020 19:15:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "167" + "x-envoy-upstream-service-time": "195" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -7619,25 +8590,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -7669,7 +8661,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -7678,49 +8670,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "5951e2890ca7f67d9401fc390d444130", + "x-ms-client-request-id": "63164e6ac6de3128f79d51fb8d1b7067", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cf7cce74-4a69-4000-a27d-0520f95e6414", + "apim-request-id": "cc034198-a460-4dd6-833a-2986ab5f26ee", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:20 GMT", + "Date": "Mon, 16 Nov 2020 19:15:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "231" + "x-envoy-upstream-service-time": "181" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -7746,25 +8737,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -7796,7 +8808,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -7805,49 +8817,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "fc44d1888e92981e1ad12821f6f5d9e1", + "x-ms-client-request-id": "359d9105db89fa32c3b93fd6e45cff9e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2b7bb752-4dc1-49fc-856f-1ab135018248", + "apim-request-id": "c97588f3-73c4-4bc7-a505-80dfdddec9f0", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:21 GMT", + "Date": "Mon, 16 Nov 2020 19:15:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "205" + "x-envoy-upstream-service-time": "166" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -7873,25 +8884,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -7923,7 +8955,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -7932,49 +8964,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "63164e6ac6de3128f79d51fb8d1b7067", + "x-ms-client-request-id": "bece1a27dd2ec151a81305f43d220aff", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c9193eb4-ff46-44bc-9330-d9407d34ff70", + "apim-request-id": "d16c7939-88e5-4d94-a776-f2f0f33af26f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:22 GMT", + "Date": "Mon, 16 Nov 2020 19:15:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "173" + "x-envoy-upstream-service-time": "218" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -8000,25 +9031,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -8050,7 +9102,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -8059,49 +9111,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "359d9105db89fa32c3b93fd6e45cff9e", + "x-ms-client-request-id": "651bc061a4578e571b1b9f2587514d9a", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b5d946c5-5d6e-43b5-b776-2fabbf4fa4df", + "apim-request-id": "44e47af2-97b3-4fc2-9400-04347563c134", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:23 GMT", + "Date": "Mon, 16 Nov 2020 19:15:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "175" + "x-envoy-upstream-service-time": "174" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -8127,25 +9178,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -8177,7 +9249,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -8186,49 +9258,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "bece1a27dd2ec151a81305f43d220aff", + "x-ms-client-request-id": "73d4b29db14c27393fdc8c76d63ebda1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2c80e345-7ca2-45a1-a372-478d919ab89b", + "apim-request-id": "9d9641bd-c1a4-46e6-96d1-809a2fe421d9", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:25 GMT", + "Date": "Mon, 16 Nov 2020 19:15:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "251" + "x-envoy-upstream-service-time": "243" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -8254,25 +9325,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -8304,7 +9396,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -8313,49 +9405,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "651bc061a4578e571b1b9f2587514d9a", + "x-ms-client-request-id": "24753fae9a408347c33fa2133d2c3956", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1faaf53a-84fe-4019-9f9d-1603cf953d0e", + "apim-request-id": "a7d1579b-3e5b-4cd7-8268-68b4e893def4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:26 GMT", + "Date": "Mon, 16 Nov 2020 19:15:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "189" + "x-envoy-upstream-service-time": "178" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -8381,25 +9472,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -8431,7 +9543,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -8440,49 +9552,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "73d4b29db14c27393fdc8c76d63ebda1", + "x-ms-client-request-id": "8a566ac5974eafb387f4267b17e1b8dd", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bf04b34f-6419-4758-9601-fa6349d9b0f2", + "apim-request-id": "d6dacc96-1825-4c06-9224-6b8b8d141a19", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:28 GMT", + "Date": "Mon, 16 Nov 2020 19:15:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "190" + "x-envoy-upstream-service-time": "219" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -8508,25 +9619,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -8558,7 +9690,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -8567,49 +9699,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "24753fae9a408347c33fa2133d2c3956", + "x-ms-client-request-id": "4877fe5d28dc03596b51b00c0e26e912", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b70593a0-be24-4fce-8ca0-ba829ce736da", + "apim-request-id": "03edb5a5-0161-47d6-971b-ca6984157475", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:30 GMT", + "Date": "Mon, 16 Nov 2020 19:15:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "189" + "x-envoy-upstream-service-time": "196" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -8635,25 +9766,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -8685,7 +9837,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -8694,49 +9846,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "8a566ac5974eafb387f4267b17e1b8dd", + "x-ms-client-request-id": "6bb035a232e716528cc69d4c73cb6ce1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "38964b30-0ae2-4405-a9db-5e585ed8426b", + "apim-request-id": "a434c8be-b62d-4f51-9402-bf16945a767e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:31 GMT", + "Date": "Mon, 16 Nov 2020 19:15:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "208" + "x-envoy-upstream-service-time": "214" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -8762,25 +9913,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -8812,7 +9984,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -8821,49 +9993,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "4877fe5d28dc03596b51b00c0e26e912", + "x-ms-client-request-id": "3eb5c587f1b49c7a11531ffde7a6a061", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eec9cec1-8704-4528-b9f0-537135f7ef54", + "apim-request-id": "18a89564-1d8b-4ec6-8c9f-7b6d9bfb8297", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:32 GMT", + "Date": "Mon, 16 Nov 2020 19:15:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "187" + "x-envoy-upstream-service-time": "163" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -8889,25 +10060,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -8939,7 +10131,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -8948,49 +10140,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "6bb035a232e716528cc69d4c73cb6ce1", + "x-ms-client-request-id": "e1d8130a4c302af6ac61bb158b0d8f9f", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2606ceca-395f-4f39-b0f5-07baf12fb2ad", + "apim-request-id": "47bea5b0-7bea-4be8-9e8f-aef68e91e444", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:33 GMT", + "Date": "Mon, 16 Nov 2020 19:15:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "197" + "x-envoy-upstream-service-time": "210" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -9016,25 +10207,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -9066,7 +10278,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -9075,49 +10287,48 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "3eb5c587f1b49c7a11531ffde7a6a061", + "x-ms-client-request-id": "4985cee5ab70b05ebb135a9313552ee5", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c0047e5a-0028-4c3d-a2f6-2543b9271421", + "apim-request-id": "a52eb653-4327-4de4-8970-64c8535c1427", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:34 GMT", + "Date": "Mon, 16 Nov 2020 19:15:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "167" + "x-envoy-upstream-service-time": "389" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 2, "failed": 0, "inProgress": 1, "total": 3, - "entityRecognitionPiiTasks": [ + "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ { - "redactedText": "********* was founded by ********** and **********.", "id": "1", "entities": [ { @@ -9143,25 +10354,46 @@ } ], "warnings": [] - } - ], - "errors": [ + }, { "id": "2", - "error": { - "code": "InvalidArgument", - "message": "Invalid language code. Supported languages: en" - } + "entities": [ + { + "text": "Mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 0, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "mi", + "category": "DateTime", + "subcategory": "Date", + "offset": 11, + "length": 2, + "confidenceScore": 0.8 + }, + { + "text": "veterinario", + "category": "PersonType", + "offset": 36, + "length": 11, + "confidenceScore": 0.52 + } + ], + "warnings": [] } ], - "modelVersion": "2020-07-01" + "errors": [], + "modelVersion": "2020-04-01" } } ], "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -9193,7 +10425,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -9202,35 +10434,35 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "e1d8130a4c302af6ac61bb158b0d8f9f", + "x-ms-client-request-id": "60413b258af23ab1cf8b925335651103", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "864b8cf7-0b2c-4f16-ad19-c4e3bb261b85", + "apim-request-id": "0e1c0340-7944-4040-a8dd-4922accf3bfc", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:20:35 GMT", + "Date": "Mon, 16 Nov 2020 19:15:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "254" + "x-envoy-upstream-service-time": "361" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "5430d1ad-11c2-49da-8950-a588cd89ea10_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:18:31Z", - "createdDateTime": "2020-11-13T22:18:31Z", - "expirationDateTime": "2020-11-14T22:18:31Z", + "jobId": "44d17ea6-4197-400f-b7d4-1ca1efec9718_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:13:33Z", + "createdDateTime": "2020-11-16T19:13:30Z", + "expirationDateTime": "2020-11-17T19:13:30Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31Z" + "lastUpdateDateTime": "2020-11-16T19:13:33Z" }, "completed": 3, "failed": 0, @@ -9239,7 +10471,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -9308,7 +10540,7 @@ "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ @@ -9357,7 +10589,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:18:31.4280039Z", + "lastUpdateDateTime": "2020-11-16T19:13:33.0434029Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasksAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasksAsync.json index 5786ca4023586..50404c2117925 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasksAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeOperationTests/AnalyzeOperationWithMultipleTasksAsync.json @@ -11,9 +11,9 @@ "Content-Length": "478", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fc89b09ef447a94eb076eaa994fc0f04-b553dda66426334f-00", + "traceparent": "00-9fd945ebfa8e844f95aff62dba73afee-43cb347d073fb541-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "84b09b92aaeab256574bef378bac8fd4", @@ -61,18 +61,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "717ec56b-8425-4d91-81b8-f31605a48233", - "Date": "Fri, 13 Nov 2020 22:22:51 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", + "apim-request-id": "075f2a78-72c2-4303-99c4-82edf6a961c0", + "Date": "Mon, 16 Nov 2020 19:17:54 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "43" + "x-envoy-upstream-service-time": "190" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -81,7 +81,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "28fe54c562f9429f154e7e8cbd24fdd6", @@ -90,26 +90,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7af3dd77-d35f-490b-b380-59751bc4ac01", + "apim-request-id": "77897088-6add-47cf-9459-aa50067f5725", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:51 GMT", + "Date": "Mon, 16 Nov 2020 19:17:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "14" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:54Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:54Z" }, "completed": 0, "failed": 0, @@ -119,7 +119,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -128,7 +128,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d5a26188dff6bc6bb1f8fa159c08c192", @@ -137,36 +137,36 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e0bd72c9-6f29-4686-a1d5-1ae4b644b443", + "apim-request-id": "d301df02-8b62-4a9f-84d4-dbb405f1f7c2", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:53 GMT", + "Date": "Mon, 16 Nov 2020 19:17:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "85" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:54Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "notStarted", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:54Z" }, "completed": 0, "failed": 0, - "inProgress": 3, - "total": 3 + "inProgress": 0, + "total": 0 } } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -175,7 +175,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d5de44db1316307dfb6e6e9b2cc9f433", @@ -184,26 +184,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "da898494-3bed-4905-8fd9-a618e070963e", + "apim-request-id": "181946dd-9129-4511-ad70-cb297f5607c3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:54 GMT", + "Date": "Mon, 16 Nov 2020 19:17:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "80" + "x-envoy-upstream-service-time": "123" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 0, "failed": 0, @@ -213,7 +213,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -222,7 +222,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2aae184eb909e6dee94276006789a50d", @@ -231,26 +231,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2f42a85c-2f8e-4d75-8652-335c394ca705", + "apim-request-id": "83946602-73e3-4191-8e0e-e637355ac5ce", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:56 GMT", + "Date": "Mon, 16 Nov 2020 19:17:58 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "116" + "x-envoy-upstream-service-time": "113" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 0, "failed": 0, @@ -260,7 +260,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -269,7 +269,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "79b1eb8c274575c0e472da8870cf8fe8", @@ -278,26 +278,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "99765a66-cb0c-491b-a854-47b06740037b", + "apim-request-id": "72af0d54-5a4d-4208-add2-9591ebe33dab", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:57 GMT", + "Date": "Mon, 16 Nov 2020 19:18:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "160" + "x-envoy-upstream-service-time": "253" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -306,7 +306,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -338,7 +338,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -347,7 +347,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "83c6c7049759218966f8ecd39c7cc871", @@ -356,26 +356,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "de2b5161-65e9-43b6-9f45-ec4a26e80983", + "apim-request-id": "3aa0e82b-26d5-4dcd-a38b-fca9a4423519", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:58 GMT", + "Date": "Mon, 16 Nov 2020 19:18:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "156" + "x-envoy-upstream-service-time": "144" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -384,7 +384,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -416,7 +416,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -425,7 +425,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "400e61c97b1727ed58394696df567619", @@ -434,26 +434,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "065b86c2-dfed-42e8-ac03-8a2cd9daadcf", + "apim-request-id": "68c0902f-b29a-4069-987d-e29cc88efe6d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:22:59 GMT", + "Date": "Mon, 16 Nov 2020 19:18:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "130" + "x-envoy-upstream-service-time": "237" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -462,7 +462,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -494,7 +494,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -503,7 +503,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9ffc8eb221c3f5b3628f124d3aecd867", @@ -512,26 +512,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e6bcb805-e80f-455f-b208-1276ec1bfeb3", + "apim-request-id": "160de6d0-a0ee-431c-88eb-a07d5d2ae703", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:01 GMT", + "Date": "Mon, 16 Nov 2020 19:18:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "147" + "x-envoy-upstream-service-time": "139" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -540,7 +540,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -572,7 +572,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -581,7 +581,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0fbf68a94fc088d0da9f2b2051f24210", @@ -590,26 +590,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "266f310d-72c2-4771-85bc-404722ecdf8a", + "apim-request-id": "93d00596-87a9-49a8-809f-97ade75bc3b5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:02 GMT", + "Date": "Mon, 16 Nov 2020 19:18:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "163" + "x-envoy-upstream-service-time": "133" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -618,7 +618,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -650,7 +650,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -659,7 +659,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0e20d3822980a7aeae19de88689fec6c", @@ -668,26 +668,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "30227049-ab80-4e17-a221-b2b6f7f08efd", + "apim-request-id": "c7c3a062-e6ff-4619-ba85-658669b31cd9", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:03 GMT", + "Date": "Mon, 16 Nov 2020 19:18:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "154" + "x-envoy-upstream-service-time": "170" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -696,7 +696,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -728,7 +728,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -737,7 +737,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "77edde6166976358be73c523f693a470", @@ -746,26 +746,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b7844ea9-db63-46a7-a6e3-2809bc022007", + "apim-request-id": "9cdd6472-6618-47cb-a4d6-7183b4a3a4de", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:05 GMT", + "Date": "Mon, 16 Nov 2020 19:18:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "222" + "x-envoy-upstream-service-time": "177" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -774,7 +774,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -806,7 +806,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -815,7 +815,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "67cb024dcacb80e6b91761a771471f3a", @@ -824,26 +824,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4dd6e8b4-9ed8-447e-88a4-30ebfd77f0c4", + "apim-request-id": "5df904d5-9759-4724-8806-8f4d36b7d772", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:06 GMT", + "Date": "Mon, 16 Nov 2020 19:18:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "123" + "x-envoy-upstream-service-time": "135" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -852,7 +852,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -884,7 +884,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -893,7 +893,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "72bebeb3ca051b787abd4f0c638bb11a", @@ -902,26 +902,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "890d5b7a-dd13-42da-b816-1e17e6a7180a", + "apim-request-id": "7f02f7b7-ddb8-4f2d-a949-215395b65e9d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:07 GMT", + "Date": "Mon, 16 Nov 2020 19:18:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "126" + "x-envoy-upstream-service-time": "162" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -930,7 +930,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -962,7 +962,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -971,7 +971,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "663a6d7584d496a0f86cbd7f05b0f176", @@ -980,26 +980,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f5193ea2-023f-4079-956b-edc5c110fe3b", + "apim-request-id": "ba927df8-3890-4e45-be91-ec628432bc3a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:09 GMT", + "Date": "Mon, 16 Nov 2020 19:18:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "140" + "x-envoy-upstream-service-time": "138" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -1008,7 +1008,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -1040,7 +1040,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1049,7 +1049,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "37708b5432d4826a8ab0ed0e7ad91c2e", @@ -1058,26 +1058,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2400f333-076a-448f-951d-8ac67267b281", + "apim-request-id": "5e3b8d5e-5f25-4571-beab-c37924cbc326", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:10 GMT", + "Date": "Mon, 16 Nov 2020 19:18:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "135" + "x-envoy-upstream-service-time": "146" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -1086,7 +1086,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -1118,7 +1118,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1127,7 +1127,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "03324666b90d2e661e2879980cf815c9", @@ -1136,26 +1136,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e796f12d-da2c-4a5a-a34d-318ab158494b", + "apim-request-id": "f46b9e56-24bb-4936-a211-269b4262741d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:11 GMT", + "Date": "Mon, 16 Nov 2020 19:18:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "117" + "x-envoy-upstream-service-time": "146" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -1164,7 +1164,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -1196,7 +1196,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1205,7 +1205,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d8b8d8cb791a424603b7db2397911b1e", @@ -1214,26 +1214,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "50857bb1-040b-4471-aed1-319d7eb8c40b", + "apim-request-id": "feca8874-a2e0-4edc-b7b5-d90384a4cd86", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:13 GMT", + "Date": "Mon, 16 Nov 2020 19:18:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "119" + "x-envoy-upstream-service-time": "139" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -1242,7 +1242,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -1274,7 +1274,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1283,7 +1283,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bf198f4fee7e9a69244218abb8d27691", @@ -1292,26 +1292,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5c516d2c-4066-48ac-a949-8478f63ce738", + "apim-request-id": "b7173f28-74c1-4fa1-9b3b-fabf33f8d2c0", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:14 GMT", + "Date": "Mon, 16 Nov 2020 19:18:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "133" + "x-envoy-upstream-service-time": "158" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -1320,7 +1320,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -1352,7 +1352,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1361,7 +1361,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a142239a4421ec13ffef0055dd42968c", @@ -1370,9 +1370,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "80dd54f7-a495-4e11-b21b-42695e9d74c0", + "apim-request-id": "2048f5b8-a4f8-4ddd-8f52-d6f30990bc81", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:15 GMT", + "Date": "Mon, 16 Nov 2020 19:18:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -1380,16 +1380,16 @@ }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -1398,7 +1398,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -1430,7 +1430,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1439,7 +1439,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7d485b0c56dfdd4b6f1db3d8609a8a30", @@ -1448,26 +1448,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2152d607-bf95-4810-9688-77654737a140", + "apim-request-id": "5d13295a-bdb4-4ec2-bce6-6f8f12246d9f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:16 GMT", + "Date": "Mon, 16 Nov 2020 19:18:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "161" + "x-envoy-upstream-service-time": "151" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -1476,7 +1476,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -1508,7 +1508,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1517,7 +1517,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "74894a41794e0bfd7b2cbf8eee13bde2", @@ -1526,26 +1526,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0a13a4c1-0185-4c4e-8250-205ad52d2ad3", + "apim-request-id": "31d92f00-1463-45b1-8b59-849b859e7295", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:18 GMT", + "Date": "Mon, 16 Nov 2020 19:18:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "163" + "x-envoy-upstream-service-time": "176" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -1554,7 +1554,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -1586,7 +1586,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1595,7 +1595,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5d9f8babf88943b1d7653203903a8c64", @@ -1604,26 +1604,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "743bf462-35cf-43b6-b244-0ced3eb7d1ed", + "apim-request-id": "74dc8f91-0602-470a-9ad1-e618218fb60a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:19 GMT", + "Date": "Mon, 16 Nov 2020 19:18:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "163" + "x-envoy-upstream-service-time": "172" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -1632,7 +1632,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -1664,7 +1664,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1673,7 +1673,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9214cf6522b9923d5e3d01b297bdee5b", @@ -1682,26 +1682,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4d8224a4-ac0a-4445-a185-7bcbc0408c6c", + "apim-request-id": "352c6bbb-8718-4ee3-aa58-c5f3704e44fc", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:20 GMT", + "Date": "Mon, 16 Nov 2020 19:18:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "144" + "x-envoy-upstream-service-time": "154" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -1710,7 +1710,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -1742,7 +1742,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1751,7 +1751,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d42dd15f2cfb48a798459ce947f97a40", @@ -1760,26 +1760,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6449db66-3a12-418a-a234-5173e76c2aea", + "apim-request-id": "d5cfa6dd-73d1-43e5-99d9-5ba7ce8cfa55", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:22 GMT", + "Date": "Mon, 16 Nov 2020 19:18:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "122" + "x-envoy-upstream-service-time": "125" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -1788,7 +1788,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -1820,7 +1820,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1829,7 +1829,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1e285aa02aff88284d0cff4cf7feac1a", @@ -1838,26 +1838,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "46fcd1be-fc40-435d-9979-1e9a35697493", + "apim-request-id": "304bbb45-ecef-4223-b77e-7ce54f15c791", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:24 GMT", + "Date": "Mon, 16 Nov 2020 19:18:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "144" + "x-envoy-upstream-service-time": "129" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -1866,7 +1866,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -1898,7 +1898,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1907,7 +1907,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bfa4d676b70d386928cbf97385544b64", @@ -1916,26 +1916,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6ecd1a76-c62c-4ee5-90bb-7201bf4f14ee", + "apim-request-id": "0e5f865c-2e7d-4f48-a131-732ad44af844", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:25 GMT", + "Date": "Mon, 16 Nov 2020 19:18:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "147" + "x-envoy-upstream-service-time": "167" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -1944,7 +1944,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -1976,7 +1976,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1985,7 +1985,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3c12c0c2d094355ba8a586ee2d5b5199", @@ -1994,26 +1994,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "923510b8-92f2-4ad4-b975-2d051c30dff6", + "apim-request-id": "1969b934-98db-4680-9fd9-f0f116099694", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:26 GMT", + "Date": "Mon, 16 Nov 2020 19:18:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "156" + "x-envoy-upstream-service-time": "154" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -2022,7 +2022,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -2054,7 +2054,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2063,7 +2063,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "70728299bb55e933f1f0f63430b502f9", @@ -2072,26 +2072,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4b7c0b47-6a90-4213-bdfe-81a8455f85e0", + "apim-request-id": "126b420d-6227-4249-a73f-a5944c6abb02", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:27 GMT", + "Date": "Mon, 16 Nov 2020 19:18:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "121" + "x-envoy-upstream-service-time": "142" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -2100,7 +2100,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -2132,7 +2132,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2141,7 +2141,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "36899ac16feca6857a6e1668307a0acd", @@ -2150,26 +2150,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2fe05da6-fbf1-436b-84c1-598e7f3dd3be", + "apim-request-id": "a76d31f4-e9a2-4b5b-ada9-8ac86ea48e67", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:29 GMT", + "Date": "Mon, 16 Nov 2020 19:18:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "128" + "x-envoy-upstream-service-time": "173" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -2178,7 +2178,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -2210,7 +2210,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2219,7 +2219,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "03da6079dae2070f8d294ba4d92704f3", @@ -2228,26 +2228,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5dbe07f6-941f-4155-949e-905d774af978", + "apim-request-id": "38865031-b4fa-4f8d-8f40-88a81d7e407b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:30 GMT", + "Date": "Mon, 16 Nov 2020 19:18:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "145" + "x-envoy-upstream-service-time": "171" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -2256,7 +2256,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -2288,7 +2288,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2297,7 +2297,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "932d8da21ad129adfccbf6e6a4cbb876", @@ -2306,26 +2306,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e7c1feaa-0423-48b0-882c-ef398234c3ee", + "apim-request-id": "8aec0df3-9482-476f-8861-a2fcdf797057", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:31 GMT", + "Date": "Mon, 16 Nov 2020 19:18:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "152" + "x-envoy-upstream-service-time": "156" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -2334,7 +2334,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -2366,7 +2366,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2375,7 +2375,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d0ba29e5ffdbe7168a81a9c323e1cd53", @@ -2384,26 +2384,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "034d13f8-afb8-4d80-a9e1-7c5819dddef8", + "apim-request-id": "1b03671f-f212-4ad0-af52-4c3a0a2dfb20", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:32 GMT", + "Date": "Mon, 16 Nov 2020 19:18:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "149" + "x-envoy-upstream-service-time": "136" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -2412,7 +2412,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -2444,7 +2444,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2453,7 +2453,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a2c6236a774d5efbb2b00617e32962c2", @@ -2462,26 +2462,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "95908b47-db96-435a-88b8-7fa6b507e965", + "apim-request-id": "99f80171-279b-4c8a-b7f1-dea59f8e5d7e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:34 GMT", + "Date": "Mon, 16 Nov 2020 19:18:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "157" + "x-envoy-upstream-service-time": "403" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -2490,7 +2490,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -2522,7 +2522,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2531,7 +2531,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b0bed470336ca2177745095071e9061a", @@ -2540,26 +2540,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1c4935e5-130b-4ae9-b7fe-2aad4e1a8639", + "apim-request-id": "e90266c8-ec64-44ae-b6a3-c47a41a56134", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:35 GMT", + "Date": "Mon, 16 Nov 2020 19:18:39 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "136" + "x-envoy-upstream-service-time": "148" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -2568,7 +2568,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -2600,7 +2600,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2609,7 +2609,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "817ba2fe16046e292d5c1d2bf8fe0360", @@ -2618,26 +2618,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "30371437-2c24-48cd-bfd0-0cd127fc3c87", + "apim-request-id": "1bdea0e5-1a28-4f83-85b5-e37c8d1da593", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:37 GMT", + "Date": "Mon, 16 Nov 2020 19:18:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "127" + "x-envoy-upstream-service-time": "205" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -2646,7 +2646,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -2678,7 +2678,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2687,7 +2687,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4f53e71e1c2336e70b232b076dabedc9", @@ -2696,26 +2696,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aee9e5ba-9e54-4594-9826-72f714b30ba9", + "apim-request-id": "4e7c4496-27c5-4d95-8002-bbe15f595f2b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:38 GMT", + "Date": "Mon, 16 Nov 2020 19:18:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "138" + "x-envoy-upstream-service-time": "148" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -2724,7 +2724,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -2756,7 +2756,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2765,7 +2765,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4119ebaae1ad59bdaa50821016eca978", @@ -2774,26 +2774,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "46825d65-89aa-4614-beb3-047f6b26c78e", + "apim-request-id": "c593039c-f70b-4549-9754-4b5af40f3a48", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:39 GMT", + "Date": "Mon, 16 Nov 2020 19:18:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "125" + "x-envoy-upstream-service-time": "160" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -2802,7 +2802,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -2834,7 +2834,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2843,7 +2843,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8a31a842b696e1f7bb4575e1eb220082", @@ -2852,26 +2852,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "28ee54ca-939a-4e05-8824-506816205de6", + "apim-request-id": "822f7ab9-7d8a-419e-9c51-1a812364fefe", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:41 GMT", + "Date": "Mon, 16 Nov 2020 19:18:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "153" + "x-envoy-upstream-service-time": "157" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -2880,7 +2880,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -2912,7 +2912,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2921,7 +2921,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0c81546ec2e53db229f9a4d29ad61f1f", @@ -2930,26 +2930,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1f81c6ad-9960-4323-a40b-843dc6e0e988", + "apim-request-id": "f9e4f350-f576-4e1d-aec7-d6befccc776f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:42 GMT", + "Date": "Mon, 16 Nov 2020 19:18:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "128" + "x-envoy-upstream-service-time": "172" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -2958,7 +2958,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -2990,7 +2990,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -2999,7 +2999,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c4c4b2796279f332f43885686cdb6e88", @@ -3008,26 +3008,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e07b707f-4167-4e95-ad88-f3b4fb003a3b", + "apim-request-id": "9266466a-5b78-4c95-b7be-92b7e74f0a81", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:43 GMT", + "Date": "Mon, 16 Nov 2020 19:18:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "164" + "x-envoy-upstream-service-time": "173" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -3036,7 +3036,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -3068,7 +3068,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3077,7 +3077,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c2a1004f9c6a8093f6f4609d122446e5", @@ -3086,26 +3086,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2e0152d7-49ce-49ea-af89-a5a9e141b3ed", + "apim-request-id": "fc54bafb-cdf2-42b3-bff0-66856e7f4ca4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:45 GMT", + "Date": "Mon, 16 Nov 2020 19:18:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "124" + "x-envoy-upstream-service-time": "167" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -3114,7 +3114,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -3146,7 +3146,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3155,7 +3155,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "386755253c5e0c08218d18ad3c4ad04d", @@ -3164,26 +3164,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "16052050-6da8-4127-b132-95e656560af0", + "apim-request-id": "3304a440-9e31-4d07-87b2-a4617f467518", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:46 GMT", + "Date": "Mon, 16 Nov 2020 19:18:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "151" + "x-envoy-upstream-service-time": "129" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -3192,7 +3192,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -3224,7 +3224,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3233,7 +3233,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9a831c8a5d35dcb41f44ce850195e1cf", @@ -3242,26 +3242,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "705f6b1e-5d77-4d85-a43b-6861e6cbbe8b", + "apim-request-id": "65082475-3da4-4ece-a69c-39277df16f6e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:47 GMT", + "Date": "Mon, 16 Nov 2020 19:18:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "142" + "x-envoy-upstream-service-time": "178" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -3270,7 +3270,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -3302,7 +3302,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3311,7 +3311,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1642a0f13674122af795a0dc84e643ab", @@ -3320,26 +3320,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5644cf96-26fa-4233-8a9c-f521104924bf", + "apim-request-id": "232d4ea3-f464-41bd-b671-4e496ef796fe", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:49 GMT", + "Date": "Mon, 16 Nov 2020 19:18:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "166" + "x-envoy-upstream-service-time": "131" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -3348,7 +3348,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -3380,7 +3380,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3389,7 +3389,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f5121223aca1c7b0a08b19196e820a8b", @@ -3398,26 +3398,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "54597260-f182-4755-a347-b8b5b51fcd7e", + "apim-request-id": "0e0d4c9e-23e4-4c29-8f78-a4758692a236", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:50 GMT", + "Date": "Mon, 16 Nov 2020 19:18:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "166" + "x-envoy-upstream-service-time": "149" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -3426,7 +3426,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -3458,7 +3458,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3467,7 +3467,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9cbb49acba0854d9f270a29fbdd75839", @@ -3476,26 +3476,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "53ad6d03-73d2-49df-a1ef-8e05328d7084", + "apim-request-id": "d71bb6c5-1468-4f8c-9435-840206f6975c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:51 GMT", + "Date": "Mon, 16 Nov 2020 19:18:55 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "132" + "x-envoy-upstream-service-time": "148" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -3504,7 +3504,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -3536,7 +3536,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3545,7 +3545,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ef622300eb83442df07a75e81c10a474", @@ -3554,26 +3554,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "25da48c5-1257-42b4-8288-619e088c64c6", + "apim-request-id": "f0b96947-13c6-46b9-981b-c675f8cdd2dc", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:53 GMT", + "Date": "Mon, 16 Nov 2020 19:18:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "136" + "x-envoy-upstream-service-time": "148" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -3582,7 +3582,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -3614,7 +3614,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3623,7 +3623,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3a30148ba62a69a239bd03310a100ac9", @@ -3632,26 +3632,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4209dcc4-21f9-4943-98fa-34394f4b2251", + "apim-request-id": "053712da-7624-49ee-93a3-0ab61045ae68", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:54 GMT", + "Date": "Mon, 16 Nov 2020 19:18:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "132" + "x-envoy-upstream-service-time": "128" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -3660,7 +3660,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -3692,7 +3692,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3701,7 +3701,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4b19e0321b20c0081b77ac8d44f038e2", @@ -3710,26 +3710,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c735a17f-4386-4797-9134-efbeed4c1f4c", + "apim-request-id": "88c5184e-9965-4012-84bf-a40b7b81a5cb", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:55 GMT", + "Date": "Mon, 16 Nov 2020 19:18:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "148" + "x-envoy-upstream-service-time": "174" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -3738,7 +3738,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -3770,7 +3770,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3779,7 +3779,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a8142ecc1da7590f80f8b5c5e8fc3adf", @@ -3788,26 +3788,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f3833091-1187-4aa4-9542-f782b12e9f72", + "apim-request-id": "b66bc19c-9e17-44c2-8605-1ba8071339f4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:57 GMT", + "Date": "Mon, 16 Nov 2020 19:19:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "173" + "x-envoy-upstream-service-time": "153" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -3816,7 +3816,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -3848,7 +3848,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3857,7 +3857,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3cb6ac7059f770540b6f1eb2fa152548", @@ -3866,26 +3866,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b95550aa-4e81-4991-ae8c-2dc98027b6e6", + "apim-request-id": "e8c46f70-005b-42e3-807c-46d4d2f3b429", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:58 GMT", + "Date": "Mon, 16 Nov 2020 19:19:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "149" + "x-envoy-upstream-service-time": "130" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -3894,7 +3894,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -3926,7 +3926,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -3935,7 +3935,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "db64218561fc1421d1bfca276543d81f", @@ -3944,26 +3944,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "15880705-a5d8-4fc8-ba01-9575b3eeed30", + "apim-request-id": "42de176b-bf4a-4c23-958e-60a9e9b46514", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:23:59 GMT", + "Date": "Mon, 16 Nov 2020 19:19:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "156" + "x-envoy-upstream-service-time": "356" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 1, "failed": 0, @@ -3972,7 +3972,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -4004,7 +4004,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4013,7 +4013,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "971dcc3dfb3a72ebd9a39c37ff5c5f6b", @@ -4022,26 +4022,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4b9e8574-9fd9-4a93-8f2f-b5264c77151d", + "apim-request-id": "a3f70398-0243-443d-bda9-958981b0c8aa", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:00 GMT", + "Date": "Mon, 16 Nov 2020 19:19:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "171" + "x-envoy-upstream-service-time": "219" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -4050,7 +4050,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -4119,7 +4119,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -4151,7 +4151,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4160,7 +4160,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c73f6dd35e970fe38ba16a378e2c0bc8", @@ -4169,26 +4169,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "899af6db-889b-45b1-bea3-050ff34ae897", + "apim-request-id": "9346d050-840e-493e-9033-6a0fcfee9a58", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:01 GMT", + "Date": "Mon, 16 Nov 2020 19:19:06 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "185" + "x-envoy-upstream-service-time": "233" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -4197,7 +4197,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -4266,7 +4266,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -4298,7 +4298,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4307,7 +4307,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2d75ff978df78a0e36f20158c4e91574", @@ -4316,26 +4316,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9bab0c91-088c-463a-9d59-4ebf5004ced1", + "apim-request-id": "e9174988-4e68-45ab-b98c-7d91d2464ca9", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:03 GMT", + "Date": "Mon, 16 Nov 2020 19:19:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "177" + "x-envoy-upstream-service-time": "241" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -4344,7 +4344,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -4413,7 +4413,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -4445,7 +4445,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4454,7 +4454,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f8535f601104de87e90e0c9890b3e4ad", @@ -4463,26 +4463,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1e09203e-f2f2-49df-aa5d-40dda3b29774", + "apim-request-id": "683cbdb7-d4c4-43fb-acf3-eb6e3b3b9dab", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:05 GMT", + "Date": "Mon, 16 Nov 2020 19:19:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "212" + "x-envoy-upstream-service-time": "228" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -4491,7 +4491,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -4560,7 +4560,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -4592,7 +4592,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4601,7 +4601,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ffa0d49831e646735fb591a55c8a4aa1", @@ -4610,26 +4610,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cb8f151d-4feb-408c-a12a-e62265dd7e2e", + "apim-request-id": "a74b52db-ad3b-4b95-90b2-c083656fc4e4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:06 GMT", + "Date": "Mon, 16 Nov 2020 19:19:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "201" + "x-envoy-upstream-service-time": "212" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -4638,7 +4638,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -4707,7 +4707,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -4739,7 +4739,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4748,7 +4748,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2fd7f68c13d986c4779743e98175f982", @@ -4757,26 +4757,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dc5fde9d-09c1-465f-9279-56e42413256e", + "apim-request-id": "157e7264-9bb4-4206-ac7d-2ebf469f6376", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:07 GMT", + "Date": "Mon, 16 Nov 2020 19:19:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "169" + "x-envoy-upstream-service-time": "198" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -4785,7 +4785,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -4854,7 +4854,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -4886,7 +4886,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -4895,7 +4895,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "efc0540e15492e8eec0d984f7fe2815f", @@ -4904,26 +4904,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "984b8f91-06e5-45f2-a990-6b747126e17e", + "apim-request-id": "dc0b9dd0-d168-420a-b46d-878ae7dd94d2", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:09 GMT", + "Date": "Mon, 16 Nov 2020 19:19:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "178" + "x-envoy-upstream-service-time": "227" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -4932,7 +4932,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -5001,7 +5001,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -5033,7 +5033,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -5042,7 +5042,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9a0c6ac3b4dc85d4101a884fed89c4e9", @@ -5051,26 +5051,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a5f8671d-9419-442d-b461-2cdd7dcfeedb", + "apim-request-id": "e7e8d0b5-1e9d-4ff9-9ce5-c3d06d5b82f3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:10 GMT", + "Date": "Mon, 16 Nov 2020 19:19:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "167" + "x-envoy-upstream-service-time": "223" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -5079,7 +5079,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -5148,7 +5148,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -5180,7 +5180,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -5189,7 +5189,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "08960ebb5bc9765867a843cb7a750695", @@ -5198,26 +5198,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9a708001-7274-4c67-9116-3a6ff63c8b8f", + "apim-request-id": "c20fea60-79cd-4aa8-a767-124fcce5fd68", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:11 GMT", + "Date": "Mon, 16 Nov 2020 19:19:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "224" + "x-envoy-upstream-service-time": "231" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -5226,7 +5226,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -5295,7 +5295,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -5327,7 +5327,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -5336,7 +5336,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1626e4155e6959a6803bdf2e8d3e4162", @@ -5345,26 +5345,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "394be47e-5dd2-459e-b02b-7fdde1127308", + "apim-request-id": "1f6d5715-fe2c-4dbb-bf7e-95d92bf24614", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:13 GMT", + "Date": "Mon, 16 Nov 2020 19:19:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "253" + "x-envoy-upstream-service-time": "191" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -5373,7 +5373,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -5442,7 +5442,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -5474,7 +5474,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -5483,7 +5483,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7193af48794b67961295323371080b9b", @@ -5492,26 +5492,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "edd19e27-a92d-4a8c-b24c-ddb9051299a9", + "apim-request-id": "eebf1afe-fc5f-4ba1-b8c4-462011af5e3b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:14 GMT", + "Date": "Mon, 16 Nov 2020 19:19:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "190" + "x-envoy-upstream-service-time": "178" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -5520,7 +5520,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -5589,7 +5589,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -5621,7 +5621,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -5630,7 +5630,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0939f213ad635c80683d878e7b29e928", @@ -5639,26 +5639,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "36b570e2-0f05-4c54-ba6c-4edc567bc104", + "apim-request-id": "6446f6bb-03ae-44f7-a3c3-e9848854968b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:15 GMT", + "Date": "Mon, 16 Nov 2020 19:19:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "200" + "x-envoy-upstream-service-time": "210" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -5667,7 +5667,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -5736,7 +5736,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -5768,7 +5768,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -5777,7 +5777,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ca82e06795e19b4a4ebe04d32b72e777", @@ -5786,26 +5786,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "642a804e-fed5-4a2a-8d8a-093dcdb16366", + "apim-request-id": "8043ac4f-7f0d-4f72-a48f-7911d2587c3f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:17 GMT", + "Date": "Mon, 16 Nov 2020 19:19:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "168" + "x-envoy-upstream-service-time": "221" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -5814,7 +5814,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -5883,7 +5883,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -5915,7 +5915,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -5924,7 +5924,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9a1a443037049bff2e36080df107ece8", @@ -5933,26 +5933,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a539ccbd-f74b-4fdc-8b82-fda3362746d6", + "apim-request-id": "b714f859-4c83-4e98-b9a9-7d0e98c6ee77", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:18 GMT", + "Date": "Mon, 16 Nov 2020 19:19:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "184" + "x-envoy-upstream-service-time": "207" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -5961,7 +5961,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -6030,7 +6030,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -6062,7 +6062,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -6071,7 +6071,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "91cc09ab40867eb9a89ebba4a8ac30f5", @@ -6080,26 +6080,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5584b4b2-b826-4dac-a96d-f9184054bd24", + "apim-request-id": "7b17efd7-e9b0-46b1-b53c-3b43ff0b714d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:20 GMT", + "Date": "Mon, 16 Nov 2020 19:19:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "205" + "x-envoy-upstream-service-time": "165" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -6108,7 +6108,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -6177,7 +6177,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -6209,7 +6209,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -6218,7 +6218,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "375e10564e0f2f24e1e79caa8c3ca946", @@ -6227,26 +6227,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "235f9a5f-76b9-4400-a6b5-d0491f587649", + "apim-request-id": "2de99b83-73c3-4fce-9055-5d64a07434ad", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:21 GMT", + "Date": "Mon, 16 Nov 2020 19:19:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "235" + "x-envoy-upstream-service-time": "228" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -6255,7 +6255,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -6324,7 +6324,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -6356,7 +6356,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -6365,7 +6365,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "21281cd256a6eff18a9cf2667c5af282", @@ -6374,26 +6374,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3f9e35e3-09d5-45cc-86bc-cafe08a38c7f", + "apim-request-id": "b72a15a1-f177-46e0-8653-f5dd2bf521f6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:23 GMT", + "Date": "Mon, 16 Nov 2020 19:19:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "209" + "x-envoy-upstream-service-time": "183" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -6402,7 +6402,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -6471,7 +6471,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -6503,7 +6503,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -6512,7 +6512,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e1b71306b4a95cd9e59caf9ea30ff26c", @@ -6521,26 +6521,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1f141bb7-073b-4862-9c62-6be1c41c5aaf", + "apim-request-id": "02d8b76b-a474-4586-a922-42caabbd49e2", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:24 GMT", + "Date": "Mon, 16 Nov 2020 19:19:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "158" + "x-envoy-upstream-service-time": "190" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -6549,7 +6549,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -6618,7 +6618,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -6650,7 +6650,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -6659,7 +6659,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8bd274f40e84ff4f1e6ead735cbdb387", @@ -6668,26 +6668,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "678d6d27-59fc-4f5b-9186-3091cbb77d49", + "apim-request-id": "07224256-b65d-4f3b-a087-13b5cdd76940", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:25 GMT", + "Date": "Mon, 16 Nov 2020 19:19:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "160" + "x-envoy-upstream-service-time": "223" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -6696,7 +6696,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -6765,7 +6765,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -6797,7 +6797,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -6806,7 +6806,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "79a419f4c8841d9c43cb3c0aa7524c7a", @@ -6815,26 +6815,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0adb2a48-42b7-473d-9823-034a6443fdc5", + "apim-request-id": "e2753079-0334-454b-a92a-c8bf7d2817ef", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:27 GMT", + "Date": "Mon, 16 Nov 2020 19:19:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "170" + "x-envoy-upstream-service-time": "167" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -6843,7 +6843,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -6912,7 +6912,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -6944,7 +6944,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -6953,7 +6953,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "077285a96688f7fec4b7c23b07660028", @@ -6962,26 +6962,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4fda38d9-78ec-4887-8bca-049f4e09f4c1", + "apim-request-id": "0765b6f5-8cd8-41d6-937a-33ada187500f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:28 GMT", + "Date": "Mon, 16 Nov 2020 19:19:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "220" + "x-envoy-upstream-service-time": "179" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -6990,7 +6990,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -7059,7 +7059,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -7091,7 +7091,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -7100,7 +7100,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8aaa27e8796b2ce7d8b448b8d24458cc", @@ -7109,26 +7109,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "31cf4284-ed5f-42b3-bc77-33938ad349fe", + "apim-request-id": "779e90f1-f8fe-41c8-9aa4-b23000efd724", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:29 GMT", + "Date": "Mon, 16 Nov 2020 19:19:33 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "190" + "x-envoy-upstream-service-time": "185" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -7137,7 +7137,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -7206,7 +7206,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -7238,7 +7238,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -7247,7 +7247,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d6c93222ab4b8dfe1badb4cc056116dd", @@ -7256,26 +7256,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9ccdd859-8d1a-4258-a268-e0e46171f18b", + "apim-request-id": "58026f19-e050-4726-8a04-d076fe339a71", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:31 GMT", + "Date": "Mon, 16 Nov 2020 19:19:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "219" + "x-envoy-upstream-service-time": "231" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -7284,7 +7284,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -7353,7 +7353,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -7385,7 +7385,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -7394,7 +7394,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7f2113cbc1a7300f9e462fd41e45247f", @@ -7403,26 +7403,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "61e34f49-537d-423f-9a8a-2f9ebc0f7a57", + "apim-request-id": "37603b74-4003-4bd2-966f-c77ed05f71f4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:32 GMT", + "Date": "Mon, 16 Nov 2020 19:19:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "196" + "x-envoy-upstream-service-time": "181" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -7431,7 +7431,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -7500,7 +7500,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -7532,7 +7532,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -7541,7 +7541,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d419f65f299c3ddd281c6ebec41a2777", @@ -7550,26 +7550,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "50f89760-cba2-4148-a876-e1530430de67", + "apim-request-id": "b1b84df9-9834-418d-81fc-359b541526d1", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:34 GMT", + "Date": "Mon, 16 Nov 2020 19:19:37 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "164" + "x-envoy-upstream-service-time": "204" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -7578,7 +7578,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -7647,7 +7647,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -7679,7 +7679,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -7688,7 +7688,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bfed6a9dd8236024239838057c2a6fd6", @@ -7697,26 +7697,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2d476be5-ce90-41e5-92d7-8f1c4f9808b8", + "apim-request-id": "2b7a3400-4cf7-4544-9ae1-f667fc01131c", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:35 GMT", + "Date": "Mon, 16 Nov 2020 19:19:38 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "190" + "x-envoy-upstream-service-time": "224" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -7725,7 +7725,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -7794,7 +7794,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -7826,7 +7826,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -7835,7 +7835,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0e6d35884247a14036e4568b53516c83", @@ -7844,26 +7844,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "602305b2-6d57-43ae-b5f7-2a19353051a8", + "apim-request-id": "d03bc0b5-7084-44a7-9f05-e9a144d2b881", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:36 GMT", + "Date": "Mon, 16 Nov 2020 19:19:40 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "202" + "x-envoy-upstream-service-time": "162" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -7872,7 +7872,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -7941,7 +7941,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -7973,7 +7973,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -7982,7 +7982,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b337b81f6557865cd2b9b104f0d8c1fe", @@ -7991,26 +7991,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "44429d8a-e29f-44b5-bc5d-68f3335d13c3", + "apim-request-id": "d9d79b62-d1ec-43d5-b6d4-f9c043142e09", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:38 GMT", + "Date": "Mon, 16 Nov 2020 19:19:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "196" + "x-envoy-upstream-service-time": "201" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -8019,7 +8019,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -8088,7 +8088,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -8120,7 +8120,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -8129,7 +8129,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8e3597ad18ad5a2f294c893e82980cd1", @@ -8138,26 +8138,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ddb3bbe7-09cd-4d81-8771-043f84aeea44", + "apim-request-id": "643aa607-0718-4d9c-b78a-fbebcf3791e1", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:39 GMT", + "Date": "Mon, 16 Nov 2020 19:19:43 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "236" + "x-envoy-upstream-service-time": "264" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -8166,7 +8166,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -8235,7 +8235,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -8267,7 +8267,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -8276,7 +8276,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c4e6b42cbbf3237fd9e63c8e903cb05d", @@ -8285,26 +8285,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cef740ab-3bc4-4bec-b550-0e2a8dc0d163", + "apim-request-id": "992b73f9-5c88-4722-89ec-ab995bcd97f6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:40 GMT", + "Date": "Mon, 16 Nov 2020 19:19:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "180" + "x-envoy-upstream-service-time": "214" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -8313,7 +8313,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -8382,7 +8382,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -8414,7 +8414,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -8423,7 +8423,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bbde5823dd1b06d688dc8a0adc1d0439", @@ -8432,26 +8432,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "445b23bf-ecd7-4ce4-9cc7-55cb09e1670a", + "apim-request-id": "57ced6e6-89c5-4b74-bf65-b49420a9bf0a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:42 GMT", + "Date": "Mon, 16 Nov 2020 19:19:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "192" + "x-envoy-upstream-service-time": "226" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -8460,7 +8460,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -8529,7 +8529,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -8561,7 +8561,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -8570,7 +8570,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3bd8dfacfcf2f10b1812b5c6dba1caed", @@ -8579,26 +8579,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "72dec6da-dcec-4cfe-80bc-c95c6fa9c335", + "apim-request-id": "8ce72fe9-0c6c-4ece-ad1c-2529133c7622", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:43 GMT", + "Date": "Mon, 16 Nov 2020 19:19:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "215" + "x-envoy-upstream-service-time": "210" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -8607,7 +8607,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -8676,7 +8676,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -8708,7 +8708,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -8717,7 +8717,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "291b2b9b50ba4eb5dedf3b17317446bb", @@ -8726,26 +8726,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2cc2dbf2-03ed-40d6-b8f1-c0d685b44ca0", + "apim-request-id": "db30e91e-a0ac-4f95-8549-a0a07b68e74b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:44 GMT", + "Date": "Mon, 16 Nov 2020 19:19:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "170" + "x-envoy-upstream-service-time": "192" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -8754,7 +8754,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -8823,7 +8823,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -8855,7 +8855,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -8864,7 +8864,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b1e103e17564266b4deca309270f2ae7", @@ -8873,26 +8873,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2356aa1d-740c-4d9d-a570-acba26f66cf0", + "apim-request-id": "5f47fb42-4bb7-41fe-8de3-d7e88caa5746", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:46 GMT", + "Date": "Mon, 16 Nov 2020 19:19:50 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "193" + "x-envoy-upstream-service-time": "250" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -8901,7 +8901,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -8970,7 +8970,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -9002,7 +9002,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -9011,7 +9011,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b16f9d12da015b7e29895d12c1f3c0a4", @@ -9020,26 +9020,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "94861dc7-ea36-4827-b190-98de2b0c492e", + "apim-request-id": "38c68435-3228-4de0-b0ce-3d5f675aaf6a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:47 GMT", + "Date": "Mon, 16 Nov 2020 19:19:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "216" + "x-envoy-upstream-service-time": "181" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -9048,7 +9048,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -9117,7 +9117,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -9149,7 +9149,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -9158,7 +9158,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d8e5facb19bf2688bff5dccdadac26cf", @@ -9167,26 +9167,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2d525e10-6844-4a60-b359-ab539d291988", + "apim-request-id": "c183ba79-aacf-47de-a7fb-c7b0af4caf29", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:49 GMT", + "Date": "Mon, 16 Nov 2020 19:19:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "181" + "x-envoy-upstream-service-time": "244" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -9195,7 +9195,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -9264,7 +9264,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -9296,7 +9296,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -9305,7 +9305,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "940554b4950407ba848587da18586459", @@ -9314,26 +9314,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3a652f3c-fc3a-4081-bfdf-82a682f84540", + "apim-request-id": "b2fe7bbf-52b3-4e3b-a556-38c418cca366", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:50 GMT", + "Date": "Mon, 16 Nov 2020 19:19:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "199" + "x-envoy-upstream-service-time": "239" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -9342,7 +9342,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -9411,7 +9411,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -9443,7 +9443,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -9452,7 +9452,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2d3dff2c522af8271449f10bfeb0ad7d", @@ -9461,26 +9461,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3e36221d-b9a8-4d6a-acd6-4a9b302cfbe6", + "apim-request-id": "51f46472-e351-40dd-8329-39ad58fb7670", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:51 GMT", + "Date": "Mon, 16 Nov 2020 19:19:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "189" + "x-envoy-upstream-service-time": "192" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -9489,7 +9489,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -9558,7 +9558,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -9590,7 +9590,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -9599,7 +9599,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6c5e8d622cee359f40dd533991ad0e66", @@ -9608,26 +9608,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3b294bfa-69cd-4bc1-83d2-b3f503429ef6", + "apim-request-id": "5793af46-9705-4036-9374-dd3ee15a863a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:53 GMT", + "Date": "Mon, 16 Nov 2020 19:19:57 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "220" + "x-envoy-upstream-service-time": "229" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -9636,7 +9636,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -9705,7 +9705,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -9737,7 +9737,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -9746,7 +9746,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "aea18390f96e61a52c0c7fbba3ae08d4", @@ -9755,26 +9755,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "09622ab8-9ea2-4034-90d2-b8a9925004f1", + "apim-request-id": "6609b60e-d499-4c40-8dd5-f53f769f58d4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:54 GMT", + "Date": "Mon, 16 Nov 2020 19:19:59 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "195" + "x-envoy-upstream-service-time": "213" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -9783,7 +9783,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -9852,7 +9852,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -9884,7 +9884,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -9893,7 +9893,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8a7809d7f8fa006a5f07ed4cffed6766", @@ -9902,26 +9902,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a369b878-6037-4d63-80cc-54ee2cfbe6b1", + "apim-request-id": "173e3bf8-f535-4d7a-9954-8f8a67685c21", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:56 GMT", + "Date": "Mon, 16 Nov 2020 19:20:00 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "214" + "x-envoy-upstream-service-time": "221" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -9930,7 +9930,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -9999,7 +9999,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -10031,7 +10031,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -10040,7 +10040,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7b7b8b3bff0f690ee8fc3fe2ace49192", @@ -10049,9 +10049,9 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "69ec5a31-705f-402f-bbc2-d39dcc8715a5", + "apim-request-id": "177c159c-82de-44a7-8cf4-f74a1b6cdc52", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:57 GMT", + "Date": "Mon, 16 Nov 2020 19:20:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", @@ -10059,16 +10059,16 @@ }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -10077,7 +10077,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -10146,7 +10146,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -10178,7 +10178,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -10187,7 +10187,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "88617fd58335986b18a14f670c58623f", @@ -10196,26 +10196,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "821c8531-aa5f-4c34-bd6c-2da134d51e07", + "apim-request-id": "2cb85ad1-60d4-433e-8e67-cdacae19fcf2", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:24:58 GMT", + "Date": "Mon, 16 Nov 2020 19:20:03 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "164" + "x-envoy-upstream-service-time": "315" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "running", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 2, "failed": 0, @@ -10224,7 +10224,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -10293,7 +10293,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -10325,7 +10325,7 @@ } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/analyze/jobs/6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -10334,7 +10334,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "188018a58d32d8c5fb0ea1fdb887537b", @@ -10343,26 +10343,26 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5e51cccd-4381-4e2e-a78c-f9c6ee1805a8", + "apim-request-id": "7505c989-bfb6-4bb3-b5f0-5b1d5104adf7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:00 GMT", + "Date": "Mon, 16 Nov 2020 19:20:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "417" + "x-envoy-upstream-service-time": "295" }, "ResponseBody": { "displayName": "AnalyzeOperationWithMultipleTasks", - "jobId": "e9fb9e40-f370-415c-9329-c03e16e75b74_637408224000000000", - "lastUpdateDateTime": "2020-11-13T22:22:52Z", - "createdDateTime": "2020-11-13T22:22:52Z", - "expirationDateTime": "2020-11-14T22:22:52Z", + "jobId": "6b9ea243-f873-4b82-a53d-a9cff39dbb67_637410816000000000", + "lastUpdateDateTime": "2020-11-16T19:17:56Z", + "createdDateTime": "2020-11-16T19:17:54Z", + "expirationDateTime": "2020-11-17T19:17:54Z", "status": "succeeded", "errors": [], "tasks": { "details": { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52Z" + "lastUpdateDateTime": "2020-11-16T19:17:56Z" }, "completed": 3, "failed": 0, @@ -10371,7 +10371,7 @@ "entityRecognitionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -10440,7 +10440,7 @@ "entityRecognitionPiiTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ @@ -10489,7 +10489,7 @@ "keyPhraseExtractionTasks": [ { "name": "AnalyzeOperationWithMultipleTasks", - "lastUpdateDateTime": "2020-11-13T22:22:52.8552619Z", + "lastUpdateDateTime": "2020-11-16T19:17:56.716005Z", "results": { "inTerminalState": true, "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json index 8f97806a03eeb..feff64f834dca 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTest.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-88d10b4fd2612d4ca4bf3ab42da00cc0-53d94ab6f21e414b-00", + "traceparent": "00-4b35ab976735ba448e47700264936aeb-eb8bfe488ee03c46-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7fbb9dea32b8080ffdad856789b2330d", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ac5141b2-c6f9-41bb-a0be-d0b2da457c89", + "apim-request-id": "ec3a7958-e5b9-40e8-8916-8045a4c0594d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:00 GMT", + "Date": "Mon, 16 Nov 2020 19:20:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "169" + "x-envoy-upstream-service-time": "121" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json index 27beb671b3653..5026340edf74f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceFullTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-51727cfead8f2049bbb3b80df5bcc84d-89dc57cd487e7d44-00", + "traceparent": "00-054a042f5f26e84682eba05f0b9f59de-3227e0c3a0237b4b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9ce6282fe98018f1ea732ad3ecd9e59c", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8c4f2821-4b72-4fdb-9b65-855d05a5b982", + "apim-request-id": "2dbc7b79-a3f0-4e69-8263-56b0dcf4e6b5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:06 GMT", + "Date": "Mon, 16 Nov 2020 19:20:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "104" + "x-envoy-upstream-service-time": "111" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json index ae7edad3a69af..86ef1e47e7b60 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTest.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ad333a302a3d2148bc70ffe1dab2e408-fa6928e96aa89847-00", + "traceparent": "00-e182b71d4f481a4fbe29256df73d9ca3-2fb030810f77ae40-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "119c99db1e02c34777426e77d5c75cb6", @@ -35,10 +35,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6903f6a3-466b-41cb-bc35-29104a3b90d7", + "apim-request-id": "454338b8-1f9b-4430-9819-cc5754079410", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:00 GMT", + "Date": "Mon, 16 Nov 2020 19:20:04 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json index 89a1f4fab9363..152fd51674b66 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-15f2c7fb979a514cbee8896a9eac1c19-a219c13955520e49-00", + "traceparent": "00-fe5f6e526323ac49a5f0968e5cabe3b4-d46a1ff27144d54f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9d1067da67ede0f99771b2c8070f5079", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "13e23673-fc77-4c03-86c8-383eccd9f41f", + "apim-request-id": "1c7a849f-4513-4b29-ae5e-e7bbe2ca8427", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:06 GMT", + "Date": "Mon, 16 Nov 2020 19:20:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "112" + "x-envoy-upstream-service-time": "120" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json index c7d609a226e1f..bcf78d18772a2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTest.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-fd3adada90629b4caecde08c0721d797-f8380f264430c740-00", + "traceparent": "00-ebfb0a36f8ca124b9b250eed8b26a05b-84d7016c8b1f3346-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "86b79e2f0559eb97f25b1c5b233a68dd", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "800ca250-f8cb-4bb2-a0e4-46ff9f1f9c08", + "apim-request-id": "32413d37-ed44-4282-94f0-cc3485fc325d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:01 GMT", + "Date": "Mon, 16 Nov 2020 19:20:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "124" + "x-envoy-upstream-service-time": "113" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json index 94f43c8bf7f1c..261f7e324699f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithCancellationTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d6691e8f49c93546a7df3f1667f7acc8-0253827abd4d484c-00", + "traceparent": "00-2ecf4d4b9a96e643b0e1505b823b7c94-38a6e5007f3c304d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "300adb4a8ab9aa03c50b104c35b7e035", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ac0f4b3f-fdc7-4559-8d45-e068434d4da2", + "apim-request-id": "4622cb37-35b7-4da5-bd82-105706a0f147", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:07 GMT", + "Date": "Mon, 16 Nov 2020 19:20:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "108" + "x-envoy-upstream-service-time": "120" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json index 7028ff40f84a9..875a2d35edd73 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTest.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3c2aac8bf9007c449df4b6a49f9aa4b3-6edae053144f4447-00", + "traceparent": "00-b1e521b08755694c8659bbaec33b5c13-3f1338eddc132f4c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "abe848a0b41107615847f9d88e292402", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7f508a18-7290-4e18-8166-00a7dacb4950", + "apim-request-id": "20fbd860-235b-442b-92f1-dfaf7c3fcadf", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:01 GMT", + "Date": "Mon, 16 Nov 2020 19:20:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "111" + "x-envoy-upstream-service-time": "108" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json index 7c4d0ff55770c..e462b8c7fb249 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndCancellationTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d013e7208797a74a98439ab06a61c232-18069da1f660214a-00", + "traceparent": "00-0c509366a5721344a34f69befe91e489-d3099b347c28eb4b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e76a4622dec6c96d7ae12bfd307d2c70", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "27515298-325d-48f6-9b44-b1021cbe8eeb", + "apim-request-id": "96e4981b-f7e8-4fd6-ba44-7beb30c113d2", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:07 GMT", + "Date": "Mon, 16 Nov 2020 19:20:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "121" + "x-envoy-upstream-service-time": "103" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json index bc6695ca2ac4a..ddbc06e11b2ac 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c470382c3c9c8049a82e72ce2d288beb-32bbc59af414de42-00", + "traceparent": "00-a02a8a67d334824b8d3709f3f84866c1-7554564c712d5c4f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ddaaf35e96b9dae8e520d1e25db41ef1", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "291b3709-7d90-4f29-98af-3a8ca92af1e8", + "apim-request-id": "7c5d4b79-b572-4d8b-81f3-5460c9b24dec", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:01 GMT", + "Date": "Mon, 16 Nov 2020 19:20:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "109" + "x-envoy-upstream-service-time": "119" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json index 8022864296b7f..2e7c3156eff2b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageAndStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bfae26ea494c504ba089528621c803cd-31d95d9adf3fd44b-00", + "traceparent": "00-4085a0a26a54bd4f867f9fac7db82670-9dd835ba3dcb274a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a461009a7ec465a3d8be1a54c58e3575", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "67372d43-bb5a-4cc3-8f16-d7434ff328ba", + "apim-request-id": "0a2f3539-f52e-48b2-8803-6d5bc9dbfa56", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:07 GMT", + "Date": "Mon, 16 Nov 2020 19:20:12 GMT", "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": "104" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json index 043d49f72482b..5a3f5c0892af8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTest.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0f23fcd9631d7147ade8e2d3f4597b06-e9d1c8557760284a-00", + "traceparent": "00-c4be8ad9e47e644a856e788d96f5ff22-dc9ffe87b7bb174b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f4f79420d55186c560e783cd65904498", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "91658e70-bf6d-41e4-afa1-9028b077c5e8", + "apim-request-id": "4cdfa6b6-5dfd-4624-be8b-b0fa62b9ebca", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:01 GMT", + "Date": "Mon, 16 Nov 2020 19:20:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "107" + "x-envoy-upstream-service-time": "105" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json index 7844ff67328d2..cb9ae84cd1c22 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithLanguageTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f8d451ccd1ef1848ade05a11d8293e84-621bee7bec670347-00", + "traceparent": "00-acb1dd1d0dca0d4fafe0563f1d1d6422-eb9b919a00de4d4c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a82300e8850457b9e1ddd84e5e66ebf5", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4d15a784-b33f-4d9f-b28e-0c4f294a7363", + "apim-request-id": "a30e606a-c8a7-4edc-8784-87b5f3f45a2b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:08 GMT", + "Date": "Mon, 16 Nov 2020 19:20:12 GMT", "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": "106" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json index 42e1bd5fb57ed..d04307e8044ea 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTest.json @@ -11,9 +11,9 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9e266d45b0fdb7419ba04a6629f6bb0f-6190493a0115574d-00", + "traceparent": "00-763da3aa2338fb44b54116550c3d3bf3-209da488e5029241-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d0c9faccbe22f6229408f2811c507283", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "08034275-8df8-4920-bb9d-fae8f45d370e", + "apim-request-id": "f0f3ceb6-203a-461e-9f98-03ebcf08692a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:02 GMT", + "Date": "Mon, 16 Nov 2020 19:20:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "104" + "x-envoy-upstream-service-time": "105" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json index 28fb6eae12826..112c3ee5b78cd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithOpinionMiningTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0c38abb58454b041a340feaf06a9c5b5-fa47236f2b917f47-00", + "traceparent": "00-9ad6798d301d7b428e7eef9b75a15bb9-e26d84625589ed4b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "99f36dc03d5b69cad15ff682fb68e8a9", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "01d237a5-1aa6-4fad-b9f5-ef8d896ed227", + "apim-request-id": "f319366f-a8a5-4ded-9a0b-a3956c97b2dc", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:08 GMT", + "Date": "Mon, 16 Nov 2020 19:20:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "101" + "x-envoy-upstream-service-time": "107" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json index d2d90b4d439e0..a2f59a8be5f51 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTest.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-32e929cbf030534eaf5d4d3834c23589-dd8c2ec82ae38d4e-00", + "traceparent": "00-5258fd544228a240babcde06708f9207-77f0b3783f35994e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ea37c4c5b43ade506c055e9d1167082c", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2ea7f9b5-94e0-4ee7-9f05-8ed1822fe38d", + "apim-request-id": "795b2b13-e625-43e8-bb79-c4aab154c09b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:02 GMT", + "Date": "Mon, 16 Nov 2020 19:20:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "102" + "x-envoy-upstream-service-time": "107" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json index 50800ad2ddcba..c1eeff75e63d7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsAndCancellationTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-51eccb1c61dbe241838a518b70bd0316-50f2be5779974642-00", + "traceparent": "00-dd855da70f51fb4d9aa9af012d282c54-57fe19eb4cec0f4f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d297a709781eea07c58dac26eba5fefd", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0642c6f8-519e-495f-b972-6141f203c4ee", + "apim-request-id": "c72e4397-8840-43b7-bfb5-3c2504179a8a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:08 GMT", + "Date": "Mon, 16 Nov 2020 19:20:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "107" + "x-envoy-upstream-service-time": "99" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json index 977f54720c84b..a180acaea74fc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6e816bd16a57d54bb82944b059cdb072-8ed0fca99e33f645-00", + "traceparent": "00-02a88b0b1e06184c97fcdbdc924a42a5-9619bae815ab5440-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b93a282865c5e574aa1703755dff0595", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f6630cb7-223b-4543-b583-fd086bbd399a", + "apim-request-id": "1a7d028c-f3ff-4520-848a-699f66e6de00", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:02 GMT", + "Date": "Mon, 16 Nov 2020 19:20:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "105" + "x-envoy-upstream-service-time": "112" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json index cc2fee53a9a16..a2805176b43be 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchConvenienceWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "222", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4f204d47c6653c40b29ecadb28b9bee9-4afa7c13b5b2814c-00", + "traceparent": "00-46728cf99440a34bb8fa1885bd04dea1-642f4a34bd6a4440-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "896aa869bee9e15710e9b281353ff7e1", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9be79208-eff8-43a1-be0d-5229a12ddcf4", + "apim-request-id": "5a7367b3-f714-4f14-88b2-401e3309097a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:10 GMT", + "Date": "Mon, 16 Nov 2020 19:20:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "105" + "x-envoy-upstream-service-time": "103" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json index 353dc1337427e..f6e71c58252ee 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTest.json @@ -11,9 +11,9 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-65801a2d9ac3ff4c9300d81f382023d7-85da4ec48a41434a-00", + "traceparent": "00-01fa42497bbd6a4d84140e33d310a8af-12a4f4741d40bb40-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f4c1d2e666ddf215fcefdfedc5dd71c8", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "344b09f5-3a3a-40af-a680-ee19bd21744d", + "apim-request-id": "d06e290b-7f37-43bf-b617-fe22cb3a923f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:03 GMT", + "Date": "Mon, 16 Nov 2020 19:20:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "115" + "x-envoy-upstream-service-time": "127" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json index ddd70bce661a3..7ae01193c2ebd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-817423627fc6064b89037c6eb677730f-88948980064a1848-00", + "traceparent": "00-1bc0561e0d4c9d42b1fb6357f259cab4-2f2ee23c2904f04e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "26baa46075d446ba158f6fd6eeae447a", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "17e39d85-e845-4bd0-87f0-73b08b280ef6", + "apim-request-id": "20c7bd03-e40d-4375-baef-d71af934292d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:10 GMT", + "Date": "Mon, 16 Nov 2020 19:20:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "109" + "x-envoy-upstream-service-time": "125" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json index b334f3b02d9fd..b435f3fa9a05d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTest.json @@ -11,9 +11,9 @@ "Content-Length": "207", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b5ef90e5d4ca8546a5df26fdfc424050-69e06920da99994b-00", + "traceparent": "00-55a25ac591052d4184da6bc9baacdb49-8cff68c479e34243-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "381e2b63f2088d45202cae7fd25e5042", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1d182d5e-da1c-4d86-9316-d7b5a694809e", + "apim-request-id": "91c16fbd-28a3-4276-a949-193826422e28", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:03 GMT", + "Date": "Mon, 16 Nov 2020 19:20:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "110" + "x-envoy-upstream-service-time": "115" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json index f72d8e5ba829a..2b8b963963127 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithErrorTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "207", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bb2aaaceaf74fb498cb7fcf34b1d7152-56d08ba8f9c9134d-00", + "traceparent": "00-802109fc6f86a44fb1be41b66426ca34-b188fb7fc30fdb40-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "29ac615e7a25f0506bd8c86ac7133e14", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "62564a8b-98fb-4639-b743-ccfa40797ad6", + "apim-request-id": "689237cb-d4d4-4cf7-9ffc-fa1e7c0e31cf", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:10 GMT", + "Date": "Mon, 16 Nov 2020 19:20:14 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "100" + "x-envoy-upstream-service-time": "105" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json index 84d489c01ae21..c744ffb9b2fc6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTest.json @@ -11,9 +11,9 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5ba01981f1f82249b03f2d3c4f70ca3c-7af90f905c904c4a-00", + "traceparent": "00-f2466797ea3685489c0bef28e481550f-f96c3717731acf44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e97c715478efd2b509099d562415356f", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "9bd1429a-0a3e-4241-8aa1-9127c8f17946", + "apim-request-id": "645562b5-13b8-43ce-ad1b-0805a29e13ab", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:03 GMT", + "Date": "Mon, 16 Nov 2020 19:20:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json index 4840180695ea1..a042058ebfb0a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullIdTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b63fce4b4deef34182e3d5552dfdde9a-b8145cac7bc87d4e-00", + "traceparent": "00-6e635ad9573111418a5b867678624518-90dd6fa1532a1d48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7d28785fafea6a705989dd511c352058", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "917461da-655c-4a1a-8876-b11a44431463", + "apim-request-id": "fc468182-2409-4f57-94df-232d2a484003", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:10 GMT", + "Date": "Mon, 16 Nov 2020 19:20:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json index f0128cb5f0484..4d9a9f879aa6c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTest.json @@ -11,9 +11,9 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a489f5169b2a964bb7fc2a171293efbf-6bf811ca32553c4d-00", + "traceparent": "00-59088e913d01bf419c1a88ec4238bebe-a84002f0fe8d4240-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a82047bc1e56521f19fee095619725e3", @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "40eff7ea-b70d-430f-8d60-8c843f4c5249", + "apim-request-id": "7fa05450-e469-42fb-a503-a98be8c91820", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:03 GMT", + "Date": "Mon, 16 Nov 2020 19:20:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-envoy-upstream-service-time": "2" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json index 0d3a368d1ff8b..e971284457859 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithNullTextTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a09b24c330035d4ca129ad97f9079801-5bcc156092c31a41-00", + "traceparent": "00-31ec8d20a590bc4586a8a794a6da2956-b24481db045d9140-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e4b5e1c573e3bc3fc5137a6a90633740", @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5ab9554f-40aa-41dc-81ec-0c796d67f211", + "apim-request-id": "ef6f4d3c-04f3-4434-b5ed-14fcbf545e64", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:11 GMT", + "Date": "Mon, 16 Nov 2020 19:20:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json index 48ad55a72afe9..ed856b5b4baa8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTest.json @@ -11,9 +11,9 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ad41e1a4be62304fbb3048af7b2cd2a3-42e534cb9d6e3e4d-00", + "traceparent": "00-888bea8f5391334c8292f6ce581ed13b-40ab10c1c9bf7b40-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4bb052b32c66958101e8bfb2d70a96bf", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eafd1acf-5bb1-4946-8f5d-91aa94eb6bfb", + "apim-request-id": "2f1d7567-df9f-482e-a115-19b068830681", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:04 GMT", + "Date": "Mon, 16 Nov 2020 19:20:08 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "102" + "x-envoy-upstream-service-time": "118" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json index dcebdfd79a7b9..1a6277cc870c7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithOpinionMiningTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "197", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c52f7c4eafd021468ae55ed5aa7e2904-b25d1e61248fad4f-00", + "traceparent": "00-c9fd4038c22aef4c9952fe003acc3a92-db108e3d55dbb343-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "10469efe411909195ef72681bf249b22", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4d1ff920-64a8-40dc-8309-e645a18c953f", + "apim-request-id": "b348ca72-5263-4856-847e-1a6c9774e1ad", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:11 GMT", + "Date": "Mon, 16 Nov 2020 19:20:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "101" + "x-envoy-upstream-service-time": "117" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json index 9d3f9342a2d69..d4d21368e31a6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e240c0caf8f8eb4eb137b0c3ebf7d299-b33a888d5d826d43-00", + "traceparent": "00-2ecb4c0ea8274d4e9171e78179cc35d2-dbe6648bf93a3140-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "380d3332cec3ce7a5b0d21c20c2f8b8d", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a61e2d3e-5b07-43f6-96f7-f6035f56d3e6", + "apim-request-id": "76fa8684-0e83-4a7c-ada5-15c94d669bc7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:04 GMT", + "Date": "Mon, 16 Nov 2020 19:20:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "119" + "x-envoy-upstream-service-time": "122" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json index daafcc61f99b1..ffe664a0e4291 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentBatchWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "224", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0f8d08ddcc31114397aaa11ed29b6c3a-fd29d2ed5b2d1749-00", + "traceparent": "00-ad809d9c32f0aa4b834f381a82f06a2e-7de15b8c75959342-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f794f0733bb3c43d680189f109278930", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8fcd4925-ea9e-47e1-bf3b-121ad0cd8e05", + "apim-request-id": "f6bdedf7-efcb-4643-ac22-c2fbd2af2b24", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:11 GMT", + "Date": "Mon, 16 Nov 2020 19:20:15 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "116" + "x-envoy-upstream-service-time": "111" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json index 68b56053f018d..cc3c9dc89c0e5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTest.json @@ -11,9 +11,9 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3fe435fec2971a46aefbec248355b25e-43924838d9f4c440-00", + "traceparent": "00-45901335d993fd40ac4725e8a89a1275-a7ab45787295314c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4e5bdbe5820d38723d195b24082e286d", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "43aba3a3-0bd0-4ac9-a7f3-50fba92df712", + "apim-request-id": "4401d483-4704-4191-895b-948db84a3b5f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:04 GMT", + "Date": "Mon, 16 Nov 2020 19:20:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "100" + "x-envoy-upstream-service-time": "109" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json index c78d4d2972271..d56d443ccca50 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6359ae7afbce1e4388bbb712dc7e94fb-e70ff63da2fc1b4d-00", + "traceparent": "00-41b3221aa3dcab45b42a5f45a0e0c34b-c15de7230f7f094a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "03ba29d245db7d4660e70538d783a159", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0583fb19-2e9a-49e8-b8f4-de012dc4fea0", + "apim-request-id": "29e5e401-9c11-4b93-8f17-baae29dc4bad", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:12 GMT", + "Date": "Mon, 16 Nov 2020 19:20:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "110" + "x-envoy-upstream-service-time": "104" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json index 606336c88e336..27a9d6ffa191d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTest.json @@ -11,9 +11,9 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-382fb451266a1841b37618c8d28c64fa-38cdef9d76716d42-00", + "traceparent": "00-8e2cd2e72bcf354a955ecad009c1b68e-b5193d1cc1bc6c4b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1cd519dfbccdba31b1f719f550932df6", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a33172c9-f30d-47cd-b07c-287a49e5cc68", + "apim-request-id": "9cb5ab16-5309-4934-96fc-9d770be01209", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:05 GMT", + "Date": "Mon, 16 Nov 2020 19:20:09 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "101" + "x-envoy-upstream-service-time": "106" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json index bffa067022115..5ec0ce5325801 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithCancellationTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-81188e54335c874cbcf818016b9bfcf3-b9c14b9b16199843-00", + "traceparent": "00-f0e623851dedbb4aa980850cd1fc176e-bcc01698fdd08247-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e4628ff9d75e35fa30a2a74d75b5d054", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "177e9534-2672-422f-8d17-73a946719ec6", + "apim-request-id": "33fe13b1-4792-446f-b7cd-1323dac30c76", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:12 GMT", + "Date": "Mon, 16 Nov 2020 19:20:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "114" + "x-envoy-upstream-service-time": "99" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json index 8529528126ff6..75e23f0c5877e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTest.json @@ -11,9 +11,9 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d1e3406c5c322748a4f21d66a80711b2-464d086b89fbe149-00", + "traceparent": "00-ff5e81253b4c1846bae0775174f82c32-1f1a2405b105694e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0226741a4a3852fb661facf15a20cdfc", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "195e9004-c903-49a8-95fc-91a38675514a", + "apim-request-id": "3f396c04-c538-43db-b86c-26365f298e95", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:05 GMT", + "Date": "Mon, 16 Nov 2020 19:20:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "98" + "x-envoy-upstream-service-time": "107" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json index eed2523a4cedf..2b93a3ac88f8b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageAndCancellationTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f025b42ce8a66f4ba403b6f8333d119b-6cf227d41d798140-00", + "traceparent": "00-bb83a5acc6b7a547a83a576a0d333480-09e9f03edbe2d544-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1d19c9bc741aeaae2a3044500760d7de", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c7e8391d-e285-46f0-ace6-7958ace75dea", + "apim-request-id": "ce2d7e77-d4f1-46e2-a7bd-acc8cd6a89fe", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:12 GMT", + "Date": "Mon, 16 Nov 2020 19:20:16 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "98" + "x-envoy-upstream-service-time": "132" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json index eb284eba48c0e..c57c03a01038b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTest.json @@ -11,9 +11,9 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-498cd3880db3a143b809228e1b6da155-f3a678494edc6846-00", + "traceparent": "00-eda26b3957ccea49a39a8d82e68f3e59-43084555f242e540-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b1c263e328066fc8dce532b649cbfd03", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "74049b97-f212-4894-aa10-edfca4099ea5", + "apim-request-id": "f3c73176-8676-46c6-9722-f5b81683bf72", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:05 GMT", + "Date": "Mon, 16 Nov 2020 19:20:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "107" + "x-envoy-upstream-service-time": "106" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json index b78cbcec4e66f..4dca651876676 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithLanguageTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d19e5172732dfe4da720c19acc18d7c1-b6f03683e4df5843-00", + "traceparent": "00-0c39cdf0c04d194a8eca6b6135986b4b-3511a66c81d1564e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "61e4104888cde5cbe34786063a0401dd", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f6f1c3bf-5f81-4fc9-b9b0-1a20cf409e34", + "apim-request-id": "0f6000b6-b21d-4686-aa33-aa4a97e3e6e6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:12 GMT", + "Date": "Mon, 16 Nov 2020 19:20:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "95" + "x-envoy-upstream-service-time": "324" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json index 42b7e0022fd9c..a36c23ccad743 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMining.json @@ -11,9 +11,9 @@ "Content-Length": "127", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f526d249b32dd14581da072ee39ff8df-87a32f7e6560db49-00", + "traceparent": "00-cd19972ced2f224290142122720439c5-c233143bade0984f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1e33ed24967d42087f8188a6111ef9b0", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8eeb2538-da81-49e9-93bd-f467f2b016fc", + "apim-request-id": "f97df6e6-4ed2-4210-9487-61e8f1d1e067", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:05 GMT", + "Date": "Mon, 16 Nov 2020 19:20:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "101" + "x-envoy-upstream-service-time": "175" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json index 56d6b4ae519a0..37ca2e1efb160 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningAsync.json @@ -11,9 +11,9 @@ "Content-Length": "127", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8e299850451fff48a19a027aecf0a0d6-45687fb6b9e93d4c-00", + "traceparent": "00-e68fcfa730239a40b25a7d0e4488714e-dcdeb78b11d29646-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "504a9c53bf1eca7814bfce867e01718a", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e0ee8c10-f7e6-4511-b92e-1e2715d00584", + "apim-request-id": "dc9b6516-7e23-436e-ae3e-1176c9600f1f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:13 GMT", + "Date": "Mon, 16 Nov 2020 19:20:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "106" + "x-envoy-upstream-service-time": "107" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json index 038976812a706..5444cdd460112 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmpty.json @@ -11,9 +11,9 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2b1e76bd95ee754988a28f706e8c18cf-7a679e6f70d24e4b-00", + "traceparent": "00-5ca35af54819364fb301c4a02bb776ab-bc05d4ac534cca4e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "558a7442c3b1c5137141db1dd8ca6858", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "beafd278-f2ac-4746-84e6-2059f24daa9a", + "apim-request-id": "691a4f0c-fbfa-4bde-8a8b-7e04a72d7b2b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:06 GMT", + "Date": "Mon, 16 Nov 2020 19:20:10 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "98" + "x-envoy-upstream-service-time": "100" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json index 209853056a096..b20d914d1a55c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningEmptyAsync.json @@ -11,9 +11,9 @@ "Content-Length": "85", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-14da05db80b0704c9e7310a7b59e09b2-bb5aa2c5e59b694b-00", + "traceparent": "00-0a1650d44b8d9144bc09337066bf3d0c-a711118944d2f642-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f6867f38d810d57a89dad763eab07a05", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6916051d-8208-4d87-9d51-5cc98f66bfda", + "apim-request-id": "e8ef2174-48a8-42d7-9625-e8189ca797ea", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:13 GMT", + "Date": "Mon, 16 Nov 2020 19:20:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "105" + "x-envoy-upstream-service-time": "112" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json index 57837e8846eb4..5a9ac854b3b1c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegated.json @@ -11,9 +11,9 @@ "Content-Length": "80", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2755c330a73a1b4d950c3de60692e123-b118f817b9499b43-00", + "traceparent": "00-98c8b4cb5a5b3d41b92a320e350f7410-13ab34d1f5f02d42-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8d0590d28394353aadd5df7e697ac312", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4b366f66-6318-4515-bc60-402f61350a16", + "apim-request-id": "93727e1a-453b-4be7-a01c-6a28d8486cda", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:06 GMT", + "Date": "Mon, 16 Nov 2020 19:20:11 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "108" + "x-envoy-upstream-service-time": "105" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json index c669d1f5986a5..a0cc3301f1401 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/AnalyzeSentimentTests/AnalyzeSentimentWithOpinionMiningNegatedAsync.json @@ -11,9 +11,9 @@ "Content-Length": "80", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-241c81907f305844998dfd6e928f9490-96ae396b2aac0a4e-00", + "traceparent": "00-712abb2dfab0cd42941ada85d0d4f4f4-da378fe68148fa41-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "94ab183ce7dcf7c7f3beeb119ae08867", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e3ad162d-e03c-4800-a5ce-45c3b89370b7", + "apim-request-id": "a9a53689-6ea1-4df8-95b4-33e4f08798b4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:13 GMT", + "Date": "Mon, 16 Nov 2020 19:20:17 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "98" + "x-envoy-upstream-service-time": "115" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json index 42aac766bfe6d..ba4b4e9a656d2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTest.json @@ -11,9 +11,9 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-61011985bb436f469b0a64e4d82401a4-f731d3f73d5af943-00", + "traceparent": "00-2fe1362fbef78545ad5c9d3c8dc9e353-6047e1f86944ae49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5005f5e8a08b47218215f19574b370f6", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "63c4e92e-d067-43d3-a69f-b4b4c9cbc0c1", + "apim-request-id": "854d5edf-89cb-42da-af0b-b01170070d46", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Fri, 13 Nov 2020 22:25:13 GMT", + "Date": "Mon, 16 Nov 2020 19:20:18 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": "21" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json index 4953811bf44f9..2af6e5a3ecba8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9d9ec18bef4c5149a2627018ae055194-1b362b2950873f48-00", + "traceparent": "00-6b15037ee48b0147a5477b69be039c3a-85f471c907998f49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3574863b78b3d4b99962ee1a8b7bbd89", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2645a487-5ff4-4985-9c40-97096d91f5a8", + "apim-request-id": "b6d8e128-54a7-4e31-9ad6-82264f6c22e5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Fri, 13 Nov 2020 22:25:16 GMT", + "Date": "Mon, 16 Nov 2020 19:20:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json index 8c91ac2021838..0a30144275316 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f8c2fe0f87ca7d4f9c40907c9fb976b4-dd2087b1f7f8e741-00", + "traceparent": "00-4e01f9ea5a3633448014411a101ebfe4-14a666a56416ef49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "738db85ac016be284349434968e4adff", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "64f25b5f-cc82-4adf-a3a6-168a9e9601f3", + "apim-request-id": "9cfee0e5-dd31-41a4-b52c-0a9d6bbe9e54", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Fri, 13 Nov 2020 22:25:13 GMT", + "Date": "Mon, 16 Nov 2020 19:20:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "26" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json index 4de06f9ac88c0..8dc480d8d29ee 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchConvenienceWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "177", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-aa6d02f95b07a345bc379529f2692dcc-4e84ae2c97936045-00", + "traceparent": "00-847424ece7b4bf45b941d3b11c6b795e-0c7e773ff890194c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6246079b8393935bca52b813124b2ad7", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4cd64f1b-b3cd-479d-87ee-b9dab287d60b", + "apim-request-id": "407ba7c6-ef53-4d51-ba14-37c0dfb28799", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=3", - "Date": "Fri, 13 Nov 2020 22:25:16 GMT", + "Date": "Mon, 16 Nov 2020 19:20:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json index eb26507994e5c..6395e02355f87 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTest.json @@ -11,9 +11,9 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-66c48ce18270a34e8fb3cac32d2c15b1-93df9630f0eed84e-00", + "traceparent": "00-8d9eabd1b0cb064ebb2abb95d661f2dd-aa6901bd7b600e4b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9ed49d935379ea824d7c2153a1e6e6e4", @@ -45,14 +45,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8bec0a5c-4cff-4829-972a-b436882b590f", + "apim-request-id": "fd970e55-4d32-4be7-98b7-8c6d36e3d842", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Fri, 13 Nov 2020 22:25:14 GMT", + "Date": "Mon, 16 Nov 2020 19:20:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json index 0834ab93c580a..8b507e55f858b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-387260edbdae0a46a2ef77466e6c2830-fc722755a5539240-00", + "traceparent": "00-fad038032c5c314e84533bda6fb80d4c-feddd143f2a49949-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "da5f41d41140dce5b95983493bb999e3", @@ -45,14 +45,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5eb6f409-c6bb-4b9e-8ea9-430897c00103", + "apim-request-id": "69be7cdc-59d5-49e2-99c7-57e57ae03b3e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Fri, 13 Nov 2020 22:25:16 GMT", + "Date": "Mon, 16 Nov 2020 19:20:21 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": "11" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json index f7cdda7f9f303..5435b97ed411d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTest.json @@ -11,9 +11,9 @@ "Content-Length": "156", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7a81350aa42d3348b7573168f126fc41-44828453df9f4647-00", + "traceparent": "00-964c160f4bf83c459ed3430b249cfc83-0e29396cfe5dee48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3ce40d8d4db949068b12a56808d1cfa5", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c6c8578c-f30f-4214-ab0d-480948847179", + "apim-request-id": "b21fff87-7068-4b1b-8aa3-ed886d5e3c26", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:14 GMT", + "Date": "Mon, 16 Nov 2020 19:20:18 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": "16" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json index 458d4580839cd..15860245ea5b7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithErrorTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "156", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f215a344fa5cde4889b98ddc63586c12-4717a202a8f2a046-00", + "traceparent": "00-d29e521bdaccc7458f3237e4cc55f9cd-d1fce6906d6feb44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "51807d44b190171f3639086e14582723", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "00ad30ae-e6da-420b-9490-121c777a0d12", + "apim-request-id": "0c0fd1dd-3d9e-4978-b5b7-4ca830f8113a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:16 GMT", + "Date": "Mon, 16 Nov 2020 19:20:21 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": "8" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json index f5c791387f638..0bc6663360057 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTest.json @@ -11,9 +11,9 @@ "Content-Length": "67", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dcc99c4937a27c4e8e25c3eab1c76b2f-10d883f4bb7b7149-00", + "traceparent": "00-5ca35b92beef7947a8d69fd369376433-45d6d2a07ac01346-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1a3b3f53b2eb19e83bb91b78bee10b95", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "bd641893-eab2-47c6-bc9b-caa5e20e809a", + "apim-request-id": "ee8fbc26-7d33-473d-aea0-5c500fd7d55f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:14 GMT", + "Date": "Mon, 16 Nov 2020 19:20:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json index 268994f49ed3e..96ff7a6c829ae 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullIdTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "67", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9cc0727776047c4aab1a8a655b719243-fcf2e10d49f4174f-00", + "traceparent": "00-1ed784b701cb314aa69ba93336128225-f058f6176a627044-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b23c80179f571f450cf30413f8966972", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "32b4dfb3-9066-455c-ba1b-bdf1fb36e3f7", + "apim-request-id": "a36cc8ac-f736-42a1-97a3-7781246acb56", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:16 GMT", + "Date": "Mon, 16 Nov 2020 19:20:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json index 9c7bcab093eab..41a9d4836b738 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTest.json @@ -11,9 +11,9 @@ "Content-Length": "57", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8354f15dd4d6b943aca414f2ef5125fe-0be37f437434cf4f-00", + "traceparent": "00-96cdd99548c9b744a9b66801bbf9147b-e35d2ef4ebc96d48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ed66d74da14036cde144d6235dacd6d3", @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2540edb0-c2d1-45ce-882a-7b761ab77f01", + "apim-request-id": "7a083ef4-92c9-4b5b-a277-10017ad1e863", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:14 GMT", + "Date": "Mon, 16 Nov 2020 19:20:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json index a245876533b3b..ca47c86d0938b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithNullTextTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "57", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0e1a293730426e49b33994474fbcbf52-265c243d43c45b4d-00", + "traceparent": "00-ce2306ef8f27454889a02e74bf770d48-a3f6fcf9ea2dcf46-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "46af5eece4595e8658920ddb272bdb42", @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c2bf1394-a7b6-4a3c-9f37-bdf330936fdc", + "apim-request-id": "f57c38d8-0b35-4d06-9850-e3a37a18f822", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:16 GMT", + "Date": "Mon, 16 Nov 2020 19:20:21 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "2" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json index 433bc096448b5..51bd4bd9b0577 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d43ca80a21093e47867256341f057961-fba4b8fdf5808b43-00", + "traceparent": "00-cd145fc28eb08148b31994d44808f047-87eab9dc16d5de4a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "acad3cc12aa10a7667d1533045b0a321", @@ -45,10 +45,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5664fb4e-1d6e-46a7-91ae-ed13f46f2147", + "apim-request-id": "744f6187-9568-4c2c-8481-374c287e7721", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Fri, 13 Nov 2020 22:25:14 GMT", + "Date": "Mon, 16 Nov 2020 19:20:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json index 72d5f7ef431cf..0a42da79e70ce 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageBatchWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "225", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-43bf6a6f2fe4fc46995817be6109ad4e-a505ce3038d4284d-00", + "traceparent": "00-028df19a536e38469314838c0af66b93-c7b5c677ea708048-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "50a7683e77aad92fe53b41b770dfa6fb", @@ -45,14 +45,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "36a07703-4fc3-4b38-a664-74ad2ee34b52", + "apim-request-id": "2389f17d-ed21-4bfa-86f9-6bfde2790131", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=4", - "Date": "Fri, 13 Nov 2020 22:25:17 GMT", + "Date": "Mon, 16 Nov 2020 19:20:22 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": "8" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json index b6e71cab9d273..c71a3e0840778 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTest.json @@ -11,9 +11,9 @@ "Content-Length": "82", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2dfdc16f3503a24283646dc6461b19a1-97796ea44beddc42-00", + "traceparent": "00-a0fdea64d121cd418f90c8d86a283a03-56d57d96beda8b47-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7aaab163ed1d982c319bbad40483549a", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "79a86556-25c3-4d9a-9093-51a91266be4b", + "apim-request-id": "aaa9ffe6-675a-417c-82a8-1c49b82fcc8c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:15 GMT", + "Date": "Mon, 16 Nov 2020 19:20:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "21" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json index 8c9ff7e1a5638..874151b82d3e5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "82", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7e4ced3212fe0d49ae330529a1742fb6-26db80e1c8326c45-00", + "traceparent": "00-cbc337b4c8d4c74b8d00fc2f3f7de81a-fcee313d047dcc48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d4cc6357ff58c85240bd64c6445c1d0f", @@ -30,10 +30,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7b9611c8-8f1e-4a9d-b8aa-f02aeaa14eb4", + "apim-request-id": "ec030d2a-76f7-4c64-a5be-bf036bc3422b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:17 GMT", + "Date": "Mon, 16 Nov 2020 19:20:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json index e1752cd05e27e..1baad87d2678c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTest.json @@ -11,9 +11,9 @@ "Content-Length": "95", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a739cf5ee6690d4c8504d51c9da140b8-1580b46b5c7e0843-00", + "traceparent": "00-fdb4b2d07ee24744bccdbaa8d999d02f-0a4212848f977742-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "98a2a27e9082d475805aa932800b5cf6", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5d11d60f-67c1-481e-bca0-4bb798c2a416", + "apim-request-id": "ca910544-24c4-4936-bc88-2e7bd3e061d4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:15 GMT", + "Date": "Mon, 16 Nov 2020 19:20:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "18" + "x-envoy-upstream-service-time": "24" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json index a373e456fb77d..a4b469ee2f784 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithCountryHintTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "95", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5ff32492624363409154e30ab2e6dedb-fa7fbe1e7723bb42-00", + "traceparent": "00-fa13acd89414d34b8c50ebc0faa2daac-65c4b6743e91c140-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f0760fc68cadb07ff1c89a4d1612c056", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e6dba347-c5d1-4dcd-be79-0848c8206e04", + "apim-request-id": "6ec23bd4-2cef-44f7-afd9-04d2d2a9d9f8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:17 GMT", + "Date": "Mon, 16 Nov 2020 19:20:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json index 18ff799002c80..5ea2ea53255c0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTest.json @@ -11,9 +11,9 @@ "Content-Length": "101", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ba8b9d33dbc27144a8afd7681c85cd23-776f6cd5a20a6247-00", + "traceparent": "00-468ea6ffec70334489ee086cd18ae47a-bd253c541fdbf24e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d6d037d3997433f0d1d408295081d2b0", @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "36627e7e-894c-4a20-ba54-31a757ca1318", + "apim-request-id": "cf1e4059-883e-430b-8a2d-53b4f7ebd375", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:15 GMT", + "Date": "Mon, 16 Nov 2020 19:20:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json index d1ba8d345206c..db2fb1a9bd2c6 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithErrorCountryHintTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "101", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-88e2ebafa5b9494f8f9ec6b70ec3a192-8d44d43d1910a847-00", + "traceparent": "00-7fdf710604c203488b399d6db4523410-223d93a24f05c44a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9d92baec240d7c0e78b80d24d8752359", @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "13cac227-c5e6-4b02-a9ca-b8dc647da1f2", + "apim-request-id": "41f7d0a1-43df-49cf-b00e-072a40858ac4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:17 GMT", + "Date": "Mon, 16 Nov 2020 19:20:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json index 1769e2cb6baa7..d0b5ee4b1d4e7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTest.json @@ -11,9 +11,9 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-00f37570137ae94cb64a75f74fad8ca4-98a4468764b2a040-00", + "traceparent": "00-c57ae2f479145c4f90c7820c01b60636-4f90e08a9d5d3947-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9cded6f43daa9a1f5be8cb3934e1c44c", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b307fda3-9965-42e8-b038-b6900aa598c6", + "apim-request-id": "516860d0-e7ec-4fbc-b716-567099639621", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:15 GMT", + "Date": "Mon, 16 Nov 2020 19:20:19 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json index 042fbc820286a..7a17628862620 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneCountryHintTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-110eafada540c949a07251745ac841fa-7ac7774598833f47-00", + "traceparent": "00-6a1343bb946481478b5164b0c2eb385d-bab284d8f1111c4b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6124b40a04621bbacc815e287718638c", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "58cf9d49-3ae1-45f7-9f9e-8f16b911b625", + "apim-request-id": "723be2e5-2b53-412d-ab9d-fd2633738023", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:17 GMT", + "Date": "Mon, 16 Nov 2020 19:20:22 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": "8" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json index 587200da722cb..6603133f29b62 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTest.json @@ -11,9 +11,9 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f86f127ac6128148bc4f46ad39c8f8fc-401fb7f771f22e47-00", + "traceparent": "00-eabb7909e4a6564585511aa91da2d3c3-52130a73e5db5741-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "dda057b9e217d2ba6e5090c17d8fd607", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c46041e2-0a19-4ac8-b1fa-67408c4f710c", + "apim-request-id": "08ac4966-5ae1-4455-9061-549e4c014688", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:15 GMT", + "Date": "Mon, 16 Nov 2020 19:20:19 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": "9" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json index eb4dc4a39797b..9dd7b1ded5e39 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/DetectLanguageTests/DetectLanguageWithNoneDefaultCountryHintTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "93", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7a93832c2bd8d644854d4b4d7c14f7b0-aea1aefb7a8e7048-00", + "traceparent": "00-ed2ccc05a8dd5540a03769f62a5df4bb-04650e3bb6c70346-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bfed051a0d9b7fe81f8b58b8ccb397c0", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9b7ce7ca-dc19-409f-8a23-b5e574df6fbe", + "apim-request-id": "7bc148e9-555f-4665-9883-e4d39503d990", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:17 GMT", + "Date": "Mon, 16 Nov 2020 19:20:22 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json index abc5ae3e22844..35dd356942280 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTest.json @@ -11,9 +11,9 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-49c32ff955791d40b6eff99307f69c60-793fb438e99d3b45-00", + "traceparent": "00-348f2cae45db884c9d3978affcad6df8-e9f63e27463c6f41-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "632e1038e2d2bd9cdcf3dd442e79c63c", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "543d1ebe-d039-4a18-b7ef-73b5aaca896b", + "apim-request-id": "e6694349-f83f-4b7b-8ff4-6c409d041e84", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:18 GMT", + "Date": "Mon, 16 Nov 2020 19:20:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "29" + "x-envoy-upstream-service-time": "28" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json index 5290f68031d96..7fe062b06d6ed 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-954d6e8d49135143a5d008e579cda868-b12e3f4da8c1be4e-00", + "traceparent": "00-cba66e152baf2e4289f3b09f6c7c4066-79c6b7e7199f8940-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "bb6bf08839909e0e578d5bc1b428bcd2", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ebc1adb2-d829-434b-982f-62e7b9df71ce", + "apim-request-id": "36f506ec-9aeb-4a74-be44-d44cd0dde979", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:19 GMT", + "Date": "Mon, 16 Nov 2020 19:20:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "15" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json index 1ef531b1b8f87..1cb6c746cb911 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7c78fc608b61af4080e42b7e705e728b-90aa909eeb1e9d42-00", + "traceparent": "00-6fba5e4d1d90d849976509ff6f651922-a7f3381199250748-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4dfa2958a1568d79bc14e1b570d63d15", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c7cc44fd-9fcd-42c1-b7ed-d3deaf7c0b01", + "apim-request-id": "859fa2dc-a10e-4342-b583-fc6ddd944009", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:18 GMT", + "Date": "Mon, 16 Nov 2020 19:20:23 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": "28" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json index 705348d5d8eef..21df557d922ab 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchConvenienceWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f48f84c77dee494bb6b2a22585c359e2-cbc43ead6bc6cf4f-00", + "traceparent": "00-69c2233dba9b694b9a8edd3ff425c563-1675edcba0516342-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f8f1e114d697e804255315d1c7e9b6ab", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bbaac5ba-97db-4de3-b322-8f30f4f58a90", + "apim-request-id": "c88443ba-ad73-4df9-90b9-6b279079ec93", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:19 GMT", + "Date": "Mon, 16 Nov 2020 19:20:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json index 879e7bcfc4cb6..9e6763b695f19 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTest.json @@ -11,9 +11,9 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-1c4e344970086947a935fffb0a639b2e-de244127a7a67144-00", + "traceparent": "00-43ee71557d8de243842a486c6a78aee4-4cef637a383daf4a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f8376358e18a19e0b7e6f893926ac745", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d2b642f3-cc62-4f44-b1f6-e2b3f48051fa", + "apim-request-id": "38c13c38-4feb-4633-8d36-7557044ead9e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:18 GMT", + "Date": "Mon, 16 Nov 2020 19:20:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "27" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json index 975555232cd40..8442b9906e553 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3f5a7c3cb98ec6428aa6b04899b04996-96f7faa499f91545-00", + "traceparent": "00-611c4ee546f4ed43a8cff57fc5fe7f36-2b1350074ca16d4d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "272edb015782fb6dbcae1cc2967deed3", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "987d809a-9cc5-419c-8441-03aa7035510a", + "apim-request-id": "8fb2fc55-e0a9-4245-b511-9eaa30d9b73c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:20 GMT", + "Date": "Mon, 16 Nov 2020 19:20:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json index 34e2667e6109e..a4435b1e375b5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTest.json @@ -11,9 +11,9 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2f63a4e728caf3478ef414bbf361ab23-bc63a1f1ead54d4b-00", + "traceparent": "00-4da2e42e617cab498bacf82ec22d2196-0bd21e97cf762445-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "dd92af13693d6c6d10f5b45092a05fbe", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "97e5c1fc-317f-4610-9c28-419541f5d2f5", + "apim-request-id": "d07b1447-f799-4848-9630-d914f8a2c531", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:18 GMT", + "Date": "Mon, 16 Nov 2020 19:20:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json index d8509c9cf3e11..f9ada41320e84 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithErrorTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-85a415044489ab469b7369587193924d-6de3578d470af945-00", + "traceparent": "00-f594cebe63eaf443b94ea7e437e452c9-18a0304e97054445-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "161fb623980eba163f1211744629e747", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "35434b52-bcd0-4d80-8b06-b8c739ef966a", + "apim-request-id": "cf4e21a7-6992-46eb-83e5-a32f283f3622", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:20 GMT", + "Date": "Mon, 16 Nov 2020 19:20:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json index b11e848c5cd06..22b19ef59e644 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTest.json @@ -11,9 +11,9 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-929380a09b1c5b49802635a2f8cbfb56-42025c9b31f5294b-00", + "traceparent": "00-69e8ef382dda3b4b9b7b1e4826339817-bea16f4816153747-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "02233abc1a851f8d7b73c3a9864f0660", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "876768ce-2ebe-4105-b54e-5157e0e6d264", + "apim-request-id": "21a7a5a9-e7c5-4fe4-814e-eb32e2ac3312", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:18 GMT", + "Date": "Mon, 16 Nov 2020 19:20:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "4" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json index 2cb981e0666ba..2e3d933382995 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullIdTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8b3cff8e91a2f34ca02d803907173ee4-3e8519f8c8c9604e-00", + "traceparent": "00-e4dad6a6fc70ff4f8ad3cb42bd7f0fdb-3fbf2bd64e7c4c44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d3ffef96a22198e4e5a15a93f55c6a25", @@ -30,9 +30,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "425cf922-7325-4946-b48e-a21e5889d906", + "apim-request-id": "403889f3-935a-4c5d-97af-f1ad7e14eaae", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:20 GMT", + "Date": "Mon, 16 Nov 2020 19:20:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json index ceac764844e78..8f816caa561b7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTest.json @@ -11,9 +11,9 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3a502deac32efe49849b442c0e027f85-09d88699cd22bf4e-00", + "traceparent": "00-ff1ec7c669a4e74d96a17e26abcbf99b-8f60d0eec78c8a4d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5bf1e93674612a2cd70f69188e2d39f7", @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4837a271-c5a6-4481-8f1e-4cd9440564cf", + "apim-request-id": "089a3d88-b2b6-420a-9a48-4ecca56994ce", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:18 GMT", + "Date": "Mon, 16 Nov 2020 19:20:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json index f526a76a0c2a9..85fa977061378 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithNullTextTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-44a7846066c34547aab00ec03b7ea3d2-5b9281c0c270ee4a-00", + "traceparent": "00-65b60993726a24448c35650f03a63299-dbdca2e690453244-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5dbd36794559c388c50dd26e725f8f67", @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "487bfa93-01b8-429d-9b7f-7ad6beee25f1", + "apim-request-id": "07273d58-1998-4d55-af84-7c8d77a24b17", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:20 GMT", + "Date": "Mon, 16 Nov 2020 19:20:25 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json index ef4be45c81008..8f03ae6e4d875 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-23a8941787b8c14f862d348c8bcb495a-8a0f6d49290edb43-00", + "traceparent": "00-105cf218a0e1d44d91b3ce65953177e0-3af21b8e1344bc4a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "481340828d769a0d6f19ecfe6b0d9666", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "47faaa9d-1e0e-429b-8bb6-b0468071d544", + "apim-request-id": "964c5e33-f27e-4254-8030-cbe586ea0852", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:19 GMT", + "Date": "Mon, 16 Nov 2020 19:20:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json index 3c2cd319bbeb1..22202b387dd04 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesBatchWithSatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-af7f344d9def8f4e88c0d97582368809-4244f4a76992924d-00", + "traceparent": "00-5cd0e13c1134c7429559aed7c0dc2e04-10970f4f39be6b48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fcabdefd3d51a89852601fc0d61f3468", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "338f8a32-2893-4719-8a67-8ba8c7b0ea12", + "apim-request-id": "b37dfc74-357d-4435-8262-9abf8b53aaff", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:20 GMT", + "Date": "Mon, 16 Nov 2020 19:20:25 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": "38" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json index 2fa8f9a9c1582..f4f6b467aad62 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTest.json @@ -11,9 +11,9 @@ "Content-Length": "92", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-24b269be2b22fa4abae1f9aaeee57cf7-2a137a123eb06f47-00", + "traceparent": "00-5a056e7041f69a469b5df34fb7f385a9-0cb31a297b3ab743-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b86575e1b38857965c8495535ac2b899", @@ -30,10 +30,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "51b81b2a-c92d-49af-83f4-1c22be662e89", + "apim-request-id": "f2f6fde2-8be3-47e9-a44e-bd20a9a53f94", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:19 GMT", + "Date": "Mon, 16 Nov 2020 19:20:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json index f2b6c27cd2dc5..0938e5ebb54b0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "92", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a762d130d46dfa408c12a1816a2bc99c-19f0bfe47527a647-00", + "traceparent": "00-d2ee096ce1b8df4a9b2c6cfd1438ecd8-ba082860a796d24c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f80f56a1c735d323972d5c2c674aed06", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2e0eef44-ff19-44db-9682-ebe9646b7cd4", + "apim-request-id": "f9a0d579-884e-44bc-8702-99b523f3fb1b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:20 GMT", + "Date": "Mon, 16 Nov 2020 19:20:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json index 49a4f973d5755..ca5fc07582b74 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTest.json @@ -11,9 +11,9 @@ "Content-Length": "88", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-10c4f494e0b1d84c8312b33c0bce56bb-38951bc5c3a1c844-00", + "traceparent": "00-7d821f0d2972954a9cc2b39edf7469c3-66b8335a1eb48541-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fee09dae9a1670151c1a3a802afd3e61", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0c4a8849-0728-40e7-b60d-0e9ac0a7ca14", + "apim-request-id": "825268f7-1480-47cc-b9a1-6f781eb4b974", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:19 GMT", + "Date": "Mon, 16 Nov 2020 19:20:24 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": "10" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json index 4666b7d8102be..d224599f6de52 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithLanguageTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "88", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-159d1405cfc18a4a80ccc65c30c75e8f-fc6466a1946a0a4e-00", + "traceparent": "00-9bebc63e20743f4aafc188edcc99d001-705b0d3306c3fb45-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3bfc775f82d23a381e7a3b00a0305c6c", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f1204615-4f2d-438b-9c46-25fbf4a1d810", + "apim-request-id": "b33d4443-e4e3-4e18-898a-fead492e7944", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:22 GMT", + "Date": "Mon, 16 Nov 2020 19:20:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json index db00e54f3b977..1391c85bd7cfc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTest.json @@ -11,9 +11,9 @@ "Content-Length": "180", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8e9bc8d8e135b5419a2f3bdba20831ae-e4e2d4dcd2cf3043-00", + "traceparent": "00-ba1f0c070d6ccb4e89fdc668382f76f9-44813fc29dd9d14b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7a99e78b28bbdc34334c788be87edcb8", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "87d7f4af-05ae-481d-a3ab-4db5074eaa84", + "apim-request-id": "6c85f895-eaf0-4c14-bd19-bd07e7750a9d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:19 GMT", + "Date": "Mon, 16 Nov 2020 19:20:24 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json index 7c8f40e079749..a1731316fcfbe 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/ExtractKeyPhrasesTests/ExtractKeyPhrasesWithWarningTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "180", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-162669b5feb8bc4d81ac4ab830d3ab12-2592b6f0c7fa2741-00", + "traceparent": "00-119334b1506191428488298e935bc331-f151fcf67846e145-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d687a16b6a26ea445556f8b3c125785e", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8c1201c8-c7e7-4532-8ab5-741f75a38add", + "apim-request-id": "77a1f3e3-4c35-40c3-8a1f-435aab059420", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:22 GMT", + "Date": "Mon, 16 Nov 2020 19:20:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "14" + "x-envoy-upstream-service-time": "12" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json index 07f3e636b255f..99e63693d1d42 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTest.json @@ -11,9 +11,9 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3f554bd28935a84b9a618de6f04ec14b-17bd0bfa8bfa5540-00", + "traceparent": "00-603fd475c953eb43be5e694a76c42f63-b50b6dee9771c24b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "73b99494ac5a2b6a48730fa6d4bda24b", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4f2791ff-c7f1-42d1-9b36-66be5096e7e0", + "apim-request-id": "25971105-f4ed-4af1-b1d6-82e5ee1b13ab", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:22 GMT", + "Date": "Mon, 16 Nov 2020 19:20:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "117" + "x-envoy-upstream-service-time": "120" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json index 00a2fc299d282..2848a3ccc8025 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-683a7d1b379452439c890030231c8224-5216e0289d187045-00", + "traceparent": "00-dce40e0dff0d3e4cabc411caed8070e2-7387da0e3ae4fd47-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d2ffe8a9cd41c6a7f7eddf3ba0def75e", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7379b199-d702-4470-941d-8319a461ab79", + "apim-request-id": "75ccf8c2-feea-4cc3-be90-951873908dc3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:25 GMT", + "Date": "Mon, 16 Nov 2020 19:20:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "104" + "x-envoy-upstream-service-time": "135" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json index 5b93181b4a5a9..598091bf8facc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-81ca7cfbb472bf41aacc4d95e01a121a-f6fdfd694b2e5e42-00", + "traceparent": "00-df0400f9a625f344b146d5f2635b61a8-9eae4c2a5837d649-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "67616e684f8b043d1e0c71e939770f42", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "27311495-6441-4760-a1be-d7e8121f522d", + "apim-request-id": "960ae315-c9ec-4b00-948a-a4a3a7d8021a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:22 GMT", + "Date": "Mon, 16 Nov 2020 19:20:26 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "91" + "x-envoy-upstream-service-time": "114" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json index b37d11b85a0ab..7935fe1ae67cc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "191", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bd0de70b5322594ba08bd80a3ea9d554-f05760f2643a4747-00", + "traceparent": "00-1ed609448110ea4a90976270ea8f5f37-6ae90decfce4554c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3d6191fdfe339ad3e9a9a23dfab389e2", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3b87e579-d497-4896-a097-df00f403fb39", + "apim-request-id": "e50e9931-ffcf-4eae-b68d-1b1bf3c06311", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:25 GMT", + "Date": "Mon, 16 Nov 2020 19:20:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "108" + "x-envoy-upstream-service-time": "75" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json index c823f9429d94c..ae60f6f4ba044 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTest.json @@ -11,9 +11,9 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2a646137d5bf7d48a5c4c63f710585da-5b6dc345aca1bf44-00", + "traceparent": "00-bd53d9091ed7c646840bcd50178c4b25-b7a1a6c47f14c448-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c2e6195c0f4c89c31e4ed8101a9fceeb", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aef75e63-2d7d-4d9a-a9f1-d324b9cfeef0", + "apim-request-id": "f14e2696-0b45-40f4-a99a-1d20a88c5101", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:23 GMT", + "Date": "Mon, 16 Nov 2020 19:20:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "95" + "x-envoy-upstream-service-time": "150" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json index 49d3c423d3eff..37624647376c8 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6dca1f3f1548414f9efc90bc6acf0baf-7422eb8366e8664f-00", + "traceparent": "00-ae8d427dbca5b94da3fc72afb3d78e1a-f949ca51368a5c44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "74826ca03adf5e0230955bc11a73f253", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bea94e0a-a019-42c1-9c64-d84a0184fd46", + "apim-request-id": "dd3e1bbb-5400-49ea-838b-96e09501aaaa", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:25 GMT", + "Date": "Mon, 16 Nov 2020 19:20:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "88" + "x-envoy-upstream-service-time": "71" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json index edf5987450815..f883cef18f662 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTest.json @@ -11,9 +11,9 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d547bb1891d4354dab33b93177c8b7ba-b56a692d1a217748-00", + "traceparent": "00-2bff86a17ff07e47ba565277ee135989-e7d34ea8a1dd1644-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e1ab51bf64c496574b45aba2614e8e70", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c52441a5-02c0-4131-9c60-49d7e125e6a5", + "apim-request-id": "935967a4-d874-457f-81db-3cd54a36499a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:23 GMT", + "Date": "Mon, 16 Nov 2020 19:20:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "91" + "x-envoy-upstream-service-time": "97" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json index c61312d200601..8b5adbb2764e5 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithErrorTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "217", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-3ae2f39ba33abe4ba86ace24ec9242b6-0222d556dfb67845-00", + "traceparent": "00-bf4287e08a1eb94f8368a07eda768ffe-fb3e97225e2e804b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d8b08f95484a0406f97f2f7420372c35", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "043dfb74-1799-4953-8679-c95b695db34c", + "apim-request-id": "27e6deec-9d5a-4a79-8395-f238285fae86", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:25 GMT", + "Date": "Mon, 16 Nov 2020 19:20:30 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "104" + "x-envoy-upstream-service-time": "99" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json index 67686c2ffb4c8..39f8d65dd635c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatch.json @@ -11,9 +11,9 @@ "Content-Length": "297", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8dd4e13faba3d841b4258a9a8c82fb44-51a50bf48be7ac47-00", + "traceparent": "00-7923603b28651241b047ef1c73975ca8-10a5c42688ea9b49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a8ae17c802a6c3ea068b7f13c73b934a", @@ -55,13 +55,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "5ccf1ed8-a4b3-459c-90c7-d06aa86fab7b", + "apim-request-id": "fab281e7-413b-4d71-9378-4aff465a7efd", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:23 GMT", + "Date": "Mon, 16 Nov 2020 19:20:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json index 9cf2198645f90..21ccc980e74fe 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithInvalidDocumentBatchAsync.json @@ -11,9 +11,9 @@ "Content-Length": "297", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9209456e22670b4f861f0aa4ffddb07d-6da1bbb2c7bdd246-00", + "traceparent": "00-ba6c92d066f53e47a869d440dee536a7-a184b40b6531cf42-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "28b544e5b9a5cf3535ddef0fb0fd1d43", @@ -55,13 +55,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "a4922b0d-7dc3-44e5-a3bf-d5b492cdf2d8", + "apim-request-id": "a17de1b3-72b6-41be-9f48-08af18acc216", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:26 GMT", + "Date": "Mon, 16 Nov 2020 19:20:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json index bfccd14b40b9f..84f44718e1d7a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTest.json @@ -11,9 +11,9 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-290a5de36739f345b941446cf39505f7-90041514d2acc14b-00", + "traceparent": "00-9d9d22b7ca08e24ca5dabeb7c8c77727-5e90fac3f9f3be43-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0394cc79836b8e2a0617730333d293ff", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "e26f6597-fac3-4983-bd98-dcbc99e5908c", + "apim-request-id": "90332635-58b1-471f-94d2-5c37f92db992", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:23 GMT", + "Date": "Mon, 16 Nov 2020 19:20:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json index 36922a20ee003..d710d15f0d1db 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullIdTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e87895f821b43645828fd10f9dc97f90-abcbe6ed4b8f2742-00", + "traceparent": "00-0736b8e7eaaa154b89c42ae7965986fb-b58a9e83e5dc9c4b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d2a606a042fa292271e9e0fd82e50d07", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "eaaf07f8-610e-45da-b600-b619d9f06629", + "apim-request-id": "6457ba83-0b61-4def-9a1e-6b56ae18af4d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:26 GMT", + "Date": "Mon, 16 Nov 2020 19:20:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "5" + "x-envoy-upstream-service-time": "6" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json index efb11a9d40656..1a42a2262be7d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTest.json @@ -11,9 +11,9 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b90c944d1d14034a9aeaa8b73e7c009e-94d7bf99a7a2d842-00", + "traceparent": "00-ba77d2d5b79269418007616c0d488585-c3d7c53aab4d1942-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "143a14bc880cd41cfe9c98287e990fb6", @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "124cbbee-f07a-46bb-af6f-199d572fd45e", + "apim-request-id": "90ea2ae3-c7bc-4b7d-bd9b-3e9c43abe116", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:23 GMT", + "Date": "Mon, 16 Nov 2020 19:20:27 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json index f55a7b54eff83..aba343db240d1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithNullTextTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-97fcfb234061444f87ccd60ca457bdc6-6fef757f8cc0b345-00", + "traceparent": "00-cc672258c9ff4a4ea3627e48f842e1c1-f5efc44ea27ac64b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7afea088ca0a22de1ccfe4f56367e3ca", @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "150b27cd-7ceb-4dc0-9d29-8530021a44a1", + "apim-request-id": "e86dd5a7-255d-4fd7-b9ce-ef36b87e9b0e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:26 GMT", + "Date": "Mon, 16 Nov 2020 19:20:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "3" + "x-envoy-upstream-service-time": "2" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json index f103c1beed142..37813e51214ef 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-79d82e669664d74ea518bc4952ef50cb-d3504f735fd98c46-00", + "traceparent": "00-56ca265f0fe33649b49f4938b584b911-d376e9f983466f41-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3c7b09ea57a0a9f84c938c05ff06e377", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "dbee6de8-50ec-4134-93c7-c86da6125288", + "apim-request-id": "b75a6d74-0ff4-4f89-b283-aab0e6824559", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:24 GMT", + "Date": "Mon, 16 Nov 2020 19:20:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-envoy-upstream-service-time": "254" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json index 274132c9c4c83..d3e06e9b3221d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesBatchWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "188", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2c4feae3d6a00b4b982911124781b475-f08b8a4906a0ec48-00", + "traceparent": "00-e5d322e31095884a881d07f001bc09ae-2ab5827de542194b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c386dc48f454868243af3522ce69cb86", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "626616f2-97d9-4e53-833c-e2917eb884d3", + "apim-request-id": "e25aa125-894d-45e3-b560-543d7e73567c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:25:26 GMT", + "Date": "Mon, 16 Nov 2020 19:20:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "91" + "x-envoy-upstream-service-time": "96" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json index 9ab286203a47f..9e670348e87d1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTest.json @@ -11,9 +11,9 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e2eeec305d8cb44384a578db79a56716-e647f39f24be9d40-00", + "traceparent": "00-5cb57685f32b8e46b0bff32ebc729a08-ff211cf7c3807f44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "483a789eb74f49281b818c10882907cc", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f1858fdd-d92b-4395-9dbf-2f36056c0a1d", + "apim-request-id": "4665ca48-ac35-4fc5-8f99-05f5ae6e6684", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:24 GMT", + "Date": "Mon, 16 Nov 2020 19:20:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "70" + "x-envoy-upstream-service-time": "72" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json index e0002d462dd12..3d54e4529e4b9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8119f929f21e2c4aabb72712158ee8cd-052722ebef22b64d-00", + "traceparent": "00-b4bb7ea9ce6bef44b33ef4e540597054-1d7775f5d8648643-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "700659f3fdefe683be90e2b1951eb421", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "379e14d2-7fbd-4a07-adbc-45c0035f95d4", + "apim-request-id": "2a7fe5f4-9c3f-47ee-8aa0-4a30adeda28b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:26 GMT", + "Date": "Mon, 16 Nov 2020 19:20:31 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-envoy-upstream-service-time": "68" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json index 84f783a1ded8f..9f74e446cc9aa 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTest.json @@ -11,9 +11,9 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-31ed63e20d02254eb81b0847ee86cda3-6f21115e78730c42-00", + "traceparent": "00-bc81435220338d44a00e9cd5a2c8e222-072d676813d6f443-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fb4827053b6a1252c3b25be970bef0ff", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9bd3a677-28fa-4297-8561-ea091faf3358", + "apim-request-id": "3ca3da7a-16ea-43c1-b6a2-a979f7af14e5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:24 GMT", + "Date": "Mon, 16 Nov 2020 19:20:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "71" + "x-envoy-upstream-service-time": "62" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json index ff4e28a14a46d..1fd908d3f3b92 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithLanguageTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-46cbe675ec255741b111c0c6b231adbf-766eabc0ca1e554f-00", + "traceparent": "00-458c759a996a7440a983080acb12029c-efd484019453a949-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b55082b33b1fe734efdcbb82c7c8a31b", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "83dd89d3-0fa3-4a77-add8-fcc559478e8d", + "apim-request-id": "6b12f74e-53cb-43b1-9dd2-7b5114893387", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:27 GMT", + "Date": "Mon, 16 Nov 2020 19:20:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "60" + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json index db62891063391..74f57dc6d91ff 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTest.json @@ -11,9 +11,9 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-baf2b43e37be0d49b63abd8a8eb4124d-72ac00220903eb4e-00", + "traceparent": "00-68c546ee1d470a419b5f0c3e1fa79169-97e6f4efba9af340-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c580665e455e125e80a821d61e9c3c18", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f6411cca-fb2e-4a11-b845-9acbfcea45ab", + "apim-request-id": "2e24ee1d-f280-4eb3-ab9c-f9b7b9714048", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:24 GMT", + "Date": "Mon, 16 Nov 2020 19:20:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "128" + "x-envoy-upstream-service-time": "78" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json index 3eb3765ba84a7..935575210d28b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeEntitiesTests/RecognizeEntitiesWithSubCategoryTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a8d089e5a1eab5468de4167bc56ebef7-5a28476eabaa7d44-00", + "traceparent": "00-9cc80f76a4f2cb488cd27fb4ce3e12ff-a72401bbffe07947-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3b4b745166e69035ddd947884a09aa87", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "cad14f0c-cc82-4133-b1d4-85241af26e0f", + "apim-request-id": "53840ab9-dcc7-4fa3-be8f-0af26e4aaf9a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:25:27 GMT", + "Date": "Mon, 16 Nov 2020 19:20:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "69" + "x-envoy-upstream-service-time": "132" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json index 36f67f82c5c4c..cfaf6c534e162 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTest.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-282f5f2ac1c6f24a9226d1d8b7cc992f-9143187814a5374c-00", + "traceparent": "00-8ef4d1704dcc994aa1293ddbe12ffab2-9da03b3ea77efe48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1d7c0f7df9a5be46a7bf1d0b574c6095", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "fd30b37e-083c-4bba-9499-8ebcaa6d7142", - "Date": "Fri, 13 Nov 2020 22:25:27 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/527d2109-c20d-464d-8759-2cd7aa539fb8", + "apim-request-id": "18ed387c-b316-4f6b-8e1a-82c31c010987", + "Date": "Mon, 16 Nov 2020 19:20:32 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c9d8cecd-b1d5-4539-bc37-307a82ed020d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "96" + "x-envoy-upstream-service-time": "174" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/527d2109-c20d-464d-8759-2cd7aa539fb8?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c9d8cecd-b1d5-4539-bc37-307a82ed020d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9441bfd5d8fa13e75ab79017f0dbec22", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5eed65cc-9283-42e5-bdcc-29450fd69330", + "apim-request-id": "549a9c2b-2c33-42ea-af04-2cc3b2d7716d", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:27 GMT", + "Date": "Mon, 16 Nov 2020 19:20:32 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": "13" }, "ResponseBody": { - "jobId": "527d2109-c20d-464d-8759-2cd7aa539fb8", - "lastUpdateDateTime": "2020-11-13T22:25:27Z", - "createdDateTime": "2020-11-13T22:25:27Z", - "expirationDateTime": "2020-11-14T22:25:27Z", + "jobId": "c9d8cecd-b1d5-4539-bc37-307a82ed020d", + "lastUpdateDateTime": "2020-11-16T19:20:33Z", + "createdDateTime": "2020-11-16T19:20:32Z", + "expirationDateTime": "2020-11-17T19:20:32Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/527d2109-c20d-464d-8759-2cd7aa539fb8?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c9d8cecd-b1d5-4539-bc37-307a82ed020d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1f1476b4f8decd8416de12a15e37d599", @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b9952564-dcf6-47f9-b11e-0814af70878b", + "apim-request-id": "cd3473cb-885e-4ae9-8b9b-bb9ffe601531", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:29 GMT", + "Date": "Mon, 16 Nov 2020 19:20:34 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "13" }, "ResponseBody": { - "jobId": "527d2109-c20d-464d-8759-2cd7aa539fb8", - "lastUpdateDateTime": "2020-11-13T22:25:27Z", - "createdDateTime": "2020-11-13T22:25:27Z", - "expirationDateTime": "2020-11-14T22:25:27Z", + "jobId": "c9d8cecd-b1d5-4539-bc37-307a82ed020d", + "lastUpdateDateTime": "2020-11-16T19:20:33Z", + "createdDateTime": "2020-11-16T19:20:32Z", + "expirationDateTime": "2020-11-17T19:20:32Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/527d2109-c20d-464d-8759-2cd7aa539fb8?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c9d8cecd-b1d5-4539-bc37-307a82ed020d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -127,7 +127,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9fb8c34e36bba5c72869c2ed682ecdcc", @@ -136,25 +136,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "416a6908-b6e3-4a32-9093-9458b83b2c8b", + "apim-request-id": "90b92038-284a-4946-8ad3-781a9023977e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:30 GMT", + "Date": "Mon, 16 Nov 2020 19:20:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "527d2109-c20d-464d-8759-2cd7aa539fb8", - "lastUpdateDateTime": "2020-11-13T22:25:30Z", - "createdDateTime": "2020-11-13T22:25:27Z", - "expirationDateTime": "2020-11-14T22:25:27Z", - "status": "running", + "jobId": "c9d8cecd-b1d5-4539-bc37-307a82ed020d", + "lastUpdateDateTime": "2020-11-16T19:20:33Z", + "createdDateTime": "2020-11-16T19:20:32Z", + "expirationDateTime": "2020-11-17T19:20:32Z", + "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/527d2109-c20d-464d-8759-2cd7aa539fb8?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c9d8cecd-b1d5-4539-bc37-307a82ed020d?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -163,7 +163,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e057fbd34137dcb63a747e1bc545b423", @@ -172,19 +172,271 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4a9c70a5-1dfc-4a22-b8df-f9cd14b9cf02", + "apim-request-id": "9346cd3a-fbca-4042-8fe0-5bcee2be5e3e", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 16 Nov 2020 19:20:36 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": "c9d8cecd-b1d5-4539-bc37-307a82ed020d", + "lastUpdateDateTime": "2020-11-16T19:20:33Z", + "createdDateTime": "2020-11-16T19:20:32Z", + "expirationDateTime": "2020-11-17T19:20:32Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c9d8cecd-b1d5-4539-bc37-307a82ed020d?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2dc9f6e14c227d66ae6ff775359664e7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "aa02e989-50fd-4780-89cd-92462b6667ea", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 16 Nov 2020 19:20:38 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": "c9d8cecd-b1d5-4539-bc37-307a82ed020d", + "lastUpdateDateTime": "2020-11-16T19:20:33Z", + "createdDateTime": "2020-11-16T19:20:32Z", + "expirationDateTime": "2020-11-17T19:20:32Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c9d8cecd-b1d5-4539-bc37-307a82ed020d?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "63ce4611f5e00d620cdb6447b8abdfe2", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b483f1da-b091-4387-a004-ca176742a93d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 16 Nov 2020 19:20:39 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": "c9d8cecd-b1d5-4539-bc37-307a82ed020d", + "lastUpdateDateTime": "2020-11-16T19:20:33Z", + "createdDateTime": "2020-11-16T19:20:32Z", + "expirationDateTime": "2020-11-17T19:20:32Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c9d8cecd-b1d5-4539-bc37-307a82ed020d?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "710c9fb5a06586a995da31c84941a6a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "57eed3b8-2811-4f15-b52d-4bdee752b21d", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 16 Nov 2020 19:20:40 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": "c9d8cecd-b1d5-4539-bc37-307a82ed020d", + "lastUpdateDateTime": "2020-11-16T19:20:39Z", + "createdDateTime": "2020-11-16T19:20:32Z", + "expirationDateTime": "2020-11-17T19:20:32Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c9d8cecd-b1d5-4539-bc37-307a82ed020d?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "7f0a960f5177eb4394bc2147e71fc503", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "7d2907f7-508c-4d3a-9583-aa3eb361ef98", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 16 Nov 2020 19:20:41 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": "c9d8cecd-b1d5-4539-bc37-307a82ed020d", + "lastUpdateDateTime": "2020-11-16T19:20:39Z", + "createdDateTime": "2020-11-16T19:20:32Z", + "expirationDateTime": "2020-11-17T19:20:32Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c9d8cecd-b1d5-4539-bc37-307a82ed020d?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "96bf148ff28a70829c47ce06c49ac3ca", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "8fa9ea4e-185a-4c14-bb9a-7b0f47388173", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 16 Nov 2020 19:20:42 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": "c9d8cecd-b1d5-4539-bc37-307a82ed020d", + "lastUpdateDateTime": "2020-11-16T19:20:39Z", + "createdDateTime": "2020-11-16T19:20:32Z", + "expirationDateTime": "2020-11-17T19:20:32Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c9d8cecd-b1d5-4539-bc37-307a82ed020d?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "2137c0345fa0636a5c20dda87e619e75", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "858822a0-949a-49d6-a88b-df097217edc2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 16 Nov 2020 19:20:43 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": "c9d8cecd-b1d5-4539-bc37-307a82ed020d", + "lastUpdateDateTime": "2020-11-16T19:20:39Z", + "createdDateTime": "2020-11-16T19:20:32Z", + "expirationDateTime": "2020-11-17T19:20:32Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c9d8cecd-b1d5-4539-bc37-307a82ed020d?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "34382e1410811c1a1399e330833c27f9", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ca831d9c-f135-4bd7-9e30-22df31d960ae", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:31 GMT", + "Date": "Mon, 16 Nov 2020 19:20:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "46" + "x-envoy-upstream-service-time": "68" }, "ResponseBody": { - "jobId": "527d2109-c20d-464d-8759-2cd7aa539fb8", - "lastUpdateDateTime": "2020-11-13T22:25:30Z", - "createdDateTime": "2020-11-13T22:25:27Z", - "expirationDateTime": "2020-11-14T22:25:27Z", + "jobId": "c9d8cecd-b1d5-4539-bc37-307a82ed020d", + "lastUpdateDateTime": "2020-11-16T19:20:45Z", + "createdDateTime": "2020-11-16T19:20:32Z", + "expirationDateTime": "2020-11-17T19:20:32Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json index 6e9ccb187dc1c..0e237586e1a11 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-68943859c460874494fda351c8687f0f-57b11544b999c742-00", + "traceparent": "00-5143b372074edd4388c9a93f0f46e2c1-6d65395591fa0946-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "99aaf08b1c844fb2d7a9025199ec97e4", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "85d3730e-a703-431e-8445-638a79a7b775", - "Date": "Fri, 13 Nov 2020 22:26:02 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9423ebba-2377-477b-918e-e28c14ac8516", + "apim-request-id": "a015760d-b010-4748-ad83-e77aae9b403e", + "Date": "Mon, 16 Nov 2020 19:21:15 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0fc46f4a-69e5-4d01-a8bf-9eedf755af6f", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "76" + "x-envoy-upstream-service-time": "104" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9423ebba-2377-477b-918e-e28c14ac8516?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0fc46f4a-69e5-4d01-a8bf-9eedf755af6f?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a6eb27012d3e0231e64179d6488bf525", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "260ef1d9-3c96-4849-9d4b-e09cce49c2d4", + "apim-request-id": "53b4093c-7e39-446d-b218-50ef64f3ce34", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:02 GMT", + "Date": "Mon, 16 Nov 2020 19: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" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "9423ebba-2377-477b-918e-e28c14ac8516", - "lastUpdateDateTime": "2020-11-13T22:26:02Z", - "createdDateTime": "2020-11-13T22:26:02Z", - "expirationDateTime": "2020-11-14T22:26:02Z", + "jobId": "0fc46f4a-69e5-4d01-a8bf-9eedf755af6f", + "lastUpdateDateTime": "2020-11-16T19:21:16Z", + "createdDateTime": "2020-11-16T19:21:16Z", + "expirationDateTime": "2020-11-17T19:21:16Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9423ebba-2377-477b-918e-e28c14ac8516?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0fc46f4a-69e5-4d01-a8bf-9eedf755af6f?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4d12280124119b66ed27d10225884cad", @@ -100,61 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2d053032-64df-4ed4-a987-7ad85078d734", + "apim-request-id": "41cf6ddd-a4cf-4ace-9a8c-a37bab4e9c4b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:03 GMT", + "Date": "Mon, 16 Nov 2020 19:21:16 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": "9423ebba-2377-477b-918e-e28c14ac8516", - "lastUpdateDateTime": "2020-11-13T22:26:02Z", - "createdDateTime": "2020-11-13T22:26:02Z", - "expirationDateTime": "2020-11-14T22:26:02Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9423ebba-2377-477b-918e-e28c14ac8516?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c1281b11742f5d97bfa8b242a2dc074b", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "72803a78-dc19-4880-a028-0c7bb85f3391", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:04 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": "9423ebba-2377-477b-918e-e28c14ac8516", - "lastUpdateDateTime": "2020-11-13T22:26:05Z", - "createdDateTime": "2020-11-13T22:26:02Z", - "expirationDateTime": "2020-11-14T22:26:02Z", + "jobId": "0fc46f4a-69e5-4d01-a8bf-9eedf755af6f", + "lastUpdateDateTime": "2020-11-16T19:21:17Z", + "createdDateTime": "2020-11-16T19:21:16Z", + "expirationDateTime": "2020-11-17T19:21:16Z", "status": "running", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/9423ebba-2377-477b-918e-e28c14ac8516?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0fc46f4a-69e5-4d01-a8bf-9eedf755af6f?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -163,28 +127,28 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "714fdcb449dadcd2c04fb8165b2fdd5d", + "x-ms-client-request-id": "c1281b11742f5d97bfa8b242a2dc074b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eb180a60-4b1e-43ca-8d99-1d149d9d0e74", + "apim-request-id": "fb4f072f-94c7-4fc4-96bb-7e57a084810a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:06 GMT", + "Date": "Mon, 16 Nov 2020 19:21:18 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "62" + "x-envoy-upstream-service-time": "55" }, "ResponseBody": { - "jobId": "9423ebba-2377-477b-918e-e28c14ac8516", - "lastUpdateDateTime": "2020-11-13T22:26:05Z", - "createdDateTime": "2020-11-13T22:26:02Z", - "expirationDateTime": "2020-11-14T22:26:02Z", + "jobId": "0fc46f4a-69e5-4d01-a8bf-9eedf755af6f", + "lastUpdateDateTime": "2020-11-16T19:21:17Z", + "createdDateTime": "2020-11-16T19:21:16Z", + "expirationDateTime": "2020-11-17T19:21:16Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json index 2a5aab6a24503..42bc4a3df03f9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a4e6a5b6e25bea4d9a0653cd40415c00-4e043fc2dc3e094a-00", + "traceparent": "00-ed61d0579b9b064dbe7b25f4c2452813-609db1b7ace2704a-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "87697e405fe3a2c8182b48340c37e5c5", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "ddf73e35-8b5c-40a7-b825-26e2bf82d822", - "Date": "Fri, 13 Nov 2020 22:25:31 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/f6b10c2b-9fef-4a0d-b05b-cc37b7336727", + "apim-request-id": "4a561235-ea40-4223-a5f7-a85299372840", + "Date": "Mon, 16 Nov 2020 19:20:45 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c0b7c7f7-3a22-4c4f-9688-97038220da67", "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": "93" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/f6b10c2b-9fef-4a0d-b05b-cc37b7336727?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c0b7c7f7-3a22-4c4f-9688-97038220da67?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f1abd77b68195cb092c7f20f1aa7cc84", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e076cdb8-5480-4046-95ab-5285f79662d2", + "apim-request-id": "213c02fa-06f9-4748-9290-51cc8d5c2ad2", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:31 GMT", + "Date": "Mon, 16 Nov 2020 19:20:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "f6b10c2b-9fef-4a0d-b05b-cc37b7336727", - "lastUpdateDateTime": "2020-11-13T22:25:32Z", - "createdDateTime": "2020-11-13T22:25:32Z", - "expirationDateTime": "2020-11-14T22:25:32Z", + "jobId": "c0b7c7f7-3a22-4c4f-9688-97038220da67", + "lastUpdateDateTime": "2020-11-16T19:20:45Z", + "createdDateTime": "2020-11-16T19:20:45Z", + "expirationDateTime": "2020-11-17T19:20:45Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/f6b10c2b-9fef-4a0d-b05b-cc37b7336727?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c0b7c7f7-3a22-4c4f-9688-97038220da67?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "be37acebd508d7a1d3d78987b19e23cf", @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "29fcd326-0f81-4059-a13d-5386e7d14e47", + "apim-request-id": "237f0833-763f-4d78-a609-1232654407f0", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:33 GMT", + "Date": "Mon, 16 Nov 2020 19:20:47 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": "11" }, "ResponseBody": { - "jobId": "f6b10c2b-9fef-4a0d-b05b-cc37b7336727", - "lastUpdateDateTime": "2020-11-13T22:25:32Z", - "createdDateTime": "2020-11-13T22:25:32Z", - "expirationDateTime": "2020-11-14T22:25:32Z", + "jobId": "c0b7c7f7-3a22-4c4f-9688-97038220da67", + "lastUpdateDateTime": "2020-11-16T19:20:45Z", + "createdDateTime": "2020-11-16T19:20:45Z", + "expirationDateTime": "2020-11-17T19:20:45Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/f6b10c2b-9fef-4a0d-b05b-cc37b7336727?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c0b7c7f7-3a22-4c4f-9688-97038220da67?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -127,7 +127,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b34190e23bc3d86ecd0cf51c6cb88870", @@ -136,25 +136,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "07996c0a-6f07-4727-b2b0-836f110c5e12", + "apim-request-id": "194ff12d-2d72-4b2c-ad46-2e13a2a670b5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:34 GMT", + "Date": "Mon, 16 Nov 2020 19:20:48 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": "9" }, "ResponseBody": { - "jobId": "f6b10c2b-9fef-4a0d-b05b-cc37b7336727", - "lastUpdateDateTime": "2020-11-13T22:25:32Z", - "createdDateTime": "2020-11-13T22:25:32Z", - "expirationDateTime": "2020-11-14T22:25:32Z", - "status": "notStarted", + "jobId": "c0b7c7f7-3a22-4c4f-9688-97038220da67", + "lastUpdateDateTime": "2020-11-16T19:20:47Z", + "createdDateTime": "2020-11-16T19:20:45Z", + "expirationDateTime": "2020-11-17T19:20:45Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/f6b10c2b-9fef-4a0d-b05b-cc37b7336727?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c0b7c7f7-3a22-4c4f-9688-97038220da67?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -163,7 +163,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6048c45f2600a6bd35d41e41de29aaf3", @@ -172,19 +172,127 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "12e9e63a-f5d9-4366-9c57-e435ead8fd72", + "apim-request-id": "7b6427da-f800-41ec-a021-d07976d3ac70", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 16 Nov 2020 19:20:49 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": "c0b7c7f7-3a22-4c4f-9688-97038220da67", + "lastUpdateDateTime": "2020-11-16T19:20:47Z", + "createdDateTime": "2020-11-16T19:20:45Z", + "expirationDateTime": "2020-11-17T19:20:45Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c0b7c7f7-3a22-4c4f-9688-97038220da67?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "892d23a31966b0c03e5ff0fbdf856a1a", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "b05cc0bc-6660-4fd0-ba52-0bc04e73b5d2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 16 Nov 2020 19:20:50 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": "c0b7c7f7-3a22-4c4f-9688-97038220da67", + "lastUpdateDateTime": "2020-11-16T19:20:47Z", + "createdDateTime": "2020-11-16T19:20:45Z", + "expirationDateTime": "2020-11-17T19:20:45Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c0b7c7f7-3a22-4c4f-9688-97038220da67?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "ed28194fc355bbcfd39b7def1d2cf9a4", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "d996a6ba-7096-419d-a1ad-51c82addf8bb", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 16 Nov 2020 19:20:51 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": "c0b7c7f7-3a22-4c4f-9688-97038220da67", + "lastUpdateDateTime": "2020-11-16T19:20:47Z", + "createdDateTime": "2020-11-16T19:20:45Z", + "expirationDateTime": "2020-11-17T19:20:45Z", + "status": "running", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c0b7c7f7-3a22-4c4f-9688-97038220da67?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "49780162fe8b460a049822a036c1c6b0", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "2a1acaec-4471-4581-9f9e-b4d6528ac5f1", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:36 GMT", + "Date": "Mon, 16 Nov 2020 19:20:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "283" + "x-envoy-upstream-service-time": "57" }, "ResponseBody": { - "jobId": "f6b10c2b-9fef-4a0d-b05b-cc37b7336727", - "lastUpdateDateTime": "2020-11-13T22:25:35Z", - "createdDateTime": "2020-11-13T22:25:32Z", - "expirationDateTime": "2020-11-14T22:25:32Z", + "jobId": "c0b7c7f7-3a22-4c4f-9688-97038220da67", + "lastUpdateDateTime": "2020-11-16T19:20:52Z", + "createdDateTime": "2020-11-16T19:20:45Z", + "expirationDateTime": "2020-11-17T19:20:45Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json index 5585d01740294..6fd51ede705b9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-91a25dbbb0dc5d4d9ece14e8318f5a59-22a4982bd87a1342-00", + "traceparent": "00-fe822c6456a4ac41a6e981cf0b574790-4c38971913cb4445-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "da8d96a331a03c42a6c41c2d9f512b98", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "8fd9d2b4-a7f1-41be-a2c5-60062622c0bc", - "Date": "Fri, 13 Nov 2020 22:26:06 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/cd1d8f89-3b4c-4455-a9e2-4bf7c5b3b64f", + "apim-request-id": "08421def-cfc7-45a9-b48f-efeb7d9776af", + "Date": "Mon, 16 Nov 2020 19:21:18 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/537d6069-d0bf-4965-92c6-42a6e9e488cb", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "104" + "x-envoy-upstream-service-time": "94" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/cd1d8f89-3b4c-4455-a9e2-4bf7c5b3b64f?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/537d6069-d0bf-4965-92c6-42a6e9e488cb?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a36dbbc9f92b427287ffda298bd01507", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "05e9afe7-6653-4b7b-8d5c-668284f511f6", + "apim-request-id": "4d69ef6f-4b35-4de0-9c58-2903dcf34770", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:06 GMT", + "Date": "Mon, 16 Nov 2020 19:21:18 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": "cd1d8f89-3b4c-4455-a9e2-4bf7c5b3b64f", - "lastUpdateDateTime": "2020-11-13T22:26:07Z", - "createdDateTime": "2020-11-13T22:26:06Z", - "expirationDateTime": "2020-11-14T22:26:06Z", + "jobId": "537d6069-d0bf-4965-92c6-42a6e9e488cb", + "lastUpdateDateTime": "2020-11-16T19:21:19Z", + "createdDateTime": "2020-11-16T19:21:19Z", + "expirationDateTime": "2020-11-17T19:21:19Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/cd1d8f89-3b4c-4455-a9e2-4bf7c5b3b64f?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/537d6069-d0bf-4965-92c6-42a6e9e488cb?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "86c4abbaba50d8ace0d0fc3795e01d2c", @@ -100,91 +100,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6587cb67-e334-42fc-b037-4fd2f352d985", + "apim-request-id": "e4bb90d0-f215-46e1-be09-138584904044", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:07 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": "cd1d8f89-3b4c-4455-a9e2-4bf7c5b3b64f", - "lastUpdateDateTime": "2020-11-13T22:26:07Z", - "createdDateTime": "2020-11-13T22:26:06Z", - "expirationDateTime": "2020-11-14T22:26:06Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/cd1d8f89-3b4c-4455-a9e2-4bf7c5b3b64f?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "97afe1fd518fa965244a53a05719b0d6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c6bf8e04-8753-4001-8c64-c11a164a4fa4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26: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": "cd1d8f89-3b4c-4455-a9e2-4bf7c5b3b64f", - "lastUpdateDateTime": "2020-11-13T22:26:07Z", - "createdDateTime": "2020-11-13T22:26:06Z", - "expirationDateTime": "2020-11-14T22:26:06Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/cd1d8f89-3b4c-4455-a9e2-4bf7c5b3b64f?showStats=true", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f47314aea48d0f480e95c35afd3bada6", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "37de9d71-b720-450d-925d-1d302a13d875", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:10 GMT", + "Date": "Mon, 16 Nov 2020 19:21:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "52" }, "ResponseBody": { - "jobId": "cd1d8f89-3b4c-4455-a9e2-4bf7c5b3b64f", - "lastUpdateDateTime": "2020-11-13T22:26:10Z", - "createdDateTime": "2020-11-13T22:26:06Z", - "expirationDateTime": "2020-11-14T22:26:06Z", + "jobId": "537d6069-d0bf-4965-92c6-42a6e9e488cb", + "lastUpdateDateTime": "2020-11-16T19:21:19Z", + "createdDateTime": "2020-11-16T19:21:19Z", + "expirationDateTime": "2020-11-17T19:21:19Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json index ec8695f9d8105..be423f88fcfe4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTest.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c0999da543c1154ba0aa671aaeff51e4-11a39767d8ad0246-00", + "traceparent": "00-5f6cdbec036fdb478a0d8d9805b2bd7f-af2c3e71d6117242-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0d63e53cea7530898179e7904fedbae6", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "46c80511-dbda-4283-85dd-4023ef259a5e", - "Date": "Fri, 13 Nov 2020 22:25:36 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ad5eda7d-814e-4985-8fdc-104f884a0062", + "apim-request-id": "56d84a7c-0c90-49aa-a233-8a4960f34bfe", + "Date": "Mon, 16 Nov 2020 19:20:52 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c6faf8c6-bc19-41d9-8ead-778f6bfe769a", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "76" + "x-envoy-upstream-service-time": "108" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ad5eda7d-814e-4985-8fdc-104f884a0062?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c6faf8c6-bc19-41d9-8ead-778f6bfe769a?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7a482533d010f661d7a330e46a9c020c", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "85ce384d-6303-47db-b532-8c8f06b9b934", + "apim-request-id": "6ecb0c7e-6d58-4499-9e65-b32f6592efbd", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:36 GMT", + "Date": "Mon, 16 Nov 2020 19:20:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "ad5eda7d-814e-4985-8fdc-104f884a0062", - "lastUpdateDateTime": "2020-11-13T22:25:36Z", - "createdDateTime": "2020-11-13T22:25:36Z", - "expirationDateTime": "2020-11-14T22:25:36Z", + "jobId": "c6faf8c6-bc19-41d9-8ead-778f6bfe769a", + "lastUpdateDateTime": "2020-11-16T19:20:53Z", + "createdDateTime": "2020-11-16T19:20:53Z", + "expirationDateTime": "2020-11-17T19:20:53Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ad5eda7d-814e-4985-8fdc-104f884a0062?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c6faf8c6-bc19-41d9-8ead-778f6bfe769a?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d4480f3cd87c0175cc930cf584ae8a9b", @@ -100,91 +100,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2235f473-3faf-4e59-904b-dbe2c353fb0e", + "apim-request-id": "e7d0f63e-68d1-4bd8-ae9f-87f99c95a60f", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:38 GMT", + "Date": "Mon, 16 Nov 2020 19:20:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "11" + "x-envoy-upstream-service-time": "56" }, "ResponseBody": { - "jobId": "ad5eda7d-814e-4985-8fdc-104f884a0062", - "lastUpdateDateTime": "2020-11-13T22:25:36Z", - "createdDateTime": "2020-11-13T22:25:36Z", - "expirationDateTime": "2020-11-14T22:25:36Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ad5eda7d-814e-4985-8fdc-104f884a0062?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "00da5d97d0326c02836c36d1baa4c6e5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "4828ef33-62e3-4ae9-b2c9-8bbd64aca6f4", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:39 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": "ad5eda7d-814e-4985-8fdc-104f884a0062", - "lastUpdateDateTime": "2020-11-13T22:25:36Z", - "createdDateTime": "2020-11-13T22:25:36Z", - "expirationDateTime": "2020-11-14T22:25:36Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ad5eda7d-814e-4985-8fdc-104f884a0062?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "4053da77e5a55a69b046ae7dc36c7228", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "d371de6f-7930-44e1-8822-8a466e2a17b2", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:40 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" - }, - "ResponseBody": { - "jobId": "ad5eda7d-814e-4985-8fdc-104f884a0062", - "lastUpdateDateTime": "2020-11-13T22:25:40Z", - "createdDateTime": "2020-11-13T22:25:36Z", - "expirationDateTime": "2020-11-14T22:25:36Z", + "jobId": "c6faf8c6-bc19-41d9-8ead-778f6bfe769a", + "lastUpdateDateTime": "2020-11-16T19:20:54Z", + "createdDateTime": "2020-11-16T19:20:53Z", + "expirationDateTime": "2020-11-17T19:20:53Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json index 81f58bed5ff4f..9d1166436ab55 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-dd1dc05a46a6dd469a41143dfc7414c3-a74a764b41a85e40-00", + "traceparent": "00-574fde99e35a5c448b13138a291398b5-555404a8493d9e46-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "17e898e3099143136b2e35c82964efd9", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "dc74b6c4-22b3-4cb4-8f17-c265e9d73c55", - "Date": "Fri, 13 Nov 2020 22:26:10 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ac9ac857-e71f-4297-9394-09fb4a5fcf05", + "apim-request-id": "0cbefbc3-8a59-4088-9110-82850897107d", + "Date": "Mon, 16 Nov 2020 19:21:20 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ba59c22b-2312-43d2-a02e-39a0f1082ec9", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "78" + "x-envoy-upstream-service-time": "84" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ac9ac857-e71f-4297-9394-09fb4a5fcf05?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ba59c22b-2312-43d2-a02e-39a0f1082ec9?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7dd0fa2b947b788e4d51b90a9e064f06", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9133ab64-245e-436d-9646-c358e6bfd462", + "apim-request-id": "7d5815c7-1eb8-4430-a555-e1ca704c3f12", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:10 GMT", + "Date": "Mon, 16 Nov 2020 19:21:20 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "ac9ac857-e71f-4297-9394-09fb4a5fcf05", - "lastUpdateDateTime": "2020-11-13T22:26:11Z", - "createdDateTime": "2020-11-13T22:26:11Z", - "expirationDateTime": "2020-11-14T22:26:11Z", + "jobId": "ba59c22b-2312-43d2-a02e-39a0f1082ec9", + "lastUpdateDateTime": "2020-11-16T19:21:21Z", + "createdDateTime": "2020-11-16T19:21:20Z", + "expirationDateTime": "2020-11-17T19:21:20Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ac9ac857-e71f-4297-9394-09fb4a5fcf05?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ba59c22b-2312-43d2-a02e-39a0f1082ec9?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ddd7cae644b1aa3bb79fb4ecc872f743", @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e6a4684b-52ba-4163-a2e3-72bcd6e480de", + "apim-request-id": "33eecdb3-2dac-4866-b74b-815639a19036", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:12 GMT", + "Date": "Mon, 16 Nov 2020 19:21:22 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": "9" }, "ResponseBody": { - "jobId": "ac9ac857-e71f-4297-9394-09fb4a5fcf05", - "lastUpdateDateTime": "2020-11-13T22:26:11Z", - "createdDateTime": "2020-11-13T22:26:11Z", - "expirationDateTime": "2020-11-14T22:26:11Z", - "status": "notStarted", + "jobId": "ba59c22b-2312-43d2-a02e-39a0f1082ec9", + "lastUpdateDateTime": "2020-11-16T19:21:22Z", + "createdDateTime": "2020-11-16T19:21:20Z", + "expirationDateTime": "2020-11-17T19:21:20Z", + "status": "running", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ac9ac857-e71f-4297-9394-09fb4a5fcf05?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ba59c22b-2312-43d2-a02e-39a0f1082ec9?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -127,7 +127,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3c1db919135b4f3e0970ca3f4f09a565", @@ -136,91 +136,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "617fcc45-dc6e-46cb-b8a7-8957e745eff0", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:13 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": "ac9ac857-e71f-4297-9394-09fb4a5fcf05", - "lastUpdateDateTime": "2020-11-13T22:26:11Z", - "createdDateTime": "2020-11-13T22:26:11Z", - "expirationDateTime": "2020-11-14T22:26:11Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ac9ac857-e71f-4297-9394-09fb4a5fcf05?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "5fe22edf128ce627be26c6dcdfa2b0da", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e85fabe8-2edb-44d8-a49a-7a2446ef0620", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:15 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": "ac9ac857-e71f-4297-9394-09fb4a5fcf05", - "lastUpdateDateTime": "2020-11-13T22:26:11Z", - "createdDateTime": "2020-11-13T22:26:11Z", - "expirationDateTime": "2020-11-14T22:26:11Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ac9ac857-e71f-4297-9394-09fb4a5fcf05?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "e4f1765912e9d2ab8c88d3417afc5bae", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "8f81e49b-cecb-42ba-b02a-262c29b9f1c8", + "apim-request-id": "37040255-8444-4220-8f53-3979ae76eaad", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:16 GMT", + "Date": "Mon, 16 Nov 2020 19:21:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" + "x-envoy-upstream-service-time": "41" }, "ResponseBody": { - "jobId": "ac9ac857-e71f-4297-9394-09fb4a5fcf05", - "lastUpdateDateTime": "2020-11-13T22:26:15Z", - "createdDateTime": "2020-11-13T22:26:11Z", - "expirationDateTime": "2020-11-14T22:26:11Z", + "jobId": "ba59c22b-2312-43d2-a02e-39a0f1082ec9", + "lastUpdateDateTime": "2020-11-16T19:21:22Z", + "createdDateTime": "2020-11-16T19:21:20Z", + "expirationDateTime": "2020-11-17T19:21:20Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json index c976bd2e8d823..7125599682f9d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTest.json @@ -11,9 +11,9 @@ "Content-Length": "260", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-777e21b77cc25f499d68ee7260d4930f-f68b12514cbde940-00", + "traceparent": "00-39bc8d9c712e0d4e8fd5053c033d76c0-14b17ef7a757c543-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ed679d93c08fe171a9b236aaa757046a", @@ -40,18 +40,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "df999d6a-468c-461f-aa09-a5912fdade26", - "Date": "Fri, 13 Nov 2020 22:25:40 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/222e33c0-cd10-40b7-8a34-d2d30ed251e0", + "apim-request-id": "61c3a11d-9d38-4457-9a64-efa94d011aa7", + "Date": "Mon, 16 Nov 2020 19:20:54 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/97068e35-7d81-4591-ad84-3836b4521d69", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "110" + "x-envoy-upstream-service-time": "130" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/222e33c0-cd10-40b7-8a34-d2d30ed251e0?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/97068e35-7d81-4591-ad84-3836b4521d69?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -60,7 +60,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8ac7fae8cf64a9249598acb3531ad44c", @@ -69,25 +69,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "70dceb43-654f-480a-85d4-f3a4ce83f839", + "apim-request-id": "0fe1a5f4-9cfa-44fa-b1fb-ad2cec9d0871", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:40 GMT", + "Date": "Mon, 16 Nov 2020 19: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": "8" }, "ResponseBody": { - "jobId": "222e33c0-cd10-40b7-8a34-d2d30ed251e0", - "lastUpdateDateTime": "2020-11-13T22:25:40Z", - "createdDateTime": "2020-11-13T22:25:40Z", - "expirationDateTime": "2020-11-14T22:25:40Z", + "jobId": "97068e35-7d81-4591-ad84-3836b4521d69", + "lastUpdateDateTime": "2020-11-16T19:20:55Z", + "createdDateTime": "2020-11-16T19:20:55Z", + "expirationDateTime": "2020-11-17T19:20:55Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/222e33c0-cd10-40b7-8a34-d2d30ed251e0?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/97068e35-7d81-4591-ad84-3836b4521d69?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -96,7 +96,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e1e35bcd7fe4ca895c5026b1fcf89877", @@ -105,19 +105,55 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0b6ff565-1b68-4e83-b827-0a3a2bda354f", + "apim-request-id": "1a99c201-7579-4c2f-a9e6-42c3fb8009a6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:41 GMT", + "Date": "Mon, 16 Nov 2020 19:20:56 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { - "jobId": "222e33c0-cd10-40b7-8a34-d2d30ed251e0", - "lastUpdateDateTime": "2020-11-13T22:25:41Z", - "createdDateTime": "2020-11-13T22:25:40Z", - "expirationDateTime": "2020-11-14T22:25:40Z", + "jobId": "97068e35-7d81-4591-ad84-3836b4521d69", + "lastUpdateDateTime": "2020-11-16T19:20:55Z", + "createdDateTime": "2020-11-16T19:20:55Z", + "expirationDateTime": "2020-11-17T19:20:55Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/97068e35-7d81-4591-ad84-3836b4521d69?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "42e053ff1beac39b78bd58f714be8d8f", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3db5cc0b-387c-4d82-aa16-b63d960862e2", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 16 Nov 2020 19:20:57 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "62" + }, + "ResponseBody": { + "jobId": "97068e35-7d81-4591-ad84-3836b4521d69", + "lastUpdateDateTime": "2020-11-16T19:20:57Z", + "createdDateTime": "2020-11-16T19:20:55Z", + "expirationDateTime": "2020-11-17T19:20:55Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json index 64d3655440bf3..e029d4d3db71e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithErrorTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "260", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f33ff4cf98e08242b9579c334b26ce65-d8216035067b524b-00", + "traceparent": "00-f4f3ef6544ef9249bd7b098777b4e171-eda30961886e8145-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4352d8dd6e2ff74a3743e20989f20949", @@ -40,18 +40,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "4cde0168-8c00-412b-9cbf-9661ab99589c", - "Date": "Fri, 13 Nov 2020 22:26:16 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ac6bbf57-7ba1-4b46-ae7b-15308b47b05a", + "apim-request-id": "98654b3d-49ec-49b4-9bea-1728153f3a65", + "Date": "Mon, 16 Nov 2020 19:21:23 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/20e529a2-656e-468b-8080-e01b3b46c3d6", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "86" + "x-envoy-upstream-service-time": "119" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ac6bbf57-7ba1-4b46-ae7b-15308b47b05a?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/20e529a2-656e-468b-8080-e01b3b46c3d6?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -60,7 +60,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b850713105701863d1b6a799a800b67b", @@ -69,25 +69,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f0df95fb-c9b4-4d49-9d8a-7102e16720f4", + "apim-request-id": "c99f2ce1-7ddd-4205-b2bc-b654ecaa07eb", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:16 GMT", + "Date": "Mon, 16 Nov 2020 19:21:23 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "ac6bbf57-7ba1-4b46-ae7b-15308b47b05a", - "lastUpdateDateTime": "2020-11-13T22:26:16Z", - "createdDateTime": "2020-11-13T22:26:16Z", - "expirationDateTime": "2020-11-14T22:26:16Z", + "jobId": "20e529a2-656e-468b-8080-e01b3b46c3d6", + "lastUpdateDateTime": "2020-11-16T19:21:24Z", + "createdDateTime": "2020-11-16T19:21:23Z", + "expirationDateTime": "2020-11-17T19:21:23Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ac6bbf57-7ba1-4b46-ae7b-15308b47b05a?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/20e529a2-656e-468b-8080-e01b3b46c3d6?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -96,7 +96,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "7b6997a8eb08a1c0115e8728d43fe710", @@ -105,127 +105,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1dc6cf8d-386d-4e48-9b66-b1950c1a490c", + "apim-request-id": "bd3c10b2-df63-4df2-ad79-1749519e6cd5", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:17 GMT", + "Date": "Mon, 16 Nov 2020 19: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": "53" }, "ResponseBody": { - "jobId": "ac6bbf57-7ba1-4b46-ae7b-15308b47b05a", - "lastUpdateDateTime": "2020-11-13T22:26:16Z", - "createdDateTime": "2020-11-13T22:26:16Z", - "expirationDateTime": "2020-11-14T22:26:16Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ac6bbf57-7ba1-4b46-ae7b-15308b47b05a?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "c4c517d3dcd1d7de74397279c7b14e37", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "202f1ce4-39d3-41aa-bf1c-0bcae7115d1e", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:19 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": "ac6bbf57-7ba1-4b46-ae7b-15308b47b05a", - "lastUpdateDateTime": "2020-11-13T22:26:16Z", - "createdDateTime": "2020-11-13T22:26:16Z", - "expirationDateTime": "2020-11-14T22:26:16Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ac6bbf57-7ba1-4b46-ae7b-15308b47b05a?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "f260678d8d894640b1aea7117e3b4491", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3eca3fff-c647-4183-8c95-e1ccb2c2e150", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:20 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": "ac6bbf57-7ba1-4b46-ae7b-15308b47b05a", - "lastUpdateDateTime": "2020-11-13T22:26:20Z", - "createdDateTime": "2020-11-13T22:26:16Z", - "expirationDateTime": "2020-11-14T22:26:16Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/ac6bbf57-7ba1-4b46-ae7b-15308b47b05a?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "90c597cef13bcca9b99106ce7947da60", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "c5e94b79-b689-4040-bbc6-1e2dff816351", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:21 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "61" - }, - "ResponseBody": { - "jobId": "ac6bbf57-7ba1-4b46-ae7b-15308b47b05a", - "lastUpdateDateTime": "2020-11-13T22:26:20Z", - "createdDateTime": "2020-11-13T22:26:16Z", - "expirationDateTime": "2020-11-14T22:26:16Z", + "jobId": "20e529a2-656e-468b-8080-e01b3b46c3d6", + "lastUpdateDateTime": "2020-11-16T19:21:24Z", + "createdDateTime": "2020-11-16T19:21:23Z", + "expirationDateTime": "2020-11-17T19:21:23Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPagination.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPagination.json index 68c7fe9487ed2..714594346cb42 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPagination.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPagination.json @@ -11,9 +11,9 @@ "Content-Length": "1395", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d8a7b243dce5154db2d1c4b419782d99-6a86856bc3c7684f-00", + "traceparent": "00-adf2854dc5aca147bf58391d18973dde-3a3066aa705a9c41-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "3d690e65097214462e3994d44b026896", @@ -75,18 +75,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "6c1c4c74-f3ef-47bf-bad5-1f2bbadb7c5c", - "Date": "Fri, 13 Nov 2020 22:25:42 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9bcf055-62ea-4ad1-a5e2-c5daa58029d2", + "apim-request-id": "c1125ce7-90a8-4c90-a4db-ec9f8054a209", + "Date": "Mon, 16 Nov 2020 19:20:57 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9d55072-278a-4d1e-9896-3c24a4881ef7", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "211" + "x-envoy-upstream-service-time": "188" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9bcf055-62ea-4ad1-a5e2-c5daa58029d2?$top=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9d55072-278a-4d1e-9896-3c24a4881ef7?$top=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -95,7 +95,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "60014c42eec829d6c5965295103c077f", @@ -104,25 +104,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "41615cc7-7297-45c7-9f9f-8d3f2a922892", + "apim-request-id": "cff8fee7-0a66-4e31-994a-656d6acf4145", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:42 GMT", + "Date": "Mon, 16 Nov 2020 19:20:57 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": "b9bcf055-62ea-4ad1-a5e2-c5daa58029d2", - "lastUpdateDateTime": "2020-11-13T22:25:42Z", - "createdDateTime": "2020-11-13T22:25:42Z", - "expirationDateTime": "2020-11-14T22:25:42Z", + "jobId": "b9d55072-278a-4d1e-9896-3c24a4881ef7", + "lastUpdateDateTime": "2020-11-16T19:20:58Z", + "createdDateTime": "2020-11-16T19:20:58Z", + "expirationDateTime": "2020-11-17T19:20:58Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9bcf055-62ea-4ad1-a5e2-c5daa58029d2?$top=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9d55072-278a-4d1e-9896-3c24a4881ef7?$top=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -131,7 +131,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e6e71e1943fddaaba6e9191ddcfc8d38", @@ -140,61 +140,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7ce68def-3c66-4c0d-9c6c-0ee8ed9dac4c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:44 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": "b9bcf055-62ea-4ad1-a5e2-c5daa58029d2", - "lastUpdateDateTime": "2020-11-13T22:25:42Z", - "createdDateTime": "2020-11-13T22:25:42Z", - "expirationDateTime": "2020-11-14T22:25:42Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9bcf055-62ea-4ad1-a5e2-c5daa58029d2?$top=2\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "6bedcd03a2427620384078dbb7b003f2", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "be31cd5d-352c-4a10-b633-dfec263ba61c", + "apim-request-id": "851831bb-e6bb-4cba-b815-36529ab4ee55", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:45 GMT", + "Date": "Mon, 16 Nov 2020 19:20:58 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": "10" }, "ResponseBody": { - "jobId": "b9bcf055-62ea-4ad1-a5e2-c5daa58029d2", - "lastUpdateDateTime": "2020-11-13T22:25:45Z", - "createdDateTime": "2020-11-13T22:25:42Z", - "expirationDateTime": "2020-11-14T22:25:42Z", + "jobId": "b9d55072-278a-4d1e-9896-3c24a4881ef7", + "lastUpdateDateTime": "2020-11-16T19:20:59Z", + "createdDateTime": "2020-11-16T19:20:58Z", + "expirationDateTime": "2020-11-17T19:20:58Z", "status": "running", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9bcf055-62ea-4ad1-a5e2-c5daa58029d2?$top=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9d55072-278a-4d1e-9896-3c24a4881ef7?$top=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -203,28 +167,28 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "2cba1531821bff99a027b9ded5b94dc9", + "x-ms-client-request-id": "6bedcd03a2427620384078dbb7b003f2", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "20c98e76-d238-4131-ae7b-de5d8c7644b5", + "apim-request-id": "e8085858-8f0e-4db3-bab3-f72102bfbbcc", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:46 GMT", + "Date": "Mon, 16 Nov 2020 19:21:01 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": "65" }, "ResponseBody": { - "jobId": "b9bcf055-62ea-4ad1-a5e2-c5daa58029d2", - "lastUpdateDateTime": "2020-11-13T22:25:46Z", - "createdDateTime": "2020-11-13T22:25:42Z", - "expirationDateTime": "2020-11-14T22:25:42Z", + "jobId": "b9d55072-278a-4d1e-9896-3c24a4881ef7", + "lastUpdateDateTime": "2020-11-16T19:21:00Z", + "createdDateTime": "2020-11-16T19:20:58Z", + "expirationDateTime": "2020-11-17T19:20:58Z", "status": "succeeded", "errors": [], "results": { @@ -473,11 +437,11 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9bcf055-62ea-4ad1-a5e2-c5daa58029d2?$skip=2\u0026$top=2" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9d55072-278a-4d1e-9896-3c24a4881ef7?$skip=2\u0026$top=2" } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9bcf055-62ea-4ad1-a5e2-c5daa58029d2?$top=2\u0026$skip=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9d55072-278a-4d1e-9896-3c24a4881ef7?$top=2\u0026$skip=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -486,28 +450,28 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "439219099c4e763dfe70aebdcbcf23f6", + "x-ms-client-request-id": "2cba1531821bff99a027b9ded5b94dc9", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1ad32b87-90c6-4589-8d7a-8f4ad6bacd02", + "apim-request-id": "8a6368a9-3e4f-43de-8ca0-6d4e60e4a921", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:46 GMT", + "Date": "Mon, 16 Nov 2020 19:21:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" + "x-envoy-upstream-service-time": "76" }, "ResponseBody": { - "jobId": "b9bcf055-62ea-4ad1-a5e2-c5daa58029d2", - "lastUpdateDateTime": "2020-11-13T22:25:46Z", - "createdDateTime": "2020-11-13T22:25:42Z", - "expirationDateTime": "2020-11-14T22:25:42Z", + "jobId": "b9d55072-278a-4d1e-9896-3c24a4881ef7", + "lastUpdateDateTime": "2020-11-16T19:21:00Z", + "createdDateTime": "2020-11-16T19:20:58Z", + "expirationDateTime": "2020-11-17T19:20:58Z", "status": "succeeded", "errors": [], "results": { @@ -756,11 +720,11 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9bcf055-62ea-4ad1-a5e2-c5daa58029d2?$skip=4\u0026$top=2" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9d55072-278a-4d1e-9896-3c24a4881ef7?$skip=4\u0026$top=2" } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9bcf055-62ea-4ad1-a5e2-c5daa58029d2?$top=2\u0026$skip=4\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9d55072-278a-4d1e-9896-3c24a4881ef7?$top=2\u0026$skip=4\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -769,28 +733,28 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "c6eb26e66141811d33eeca1ae941a17e", + "x-ms-client-request-id": "439219099c4e763dfe70aebdcbcf23f6", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "eefd35a4-9fa0-467d-9da7-c41186403347", + "apim-request-id": "3d4c34d7-ab97-4a97-8c56-69cd3a992c72", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:47 GMT", + "Date": "Mon, 16 Nov 2020 19:21:01 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "238" + "x-envoy-upstream-service-time": "55" }, "ResponseBody": { - "jobId": "b9bcf055-62ea-4ad1-a5e2-c5daa58029d2", - "lastUpdateDateTime": "2020-11-13T22:25:46Z", - "createdDateTime": "2020-11-13T22:25:42Z", - "expirationDateTime": "2020-11-14T22:25:42Z", + "jobId": "b9d55072-278a-4d1e-9896-3c24a4881ef7", + "lastUpdateDateTime": "2020-11-16T19:21:00Z", + "createdDateTime": "2020-11-16T19:20:58Z", + "expirationDateTime": "2020-11-17T19:20:58Z", "status": "succeeded", "errors": [], "results": { @@ -1039,11 +1003,11 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9bcf055-62ea-4ad1-a5e2-c5daa58029d2?$skip=6\u0026$top=2" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9d55072-278a-4d1e-9896-3c24a4881ef7?$skip=6\u0026$top=2" } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9bcf055-62ea-4ad1-a5e2-c5daa58029d2?$top=2\u0026$skip=6\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9d55072-278a-4d1e-9896-3c24a4881ef7?$top=2\u0026$skip=6\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1052,28 +1016,28 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "9dd2aef2c01e95a3d8442daad3dc33d1", + "x-ms-client-request-id": "c6eb26e66141811d33eeca1ae941a17e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0cd20144-e7a3-4ce7-a5d7-59e863ad67aa", + "apim-request-id": "79442804-90a6-4360-86ed-f46e06325846", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:47 GMT", + "Date": "Mon, 16 Nov 2020 19:21:02 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": "54" }, "ResponseBody": { - "jobId": "b9bcf055-62ea-4ad1-a5e2-c5daa58029d2", - "lastUpdateDateTime": "2020-11-13T22:25:46Z", - "createdDateTime": "2020-11-13T22:25:42Z", - "expirationDateTime": "2020-11-14T22:25:42Z", + "jobId": "b9d55072-278a-4d1e-9896-3c24a4881ef7", + "lastUpdateDateTime": "2020-11-16T19:21:00Z", + "createdDateTime": "2020-11-16T19:20:58Z", + "expirationDateTime": "2020-11-17T19:20:58Z", "status": "succeeded", "errors": [], "results": { @@ -1322,11 +1286,11 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9bcf055-62ea-4ad1-a5e2-c5daa58029d2?$skip=8\u0026$top=2" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9d55072-278a-4d1e-9896-3c24a4881ef7?$skip=8\u0026$top=2" } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9bcf055-62ea-4ad1-a5e2-c5daa58029d2?$top=2\u0026$skip=8\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/b9d55072-278a-4d1e-9896-3c24a4881ef7?$top=2\u0026$skip=8\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1335,28 +1299,28 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "aef8c20486cda788fc100f60d1228dbd", + "x-ms-client-request-id": "9dd2aef2c01e95a3d8442daad3dc33d1", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "28e76982-9c62-43b9-869f-80ad13720d04", + "apim-request-id": "ce622b00-f54d-4663-9da8-23e2ed4b63f0", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:47 GMT", + "Date": "Mon, 16 Nov 2020 19:21:02 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": "53" }, "ResponseBody": { - "jobId": "b9bcf055-62ea-4ad1-a5e2-c5daa58029d2", - "lastUpdateDateTime": "2020-11-13T22:25:46Z", - "createdDateTime": "2020-11-13T22:25:42Z", - "expirationDateTime": "2020-11-14T22:25:42Z", + "jobId": "b9d55072-278a-4d1e-9896-3c24a4881ef7", + "lastUpdateDateTime": "2020-11-16T19:21:00Z", + "createdDateTime": "2020-11-16T19:20:58Z", + "expirationDateTime": "2020-11-17T19:20:58Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPaginationAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPaginationAsync.json index 7a8ae6d850809..3b7c0c5203c9c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPaginationAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithPaginationAsync.json @@ -11,9 +11,9 @@ "Content-Length": "1395", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-df367a51f962c745b8de535f1fe7656d-85ede990748bf44c-00", + "traceparent": "00-3df4fc8f69fdee4a86961ceb55c371ef-256be5059d049842-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f142919ab8153bebc5d9f5272ba0209d", @@ -75,18 +75,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "235c4603-443d-4c87-96b7-97e72fa8640d", - "Date": "Fri, 13 Nov 2020 22:26:21 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf", + "apim-request-id": "a7c6adf5-7cfa-46df-aa25-d37c0281b3c4", + "Date": "Mon, 16 Nov 2020 19:21:25 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a085de59-65c3-410d-960a-f570ca96894e", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "172" + "x-envoy-upstream-service-time": "237" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf?$top=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a085de59-65c3-410d-960a-f570ca96894e?$top=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -95,7 +95,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "abea9627e0cd843f9974ee5faa963225", @@ -104,25 +104,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "127b234e-84d7-4c8c-a401-91aab3d6048a", + "apim-request-id": "23bdedde-93e8-445a-859e-5934fe9485fa", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:21 GMT", + "Date": "Mon, 16 Nov 2020 19:21:25 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": "c18127bb-170f-4484-9228-fd10afd5d9bf", - "lastUpdateDateTime": "2020-11-13T22:26:22Z", - "createdDateTime": "2020-11-13T22:26:22Z", - "expirationDateTime": "2020-11-14T22:26:22Z", + "jobId": "a085de59-65c3-410d-960a-f570ca96894e", + "lastUpdateDateTime": "2020-11-16T19:21:26Z", + "createdDateTime": "2020-11-16T19:21:25Z", + "expirationDateTime": "2020-11-17T19:21:25Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf?$top=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a085de59-65c3-410d-960a-f570ca96894e?$top=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -131,7 +131,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "29e58cf2b8b376a1d7b53c264371cd5a", @@ -140,97 +140,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "840634c4-3de0-49f0-98d5-719f9ddce96f", + "apim-request-id": "6210f30b-6193-4bb7-926f-946979301234", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:22 GMT", + "Date": "Mon, 16 Nov 2020 19:21:27 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": "c18127bb-170f-4484-9228-fd10afd5d9bf", - "lastUpdateDateTime": "2020-11-13T22:26:22Z", - "createdDateTime": "2020-11-13T22:26:22Z", - "expirationDateTime": "2020-11-14T22:26:22Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf?$top=2\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "ebc37c63c42eb92852bd57a0ca8c902e", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "811d8e84-6c78-4e02-b9b9-29c2b5cbd692", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:23 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": "c18127bb-170f-4484-9228-fd10afd5d9bf", - "lastUpdateDateTime": "2020-11-13T22:26:22Z", - "createdDateTime": "2020-11-13T22:26:22Z", - "expirationDateTime": "2020-11-14T22:26:22Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf?$top=2\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9f34cfa6f7bb6feaf474d418a4184128", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "0ec28018-6616-48d7-be61-a6d7098be44c", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:25 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": "c18127bb-170f-4484-9228-fd10afd5d9bf", - "lastUpdateDateTime": "2020-11-13T22:26:25Z", - "createdDateTime": "2020-11-13T22:26:22Z", - "expirationDateTime": "2020-11-14T22:26:22Z", + "jobId": "a085de59-65c3-410d-960a-f570ca96894e", + "lastUpdateDateTime": "2020-11-16T19:21:27Z", + "createdDateTime": "2020-11-16T19:21:25Z", + "expirationDateTime": "2020-11-17T19:21:25Z", "status": "running", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf?$top=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a085de59-65c3-410d-960a-f570ca96894e?$top=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -239,28 +167,28 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "2efb93a746d22ef7642bd7f66001ab4b", + "x-ms-client-request-id": "ebc37c63c42eb92852bd57a0ca8c902e", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fb7de320-fff9-46db-b268-41d8e4c8d170", + "apim-request-id": "f3e9cfe7-f4b1-4393-ab83-5fee1e2627ea", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:26 GMT", + "Date": "Mon, 16 Nov 2020 19:21:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "59" }, "ResponseBody": { - "jobId": "c18127bb-170f-4484-9228-fd10afd5d9bf", - "lastUpdateDateTime": "2020-11-13T22:26:26Z", - "createdDateTime": "2020-11-13T22:26:22Z", - "expirationDateTime": "2020-11-14T22:26:22Z", + "jobId": "a085de59-65c3-410d-960a-f570ca96894e", + "lastUpdateDateTime": "2020-11-16T19:21:28Z", + "createdDateTime": "2020-11-16T19:21:25Z", + "expirationDateTime": "2020-11-17T19:21:25Z", "status": "succeeded", "errors": [], "results": { @@ -509,11 +437,11 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf?$skip=2\u0026$top=2" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a085de59-65c3-410d-960a-f570ca96894e?$skip=2\u0026$top=2" } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf?$top=2\u0026$skip=2\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a085de59-65c3-410d-960a-f570ca96894e?$top=2\u0026$skip=2\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -522,28 +450,28 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "747f0d242e3c6c9f9253f6b9ef0f1539", + "x-ms-client-request-id": "9f34cfa6f7bb6feaf474d418a4184128", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4410e94f-6b94-46bb-a197-ccb44c9e7d93", + "apim-request-id": "e445acb4-0a1a-4635-812e-1129e8fed1c6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:27 GMT", + "Date": "Mon, 16 Nov 2020 19:21:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" + "x-envoy-upstream-service-time": "56" }, "ResponseBody": { - "jobId": "c18127bb-170f-4484-9228-fd10afd5d9bf", - "lastUpdateDateTime": "2020-11-13T22:26:26Z", - "createdDateTime": "2020-11-13T22:26:22Z", - "expirationDateTime": "2020-11-14T22:26:22Z", + "jobId": "a085de59-65c3-410d-960a-f570ca96894e", + "lastUpdateDateTime": "2020-11-16T19:21:28Z", + "createdDateTime": "2020-11-16T19:21:25Z", + "expirationDateTime": "2020-11-17T19:21:25Z", "status": "succeeded", "errors": [], "results": { @@ -792,11 +720,11 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf?$skip=4\u0026$top=2" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a085de59-65c3-410d-960a-f570ca96894e?$skip=4\u0026$top=2" } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf?$top=2\u0026$skip=4\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a085de59-65c3-410d-960a-f570ca96894e?$top=2\u0026$skip=4\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -805,28 +733,28 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "36f82f7c62905f5bd8053a8f1ff30ef3", + "x-ms-client-request-id": "2efb93a746d22ef7642bd7f66001ab4b", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3a6d3b6f-b339-48c8-b6f0-34afaf1d5b1c", + "apim-request-id": "69d62363-e674-4ca3-b769-129da07bbda6", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:27 GMT", + "Date": "Mon, 16 Nov 2020 19:21:28 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "54" + "x-envoy-upstream-service-time": "48" }, "ResponseBody": { - "jobId": "c18127bb-170f-4484-9228-fd10afd5d9bf", - "lastUpdateDateTime": "2020-11-13T22:26:26Z", - "createdDateTime": "2020-11-13T22:26:22Z", - "expirationDateTime": "2020-11-14T22:26:22Z", + "jobId": "a085de59-65c3-410d-960a-f570ca96894e", + "lastUpdateDateTime": "2020-11-16T19:21:28Z", + "createdDateTime": "2020-11-16T19:21:25Z", + "expirationDateTime": "2020-11-17T19:21:25Z", "status": "succeeded", "errors": [], "results": { @@ -1075,11 +1003,11 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf?$skip=6\u0026$top=2" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a085de59-65c3-410d-960a-f570ca96894e?$skip=6\u0026$top=2" } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf?$top=2\u0026$skip=6\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a085de59-65c3-410d-960a-f570ca96894e?$top=2\u0026$skip=6\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1088,28 +1016,28 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "96f489c8cc9879ebf48f9c7e4f3d3e54", + "x-ms-client-request-id": "747f0d242e3c6c9f9253f6b9ef0f1539", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "010c2b92-3fa0-4774-a07e-66fa5aa9ebaf", + "apim-request-id": "2b542cc1-671f-41a6-9e22-7084bfd2ea35", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:27 GMT", + "Date": "Mon, 16 Nov 2020 19:21:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "47" + "x-envoy-upstream-service-time": "55" }, "ResponseBody": { - "jobId": "c18127bb-170f-4484-9228-fd10afd5d9bf", - "lastUpdateDateTime": "2020-11-13T22:26:26Z", - "createdDateTime": "2020-11-13T22:26:22Z", - "expirationDateTime": "2020-11-14T22:26:22Z", + "jobId": "a085de59-65c3-410d-960a-f570ca96894e", + "lastUpdateDateTime": "2020-11-16T19:21:28Z", + "createdDateTime": "2020-11-16T19:21:25Z", + "expirationDateTime": "2020-11-17T19:21:25Z", "status": "succeeded", "errors": [], "results": { @@ -1358,11 +1286,11 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf?$skip=8\u0026$top=2" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a085de59-65c3-410d-960a-f570ca96894e?$skip=8\u0026$top=2" } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c18127bb-170f-4484-9228-fd10afd5d9bf?$top=2\u0026$skip=8\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a085de59-65c3-410d-960a-f570ca96894e?$top=2\u0026$skip=8\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -1371,28 +1299,28 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], - "x-ms-client-request-id": "317a9d167508c1bab11f9b36f30f4c9e", + "x-ms-client-request-id": "36f82f7c62905f5bd8053a8f1ff30ef3", "x-ms-return-client-request-id": "true" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e8aa41a6-257d-4ab6-a61c-3941230b7b63", + "apim-request-id": "613c7802-2583-4de1-a00e-0ff2c4934d75", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:28 GMT", + "Date": "Mon, 16 Nov 2020 19:21:29 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "40" + "x-envoy-upstream-service-time": "54" }, "ResponseBody": { - "jobId": "c18127bb-170f-4484-9228-fd10afd5d9bf", - "lastUpdateDateTime": "2020-11-13T22:26:26Z", - "createdDateTime": "2020-11-13T22:26:22Z", - "expirationDateTime": "2020-11-14T22:26:22Z", + "jobId": "a085de59-65c3-410d-960a-f570ca96894e", + "lastUpdateDateTime": "2020-11-16T19:21:28Z", + "createdDateTime": "2020-11-16T19:21:25Z", + "expirationDateTime": "2020-11-17T19:21:25Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json index a46510ce11f22..fd9189bbf8ceb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6beafb399015e54da29d60d14ae731e5-60aff4aec869e341-00", + "traceparent": "00-a076c71450ec9445a2e16af8dbf1427a-62c2d52abdbb6346-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8ec3c90b7880bba55b75abdb84a19321", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "3ee8638e-ee72-4d8d-9467-7dcf4b6cfd57", - "Date": "Fri, 13 Nov 2020 22:25:48 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8b823d48-304a-43b8-aaeb-b84a6c8b779c", + "apim-request-id": "e955ff31-0d21-4c8d-aee5-011f43904616", + "Date": "Mon, 16 Nov 2020 19:21:02 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/69a3401c-b0f4-46f8-ac2f-9bfa23b76e81", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "99" + "x-envoy-upstream-service-time": "101" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8b823d48-304a-43b8-aaeb-b84a6c8b779c?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/69a3401c-b0f4-46f8-ac2f-9bfa23b76e81?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "56fe48ebb003114e437c6f5c1a23295d", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "bcac2f4c-9e67-4a76-a23b-1ced3727d4e0", + "apim-request-id": "df65dd73-196f-488c-be61-c0fee3836711", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:48 GMT", + "Date": "Mon, 16 Nov 2020 19:21:03 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": "8b823d48-304a-43b8-aaeb-b84a6c8b779c", - "lastUpdateDateTime": "2020-11-13T22:25:48Z", - "createdDateTime": "2020-11-13T22:25:48Z", - "expirationDateTime": "2020-11-14T22:25:48Z", + "jobId": "69a3401c-b0f4-46f8-ac2f-9bfa23b76e81", + "lastUpdateDateTime": "2020-11-16T19:21:03Z", + "createdDateTime": "2020-11-16T19:21:03Z", + "expirationDateTime": "2020-11-17T19:21:03Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8b823d48-304a-43b8-aaeb-b84a6c8b779c?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/69a3401c-b0f4-46f8-ac2f-9bfa23b76e81?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e2f12bb5a78a8d006ec8d88886d7049c", @@ -100,25 +100,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "18dbc16c-cc6d-42df-9718-e0c808cf5ce1", + "apim-request-id": "3b70b2b9-7e29-4876-97bc-154871725255", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:50 GMT", + "Date": "Mon, 16 Nov 2020 19:21:04 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": "8b823d48-304a-43b8-aaeb-b84a6c8b779c", - "lastUpdateDateTime": "2020-11-13T22:25:50Z", - "createdDateTime": "2020-11-13T22:25:48Z", - "expirationDateTime": "2020-11-14T22:25:48Z", - "status": "running", + "jobId": "69a3401c-b0f4-46f8-ac2f-9bfa23b76e81", + "lastUpdateDateTime": "2020-11-16T19:21:03Z", + "createdDateTime": "2020-11-16T19:21:03Z", + "expirationDateTime": "2020-11-17T19:21:03Z", + "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8b823d48-304a-43b8-aaeb-b84a6c8b779c?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/69a3401c-b0f4-46f8-ac2f-9bfa23b76e81?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -127,7 +127,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c7d5601dc12e5b3c7ab14a040948a137", @@ -136,19 +136,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "36de23fe-6701-49ec-8bd7-e055204fc9d0", + "apim-request-id": "47d437c6-1673-4656-88e2-c291d057ae4b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:51 GMT", + "Date": "Mon, 16 Nov 2020 19:21:05 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "51" + "x-envoy-upstream-service-time": "56" }, "ResponseBody": { - "jobId": "8b823d48-304a-43b8-aaeb-b84a6c8b779c", - "lastUpdateDateTime": "2020-11-13T22:25:50Z", - "createdDateTime": "2020-11-13T22:25:48Z", - "expirationDateTime": "2020-11-14T22:25:48Z", + "jobId": "69a3401c-b0f4-46f8-ac2f-9bfa23b76e81", + "lastUpdateDateTime": "2020-11-16T19:21:04Z", + "createdDateTime": "2020-11-16T19:21:03Z", + "expirationDateTime": "2020-11-17T19:21:03Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json index 6fcd75e05e4f1..d82e20b9f29eb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesBatchWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-96ef7400d5207648a786b5637956a3cb-cfa2797bc4be9b49-00", + "traceparent": "00-026595f5361ce5439e37ca810addcb32-0e3972d9ecd9cb4d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cb820fc464b79dcc9212329646bf509a", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "c2192386-eda9-481c-9831-60c491b00da5", - "Date": "Fri, 13 Nov 2020 22:26:28 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a182729e-b0d3-4167-952e-a656b4e8cc24", + "apim-request-id": "0dee659d-9116-4805-9557-9ab3c6bc46af", + "Date": "Mon, 16 Nov 2020 19:21:29 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/cca7ce72-44d6-4a2e-8df8-7be22093a55c", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "97" + "x-envoy-upstream-service-time": "83" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a182729e-b0d3-4167-952e-a656b4e8cc24?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/cca7ce72-44d6-4a2e-8df8-7be22093a55c?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "08d18cd76fa1ba75ad5e5758b7de00e4", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3b88c73e-66e1-47bc-a42b-8c81fe49336d", + "apim-request-id": "539cecab-efcb-461f-9ebd-df323d500381", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:28 GMT", + "Date": "Mon, 16 Nov 2020 19:21:29 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": "11" }, "ResponseBody": { - "jobId": "a182729e-b0d3-4167-952e-a656b4e8cc24", - "lastUpdateDateTime": "2020-11-13T22:26:29Z", - "createdDateTime": "2020-11-13T22:26:29Z", - "expirationDateTime": "2020-11-14T22:26:29Z", + "jobId": "cca7ce72-44d6-4a2e-8df8-7be22093a55c", + "lastUpdateDateTime": "2020-11-16T19:21:30Z", + "createdDateTime": "2020-11-16T19:21:30Z", + "expirationDateTime": "2020-11-17T19:21:30Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a182729e-b0d3-4167-952e-a656b4e8cc24?showStats=true", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/cca7ce72-44d6-4a2e-8df8-7be22093a55c?showStats=true", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2ac480b3f6758c758bf3f8f60a589915", @@ -100,19 +100,55 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "38d4b038-67bc-4d0d-ab39-60923d88e242", + "apim-request-id": "64aed951-5351-4640-8f44-71377e40a049", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:30 GMT", + "Date": "Mon, 16 Nov 2020 19:21:32 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "a182729e-b0d3-4167-952e-a656b4e8cc24", - "lastUpdateDateTime": "2020-11-13T22:26:30Z", - "createdDateTime": "2020-11-13T22:26:29Z", - "expirationDateTime": "2020-11-14T22:26:29Z", + "jobId": "cca7ce72-44d6-4a2e-8df8-7be22093a55c", + "lastUpdateDateTime": "2020-11-16T19:21:30Z", + "createdDateTime": "2020-11-16T19:21:30Z", + "expirationDateTime": "2020-11-17T19:21:30Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/cca7ce72-44d6-4a2e-8df8-7be22093a55c?showStats=true", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "4456bc1eb361546e99c71e580d73e5b3", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "3a15de27-6e2a-45b6-b717-d71229296a10", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 16 Nov 2020 19:21:33 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "43" + }, + "ResponseBody": { + "jobId": "cca7ce72-44d6-4a2e-8df8-7be22093a55c", + "lastUpdateDateTime": "2020-11-16T19:21:32Z", + "createdDateTime": "2020-11-16T19:21:30Z", + "expirationDateTime": "2020-11-17T19:21:30Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json index 9f32f6469159e..c6f808362a659 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTest.json @@ -11,9 +11,9 @@ "Content-Length": "100", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b5cf606f8b2ecc49b855324adda51c64-a1ba48f132f51b43-00", + "traceparent": "00-eeaddd09f5ff3b4094c9af464d297659-9840fe9b82d27c48-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e51cbf87a321df02032925de5e6708b4", @@ -30,18 +30,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "33d6782c-f11e-4a84-a648-58b5e2a9ba87", - "Date": "Fri, 13 Nov 2020 22:25:51 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/65d02f95-1202-4ea7-9645-acef12446638", + "apim-request-id": "48b6bd8a-3ab8-47c0-b254-8fbba25a910c", + "Date": "Mon, 16 Nov 2020 19:21:05 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8c21a181-68e7-4526-8504-d88c0159ee33", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "68" + "x-envoy-upstream-service-time": "75" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/65d02f95-1202-4ea7-9645-acef12446638?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8c21a181-68e7-4526-8504-d88c0159ee33?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -50,7 +50,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2cdb69530701f208f175aa6a97e2593b", @@ -59,25 +59,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2ca266d5-392a-4bc1-b414-c35d80db24ee", + "apim-request-id": "d7f4dd0a-3fa8-40a5-9cd0-b532cc057d10", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:51 GMT", + "Date": "Mon, 16 Nov 2020 19:21:05 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": "65d02f95-1202-4ea7-9645-acef12446638", - "lastUpdateDateTime": "2020-11-13T22:25:51Z", - "createdDateTime": "2020-11-13T22:25:51Z", - "expirationDateTime": "2020-11-14T22:25:51Z", + "jobId": "8c21a181-68e7-4526-8504-d88c0159ee33", + "lastUpdateDateTime": "2020-11-16T19:21:06Z", + "createdDateTime": "2020-11-16T19:21:06Z", + "expirationDateTime": "2020-11-17T19:21:06Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/65d02f95-1202-4ea7-9645-acef12446638?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/8c21a181-68e7-4526-8504-d88c0159ee33?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -86,7 +86,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a701cb20bb11a529608aebe12f36a48e", @@ -95,91 +95,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4a1ae3b7-f1be-46fd-bbe8-588b2aad21e6", + "apim-request-id": "d02f7056-999b-4124-ae7b-a2e19e57ca71", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:53 GMT", + "Date": "Mon, 16 Nov 2020 19:21:07 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "10" + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { - "jobId": "65d02f95-1202-4ea7-9645-acef12446638", - "lastUpdateDateTime": "2020-11-13T22:25:51Z", - "createdDateTime": "2020-11-13T22:25:51Z", - "expirationDateTime": "2020-11-14T22:25:51Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/65d02f95-1202-4ea7-9645-acef12446638?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "03c09e10ea8d7fc1b629f4abf8984821", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "37be8227-4cc5-4b1f-8062-f12d1ea790cf", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:54 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": "65d02f95-1202-4ea7-9645-acef12446638", - "lastUpdateDateTime": "2020-11-13T22:25:51Z", - "createdDateTime": "2020-11-13T22:25:51Z", - "expirationDateTime": "2020-11-14T22:25:51Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/65d02f95-1202-4ea7-9645-acef12446638?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "93bde9d0616598a24035cb771c26c3ba", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "3539efac-d2e2-4e7d-a981-3b26c32f2ddc", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:55 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "34" - }, - "ResponseBody": { - "jobId": "65d02f95-1202-4ea7-9645-acef12446638", - "lastUpdateDateTime": "2020-11-13T22:25:55Z", - "createdDateTime": "2020-11-13T22:25:51Z", - "expirationDateTime": "2020-11-14T22:25:51Z", + "jobId": "8c21a181-68e7-4526-8504-d88c0159ee33", + "lastUpdateDateTime": "2020-11-16T19:21:07Z", + "createdDateTime": "2020-11-16T19:21:06Z", + "expirationDateTime": "2020-11-17T19:21:06Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json index a1e6d9f6ff2a2..db0416228f3ec 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "100", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e05f488558710b4696f6f6d4fe685ea1-3c1f41b1c9c7904b-00", + "traceparent": "00-8af2068bd78a994c87fb448fd6a86e22-dde7630bbab8b843-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "acdb13842ca5b9295fa84adf0c4870a8", @@ -30,18 +30,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "0b0a64aa-69ba-4384-9621-bf8012eee359", - "Date": "Fri, 13 Nov 2020 22:26:30 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/06897562-10b5-4795-b927-88a185b4b2a1", + "apim-request-id": "0468bd67-ccce-44cc-a78c-718feee1d2fa", + "Date": "Mon, 16 Nov 2020 19:21:33 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e81107d5-86a2-4dac-9287-f8fe4eea2255", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "80" + "x-envoy-upstream-service-time": "89" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/06897562-10b5-4795-b927-88a185b4b2a1?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e81107d5-86a2-4dac-9287-f8fe4eea2255?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -50,7 +50,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1181511460ff1ed085a4ba80632c2cfd", @@ -59,25 +59,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7a988ac2-e8f0-4b51-b26c-2fc0fc50b9fb", + "apim-request-id": "c5fa1e78-4fb7-471b-9d78-29ea0b51a3a7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:30 GMT", + "Date": "Mon, 16 Nov 2020 19: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" + "x-envoy-upstream-service-time": "10" }, "ResponseBody": { - "jobId": "06897562-10b5-4795-b927-88a185b4b2a1", - "lastUpdateDateTime": "2020-11-13T22:26:31Z", - "createdDateTime": "2020-11-13T22:26:30Z", - "expirationDateTime": "2020-11-14T22:26:30Z", + "jobId": "e81107d5-86a2-4dac-9287-f8fe4eea2255", + "lastUpdateDateTime": "2020-11-16T19:21:33Z", + "createdDateTime": "2020-11-16T19:21:33Z", + "expirationDateTime": "2020-11-17T19:21:33Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/06897562-10b5-4795-b927-88a185b4b2a1?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/e81107d5-86a2-4dac-9287-f8fe4eea2255?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -86,7 +86,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d0605b7dc709a544ca5e0c1b0401dc1e", @@ -95,19 +95,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "21026108-5d39-4a71-a1f0-3b962c91f4a7", + "apim-request-id": "9a411248-df4a-4843-802c-335fc1522486", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:31 GMT", + "Date": "Mon, 16 Nov 2020 19:21:35 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", "x-envoy-upstream-service-time": "33" }, "ResponseBody": { - "jobId": "06897562-10b5-4795-b927-88a185b4b2a1", - "lastUpdateDateTime": "2020-11-13T22:26:31Z", - "createdDateTime": "2020-11-13T22:26:30Z", - "expirationDateTime": "2020-11-14T22:26:30Z", + "jobId": "e81107d5-86a2-4dac-9287-f8fe4eea2255", + "lastUpdateDateTime": "2020-11-16T19:21:34Z", + "createdDateTime": "2020-11-16T19:21:33Z", + "expirationDateTime": "2020-11-17T19:21:33Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json index f2241595c609b..4420dd78df9cd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTest.json @@ -11,9 +11,9 @@ "Content-Length": "100", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-61925e3e5fad20469b37a8dba3c2bb59-afd99fbda01f0d4c-00", + "traceparent": "00-8da4169d3f1bda48a2e190ca36a27d4e-b92bfea23dc8194e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "0e649e128b084513c9c62e584c5f813b", @@ -30,18 +30,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "d16dc05a-cf83-40be-bb54-4f264dd68ad0", - "Date": "Fri, 13 Nov 2020 22:25:55 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c3e73159-7a4b-442b-b073-b1813393a2c3", + "apim-request-id": "5be73988-2bf3-4b2f-b5e0-ab8d2384517d", + "Date": "Mon, 16 Nov 2020 19:21:07 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/166ffb45-abc7-471a-9f63-bcbbe38effed", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-envoy-upstream-service-time": "69" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c3e73159-7a4b-442b-b073-b1813393a2c3?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/166ffb45-abc7-471a-9f63-bcbbe38effed?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -50,7 +50,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "796705c1528f3adf8bba34f0a8f2bd37", @@ -59,25 +59,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "83ec68c0-3360-43b3-91f7-c99acfc97f2b", + "apim-request-id": "55732be9-e0d2-4320-8689-773a62abacc4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:56 GMT", + "Date": "Mon, 16 Nov 2020 19:21:07 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": "c3e73159-7a4b-442b-b073-b1813393a2c3", - "lastUpdateDateTime": "2020-11-13T22:25:56Z", - "createdDateTime": "2020-11-13T22:25:56Z", - "expirationDateTime": "2020-11-14T22:25:56Z", - "status": "running", + "jobId": "166ffb45-abc7-471a-9f63-bcbbe38effed", + "lastUpdateDateTime": "2020-11-16T19:21:08Z", + "createdDateTime": "2020-11-16T19:21:08Z", + "expirationDateTime": "2020-11-17T19:21:08Z", + "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/c3e73159-7a4b-442b-b073-b1813393a2c3?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/166ffb45-abc7-471a-9f63-bcbbe38effed?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -86,7 +86,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "740ea8ad2ce006c130b149d1ae645358", @@ -95,19 +95,55 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "212e9dc1-023c-47c7-9ee5-3a8dfc6b9237", + "apim-request-id": "4208ca3c-fdf1-42ef-a3b0-ed8e221fe2b3", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:57 GMT", + "Date": "Mon, 16 Nov 2020 19:21:08 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": "9" }, "ResponseBody": { - "jobId": "c3e73159-7a4b-442b-b073-b1813393a2c3", - "lastUpdateDateTime": "2020-11-13T22:25:56Z", - "createdDateTime": "2020-11-13T22:25:56Z", - "expirationDateTime": "2020-11-14T22:25:56Z", + "jobId": "166ffb45-abc7-471a-9f63-bcbbe38effed", + "lastUpdateDateTime": "2020-11-16T19:21:08Z", + "createdDateTime": "2020-11-16T19:21:08Z", + "expirationDateTime": "2020-11-17T19:21:08Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/166ffb45-abc7-471a-9f63-bcbbe38effed?showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "07effce6ecdcc068be2a834d57229cd7", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "c6b83f42-b76e-40ea-8f85-fbc71adc0f18", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 16 Nov 2020 19:21:10 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "35" + }, + "ResponseBody": { + "jobId": "166ffb45-abc7-471a-9f63-bcbbe38effed", + "lastUpdateDateTime": "2020-11-16T19:21:09Z", + "createdDateTime": "2020-11-16T19:21:08Z", + "expirationDateTime": "2020-11-17T19:21:08Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json index 51464e6797108..b8c9a9f4fa90c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithLanguageTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "100", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-322a4d0406d857478455117495e89de3-9081d9ac04ca3b43-00", + "traceparent": "00-26e597191f33d34cbffe2f2d2663a4e0-6e589c611ea80047-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ac50657e0564f29f4cf677ed0a13f18a", @@ -30,18 +30,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "1c479b7b-ebef-49fd-8e93-a6f8eee7413b", - "Date": "Fri, 13 Nov 2020 22:26:32 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/d1c9ce7d-dc4c-4685-a549-3ce18a4540fa", + "apim-request-id": "10e05226-80a6-420c-963b-7d97bd8f3ff5", + "Date": "Mon, 16 Nov 2020 19:21:35 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/91c4d46a-38d1-4564-aeca-5fc07905c049", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "81" + "x-envoy-upstream-service-time": "106" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/d1c9ce7d-dc4c-4685-a549-3ce18a4540fa?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/91c4d46a-38d1-4564-aeca-5fc07905c049?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -50,7 +50,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ee06e8ec9851bf144fa0b3348eac9147", @@ -59,25 +59,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "45ff0a05-3511-459f-a4b0-6e600753a91d", + "apim-request-id": "ea464a4a-0d94-47ea-8f03-dafd2367b604", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:32 GMT", + "Date": "Mon, 16 Nov 2020 19: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" + "x-envoy-upstream-service-time": "11" }, "ResponseBody": { - "jobId": "d1c9ce7d-dc4c-4685-a549-3ce18a4540fa", - "lastUpdateDateTime": "2020-11-13T22:26:32Z", - "createdDateTime": "2020-11-13T22:26:32Z", - "expirationDateTime": "2020-11-14T22:26:32Z", + "jobId": "91c4d46a-38d1-4564-aeca-5fc07905c049", + "lastUpdateDateTime": "2020-11-16T19:21:35Z", + "createdDateTime": "2020-11-16T19:21:35Z", + "expirationDateTime": "2020-11-17T19:21:35Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/d1c9ce7d-dc4c-4685-a549-3ce18a4540fa?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/91c4d46a-38d1-4564-aeca-5fc07905c049?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -86,7 +86,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c56f00a8f06aed051c550a52700d0abf", @@ -95,25 +95,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e7085852-ec6b-4977-a95b-27c91099e518", + "apim-request-id": "67d9994b-4054-4f46-a9e4-942c1477f383", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:33 GMT", + "Date": "Mon, 16 Nov 2020 19:21:36 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "8" }, "ResponseBody": { - "jobId": "d1c9ce7d-dc4c-4685-a549-3ce18a4540fa", - "lastUpdateDateTime": "2020-11-13T22:26:32Z", - "createdDateTime": "2020-11-13T22:26:32Z", - "expirationDateTime": "2020-11-14T22:26:32Z", + "jobId": "91c4d46a-38d1-4564-aeca-5fc07905c049", + "lastUpdateDateTime": "2020-11-16T19:21:35Z", + "createdDateTime": "2020-11-16T19:21:35Z", + "expirationDateTime": "2020-11-17T19:21:35Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/d1c9ce7d-dc4c-4685-a549-3ce18a4540fa?showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/91c4d46a-38d1-4564-aeca-5fc07905c049?showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -122,7 +122,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c9cabda7fe2ee58e51915dc3526b639f", @@ -131,55 +131,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "639cd52a-1d7a-40d4-8f8d-71bb9113ad85", + "apim-request-id": "0a60ef7d-fc1b-4652-b568-638ad7f03c62", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:35 GMT", + "Date": "Mon, 16 Nov 2020 19:21:38 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": "44" }, "ResponseBody": { - "jobId": "d1c9ce7d-dc4c-4685-a549-3ce18a4540fa", - "lastUpdateDateTime": "2020-11-13T22:26:35Z", - "createdDateTime": "2020-11-13T22:26:32Z", - "expirationDateTime": "2020-11-14T22:26:32Z", - "status": "running", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/d1c9ce7d-dc4c-4685-a549-3ce18a4540fa?showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "094430652ca3fb20e319d1fb8ec14f41", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "56f218d7-9079-4de2-8ddd-7bf523e3ff10", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:36 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "36" - }, - "ResponseBody": { - "jobId": "d1c9ce7d-dc4c-4685-a549-3ce18a4540fa", - "lastUpdateDateTime": "2020-11-13T22:26:35Z", - "createdDateTime": "2020-11-13T22:26:32Z", - "expirationDateTime": "2020-11-14T22:26:32Z", + "jobId": "91c4d46a-38d1-4564-aeca-5fc07905c049", + "lastUpdateDateTime": "2020-11-16T19:21:37Z", + "createdDateTime": "2020-11-16T19:21:35Z", + "expirationDateTime": "2020-11-17T19:21:35Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json index 2847ddf222d4d..ecad35574a862 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameter.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-93556e6b765f6b43bc7e9305028f8fd5-8a75651e5538294b-00", + "traceparent": "00-3aea15a54374364bb04d128e1e7852b8-9da41b3c0b34de40-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e5bbee521fd95f6f85d46045340cc5e0", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "a1ac3175-7da7-4fdf-bbb9-8b829f3ca90f", - "Date": "Fri, 13 Nov 2020 22:25:57 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/5d05fde8-18ae-4ab6-b3a0-b31940e1e240", + "apim-request-id": "72780cea-c1c2-4320-8f76-31747f45472a", + "Date": "Mon, 16 Nov 2020 19:21:10 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/d8bd807b-a4dd-4dcc-8f17-a28c18c6ed72", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "95" + "x-envoy-upstream-service-time": "177" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/5d05fde8-18ae-4ab6-b3a0-b31940e1e240?$skip=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/d8bd807b-a4dd-4dcc-8f17-a28c18c6ed72?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "cb3ef020b17077b8ee6ec139b3f21813", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9f84129b-5ec0-408b-b4f3-92f38a95d892", + "apim-request-id": "c468f80e-03cf-4df2-be81-87ef68bb181a", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:57 GMT", + "Date": "Mon, 16 Nov 2020 19: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" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "5d05fde8-18ae-4ab6-b3a0-b31940e1e240", - "lastUpdateDateTime": "2020-11-13T22:25:58Z", - "createdDateTime": "2020-11-13T22:25:57Z", - "expirationDateTime": "2020-11-14T22:25:57Z", + "jobId": "d8bd807b-a4dd-4dcc-8f17-a28c18c6ed72", + "lastUpdateDateTime": "2020-11-16T19:21:11Z", + "createdDateTime": "2020-11-16T19:21:11Z", + "expirationDateTime": "2020-11-17T19:21:11Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/5d05fde8-18ae-4ab6-b3a0-b31940e1e240?$skip=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/d8bd807b-a4dd-4dcc-8f17-a28c18c6ed72?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "beccfc644b839adbc9a8ce8f926f328c", @@ -100,55 +100,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "22bd0a8e-7565-4507-a0f3-b0d80935a6bf", + "apim-request-id": "7ce0421b-dd9b-4d7e-b359-73db6d31fe3e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:25:59 GMT", + "Date": "Mon, 16 Nov 2020 19:21:12 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "43" }, "ResponseBody": { - "jobId": "5d05fde8-18ae-4ab6-b3a0-b31940e1e240", - "lastUpdateDateTime": "2020-11-13T22:25:58Z", - "createdDateTime": "2020-11-13T22:25:57Z", - "expirationDateTime": "2020-11-14T22:25:57Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/5d05fde8-18ae-4ab6-b3a0-b31940e1e240?$skip=1\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "8af430b30bf8a15e3644f66a5d35ac92", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "05b6e8f9-8374-46be-a595-29cca56f9598", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:00 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "55" - }, - "ResponseBody": { - "jobId": "5d05fde8-18ae-4ab6-b3a0-b31940e1e240", - "lastUpdateDateTime": "2020-11-13T22:26:00Z", - "createdDateTime": "2020-11-13T22:25:57Z", - "expirationDateTime": "2020-11-14T22:25:57Z", + "jobId": "d8bd807b-a4dd-4dcc-8f17-a28c18c6ed72", + "lastUpdateDateTime": "2020-11-16T19:21:12Z", + "createdDateTime": "2020-11-16T19:21:11Z", + "expirationDateTime": "2020-11-17T19:21:11Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json index f16dded034ed1..7c815dff5039e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithSkipParameterAsync.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-286a1b21ed10be40979117fb3529892c-eaec7482eb4a5f4f-00", + "traceparent": "00-74ecb3c9d5526f46b3d0e20e20f822eb-8498f6d5dfb51d45-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9e757d2d83ce1123a7e23fad5376473f", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "8155aefb-73f7-498e-b5b5-76aa52dfc44c", - "Date": "Fri, 13 Nov 2020 22:26:36 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6ef33093-0c29-4108-80a1-d6eb7cb639f8", + "apim-request-id": "ee111198-3d23-4207-b017-8c4805de56a7", + "Date": "Mon, 16 Nov 2020 19:21:38 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a229832a-b920-49ad-b8d6-580e8d03d879", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "114" + "x-envoy-upstream-service-time": "101" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6ef33093-0c29-4108-80a1-d6eb7cb639f8?$skip=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a229832a-b920-49ad-b8d6-580e8d03d879?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "68a7733fd31f0864ffb638781102da48", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "5abda186-aef3-44c9-b1fd-a106d0a3d105", + "apim-request-id": "6c3dda6e-4691-4d8f-8596-1a289c932939", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:36 GMT", + "Date": "Mon, 16 Nov 2020 19:21:38 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": "9" }, "ResponseBody": { - "jobId": "6ef33093-0c29-4108-80a1-d6eb7cb639f8", - "lastUpdateDateTime": "2020-11-13T22:26:37Z", - "createdDateTime": "2020-11-13T22:26:36Z", - "expirationDateTime": "2020-11-14T22:26:36Z", + "jobId": "a229832a-b920-49ad-b8d6-580e8d03d879", + "lastUpdateDateTime": "2020-11-16T19:21:38Z", + "createdDateTime": "2020-11-16T19:21:38Z", + "expirationDateTime": "2020-11-17T19:21:38Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6ef33093-0c29-4108-80a1-d6eb7cb639f8?$skip=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/a229832a-b920-49ad-b8d6-580e8d03d879?$skip=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "39eac04aaed6996e7ea6b9f62c4a8897", @@ -100,91 +100,19 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "aa01e2b2-6eab-4988-995e-cc8c580abfb2", + "apim-request-id": "d81ea7d4-8ecb-41d2-8f91-a686f18af041", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:38 GMT", + "Date": "Mon, 16 Nov 2020 19:21:39 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": "47" }, "ResponseBody": { - "jobId": "6ef33093-0c29-4108-80a1-d6eb7cb639f8", - "lastUpdateDateTime": "2020-11-13T22:26:37Z", - "createdDateTime": "2020-11-13T22:26:36Z", - "expirationDateTime": "2020-11-14T22:26:36Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6ef33093-0c29-4108-80a1-d6eb7cb639f8?$skip=1\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "eaa1ba814c8b59b1196c9f174baaffa5", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "e9334be3-7da4-40bc-9b96-cc15436ad824", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:39 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": "6ef33093-0c29-4108-80a1-d6eb7cb639f8", - "lastUpdateDateTime": "2020-11-13T22:26:37Z", - "createdDateTime": "2020-11-13T22:26:36Z", - "expirationDateTime": "2020-11-14T22:26:36Z", - "status": "notStarted", - "errors": [] - } - }, - { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/6ef33093-0c29-4108-80a1-d6eb7cb639f8?$skip=1\u0026showStats=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": [ - "application/json", - "text/json" - ], - "Ocp-Apim-Subscription-Key": "Sanitized", - "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", - "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" - ], - "x-ms-client-request-id": "9263f6070e8c9068040de978196ddcb4", - "x-ms-return-client-request-id": "true" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "apim-request-id": "b61531b5-14e8-4297-8791-c29776c8e349", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:40 GMT", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "44" - }, - "ResponseBody": { - "jobId": "6ef33093-0c29-4108-80a1-d6eb7cb639f8", - "lastUpdateDateTime": "2020-11-13T22:26:40Z", - "createdDateTime": "2020-11-13T22:26:36Z", - "expirationDateTime": "2020-11-14T22:26:36Z", + "jobId": "a229832a-b920-49ad-b8d6-580e8d03d879", + "lastUpdateDateTime": "2020-11-16T19:21:39Z", + "createdDateTime": "2020-11-16T19:21:38Z", + "expirationDateTime": "2020-11-17T19:21:38Z", "status": "succeeded", "errors": [], "results": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json index e8fe7cb2d30dd..e2c0cf1ef468f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameter.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a5156f048114324bb094a8bb03988f94-3c0bc83c82512d4d-00", + "traceparent": "00-4efcd6b403b9694e92ed4999dcd6adf8-31a25337a4b5a045-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8efbb01e5acc858dcd1ff153470e4093", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "49bcc668-6f9c-4fc1-9399-4ea66c78aa85", - "Date": "Fri, 13 Nov 2020 22:26:00 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/414d2143-1876-4eed-9e30-c9408eca56ca", + "apim-request-id": "57f62076-1ee2-48af-854f-7850205129f1", + "Date": "Mon, 16 Nov 2020 19:21:12 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4b548fd2-0cad-476b-b732-263c962e4476", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "76" + "x-envoy-upstream-service-time": "104" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/414d2143-1876-4eed-9e30-c9408eca56ca?$top=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4b548fd2-0cad-476b-b732-263c962e4476?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2660bb690f1e14745ff6a5df3888e782", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a477527b-7050-4b16-82a9-95745326a655", + "apim-request-id": "396bf2db-8c2c-49e9-b663-173672d76ff7", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:00 GMT", + "Date": "Mon, 16 Nov 2020 19:21:12 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": "9" }, "ResponseBody": { - "jobId": "414d2143-1876-4eed-9e30-c9408eca56ca", - "lastUpdateDateTime": "2020-11-13T22:26:01Z", - "createdDateTime": "2020-11-13T22:26:00Z", - "expirationDateTime": "2020-11-14T22:26:00Z", + "jobId": "4b548fd2-0cad-476b-b732-263c962e4476", + "lastUpdateDateTime": "2020-11-16T19:21:13Z", + "createdDateTime": "2020-11-16T19:21:12Z", + "expirationDateTime": "2020-11-17T19:21:12Z", "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/414d2143-1876-4eed-9e30-c9408eca56ca?$top=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4b548fd2-0cad-476b-b732-263c962e4476?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4c0a13cbdad64cf8d7c97184a7f98e05", @@ -100,19 +100,55 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "7e368968-5b5a-4440-a620-3a1c403d01a8", + "apim-request-id": "b390a9d9-841d-467e-a491-68f384520e0e", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:02 GMT", + "Date": "Mon, 16 Nov 2020 19:21:14 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": "9" }, "ResponseBody": { - "jobId": "414d2143-1876-4eed-9e30-c9408eca56ca", - "lastUpdateDateTime": "2020-11-13T22:26:01Z", - "createdDateTime": "2020-11-13T22:26:00Z", - "expirationDateTime": "2020-11-14T22:26:00Z", + "jobId": "4b548fd2-0cad-476b-b732-263c962e4476", + "lastUpdateDateTime": "2020-11-16T19:21:13Z", + "createdDateTime": "2020-11-16T19:21:12Z", + "expirationDateTime": "2020-11-17T19:21:12Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4b548fd2-0cad-476b-b732-263c962e4476?$top=1\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "89adbdfd593e0f483ce62ed6b5ad4d44", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "ab665285-01a7-4a70-8be5-d9641c8cac5c", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 16 Nov 2020 19:21:15 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "46" + }, + "ResponseBody": { + "jobId": "4b548fd2-0cad-476b-b732-263c962e4476", + "lastUpdateDateTime": "2020-11-16T19:21:14Z", + "createdDateTime": "2020-11-16T19:21:12Z", + "expirationDateTime": "2020-11-17T19:21:12Z", "status": "succeeded", "errors": [], "results": { @@ -287,7 +323,7 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/414d2143-1876-4eed-9e30-c9408eca56ca?$skip=1\u0026$top=1" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/4b548fd2-0cad-476b-b732-263c962e4476?$skip=1\u0026$top=1" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json index dff56f4562d90..9b9d766e5a4c2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeHealthcareEntitiesTests/RecognizeHealthcareEntitiesWithTopParameterAsync.json @@ -11,9 +11,9 @@ "Content-Length": "223", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7164dffc4976e94e9f901957b836af4e-61c742828b4af448-00", + "traceparent": "00-fea81b2fc9b6734c9f67dd9fa1f21d65-e1d44ff01f379f43-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "724372daad48480e76510121b5839b2e", @@ -35,18 +35,18 @@ }, "StatusCode": 202, "ResponseHeaders": { - "apim-request-id": "fbbbed84-c0a8-4a5c-806c-aa2bd77cb800", - "Date": "Fri, 13 Nov 2020 22:26:40 GMT", - "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0e3e0520-c84f-4633-8ebe-4b057c4d0b42", + "apim-request-id": "9b78995f-46e0-4cb0-a51a-476196fbfebe", + "Date": "Mon, 16 Nov 2020 19:21:40 GMT", + "operation-location": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/83b2ae0d-67b9-4fe5-9a4d-ec3fcf78b972", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "85" + "x-envoy-upstream-service-time": "110" }, "ResponseBody": [] }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0e3e0520-c84f-4633-8ebe-4b057c4d0b42?$top=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/83b2ae0d-67b9-4fe5-9a4d-ec3fcf78b972?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -55,7 +55,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "934d972f1ac830d592026d8c2beeac11", @@ -64,25 +64,25 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "208102e9-6bae-418f-9d9f-564b9a9c4bcb", + "apim-request-id": "832ce718-bd22-401e-b7a1-851378fd3e93", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:40 GMT", + "Date": "Mon, 16 Nov 2020 19: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" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "0e3e0520-c84f-4633-8ebe-4b057c4d0b42", - "lastUpdateDateTime": "2020-11-13T22:26:41Z", - "createdDateTime": "2020-11-13T22:26:41Z", - "expirationDateTime": "2020-11-14T22:26:41Z", - "status": "running", + "jobId": "83b2ae0d-67b9-4fe5-9a4d-ec3fcf78b972", + "lastUpdateDateTime": "2020-11-16T19:21:40Z", + "createdDateTime": "2020-11-16T19:21:40Z", + "expirationDateTime": "2020-11-17T19:21:40Z", + "status": "notStarted", "errors": [] } }, { - "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0e3e0520-c84f-4633-8ebe-4b057c4d0b42?$top=1\u0026showStats=false", + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/83b2ae0d-67b9-4fe5-9a4d-ec3fcf78b972?$top=1\u0026showStats=false", "RequestMethod": "GET", "RequestHeaders": { "Accept": [ @@ -91,7 +91,7 @@ ], "Ocp-Apim-Subscription-Key": "Sanitized", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "ceb201b6e72887166038d111abceeca7", @@ -100,19 +100,55 @@ "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0ec9a35e-172d-4f20-9bb6-ffd735f56c63", + "apim-request-id": "65212229-dc72-4694-874b-1b67cf28d361", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:42 GMT", + "Date": "Mon, 16 Nov 2020 19:21:41 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "42" + "x-envoy-upstream-service-time": "9" }, "ResponseBody": { - "jobId": "0e3e0520-c84f-4633-8ebe-4b057c4d0b42", - "lastUpdateDateTime": "2020-11-13T22:26:41Z", - "createdDateTime": "2020-11-13T22:26:41Z", - "expirationDateTime": "2020-11-14T22:26:41Z", + "jobId": "83b2ae0d-67b9-4fe5-9a4d-ec3fcf78b972", + "lastUpdateDateTime": "2020-11-16T19:21:40Z", + "createdDateTime": "2020-11-16T19:21:40Z", + "expirationDateTime": "2020-11-17T19:21:40Z", + "status": "notStarted", + "errors": [] + } + }, + { + "RequestUri": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/83b2ae0d-67b9-4fe5-9a4d-ec3fcf78b972?$top=1\u0026showStats=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": [ + "application/json", + "text/json" + ], + "Ocp-Apim-Subscription-Key": "Sanitized", + "User-Agent": [ + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", + "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" + ], + "x-ms-client-request-id": "9e71f8d80ef6c0f19d12df4640821c87", + "x-ms-return-client-request-id": "true" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "apim-request-id": "bc8a990e-30fd-400a-8011-4475b61e4892", + "Content-Type": "application/json; charset=utf-8", + "Date": "Mon, 16 Nov 2020 19:21:42 GMT", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "X-Content-Type-Options": "nosniff", + "x-envoy-upstream-service-time": "46" + }, + "ResponseBody": { + "jobId": "83b2ae0d-67b9-4fe5-9a4d-ec3fcf78b972", + "lastUpdateDateTime": "2020-11-16T19:21:42Z", + "createdDateTime": "2020-11-16T19:21:40Z", + "expirationDateTime": "2020-11-17T19:21:40Z", "status": "succeeded", "errors": [], "results": { @@ -287,7 +323,7 @@ "errors": [], "modelVersion": "2020-09-03" }, - "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/0e3e0520-c84f-4633-8ebe-4b057c4d0b42?$skip=1\u0026$top=1" + "@nextLink": "https://textanalytics-westeurope.ppe.cognitiveservices.azure.com/text/analytics/v3.1-preview.3/entities/health/jobs/83b2ae0d-67b9-4fe5-9a4d-ec3fcf78b972?$skip=1\u0026$top=1" } } ], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json index ea2e6729b4aee..edf3c4992916f 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTest.json @@ -11,9 +11,9 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9251e454c913924c9876306d78b9782b-3f58574e73b6604b-00", + "traceparent": "00-5e77d3c2a017ef468373cb77af3e9bdd-5180bddc690ab647-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d727f8b3ab5caeec2a15d6a3b1743ade", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3f967fdd-5c3e-48f3-ae57-d8ced4db9e21", + "apim-request-id": "97ce6e50-e830-411a-90a5-8bb0b9b94819", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:26:42 GMT", + "Date": "Mon, 16 Nov 2020 19:21:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "30" + "x-envoy-upstream-service-time": "23" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json index b6d244b2b903d..6ba184ad439ec 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-404a892e73f4b04da09d1a3c2ce6999f-7f6b587fa1ccab44-00", + "traceparent": "00-3d5cded9965eef44a5eb280fdbd2397a-5694f547e0662745-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "476534efbdc7cda5ab406b046713b5b6", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "ffc6d6b2-8189-4d34-94f1-86237f413a31", + "apim-request-id": "c01464f3-a36a-4b5d-ad7b-46348356b988", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:26:44 GMT", + "Date": "Mon, 16 Nov 2020 19:21:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "21" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json index 5f33626b5a841..9d2ea487878db 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-176e677c94483b4c8b58ddcfb7e70ba4-173b123b1e184c4a-00", + "traceparent": "00-3d7a3bbe37514a4b8fd1ae22609f7727-936da171b1141146-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "297e980ed9e8189820ebd45ff129bc5c", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "015402e4-589b-4223-b814-cc8ec64ad1cf", + "apim-request-id": "cfc61f23-081b-4720-b4c0-d23e2b2551e7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:26:42 GMT", + "Date": "Mon, 16 Nov 2020 19:21:42 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": "28" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json index 829f876f624bd..4c9b9c593285a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ca98df7c715a7848a51574d1d83e887d-9811d0948fcbc24a-00", + "traceparent": "00-ca8a9afcac29264686ded78a612469b0-7052f1a1c4b5834b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "efbfe45b25f6d2a2775e1edd2fe4e7aa", @@ -35,10 +35,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "69e38fd8-166a-468c-8865-6441b2f8aa41", + "apim-request-id": "10c8561f-60f1-4cab-92b5-ca43d3cd4a91", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:26:44 GMT", + "Date": "Mon, 16 Nov 2020 19:21:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json index 60de194c92fd7..9e7b60bb4a2eb 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTest.json @@ -11,9 +11,9 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-78a2f52fccac9944af81278b397d7657-c0a07b62b1fa2747-00", + "traceparent": "00-f01d736ece044d49b178b5bd22d0f5d4-c4fc6135a60e8e4b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "70aff255bc0a587f23734ec6facb2924", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "35ecab54-02a0-4dd6-8bfc-e1326e06b9d5", + "apim-request-id": "126aab66-c96a-4924-8e62-784058ee9655", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:26:43 GMT", + "Date": "Mon, 16 Nov 2020 19:21:42 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "27" + "x-envoy-upstream-service-time": "25" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json index ebea5615bc539..d54a499910d55 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-279dc0d0e8da354c97b01ff9a7482fd4-c45c9ce6ef3bf84c-00", + "traceparent": "00-fea4b9b6ae1bc643a7b8c5e8b8346beb-1ab1cff3d5fefc49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b6c8d0c26960e1039b6b5addff48c5fe", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "60254a2a-01b3-410a-860d-d47536837bff", + "apim-request-id": "da2fca8b-47a7-4502-a183-17d6a1f53498", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:26:44 GMT", + "Date": "Mon, 16 Nov 2020 19:21:45 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": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json index a7ec98f1b32ec..380d06a98da9d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTest.json @@ -11,9 +11,9 @@ "Content-Length": "229", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6a095851f1c1504a8a0b1edfa78d981f-d6a39f0b0b251b43-00", + "traceparent": "00-cd314cecb3794f439ecbf0c1a21aaa1e-0d08ffef0cf53243-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1199dc8afc6a0ac5f0743171c35d6934", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1403893b-aec9-4c28-a248-500986b6d49b", + "apim-request-id": "8ac88eef-fd94-4f19-94d7-9955d3a23ccb", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:26:43 GMT", + "Date": "Mon, 16 Nov 2020 19:21:44 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": "21" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json index e58aa078a8ae4..fda2f61d19a93 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithErrorTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "229", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bcd62920bd22bb4d8b879a0b68604d23-1522f1a3ab2b3740-00", + "traceparent": "00-cd301acf8fed6f40ae6b65302049665e-4c1f7631dd29d149-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4f030e46456aaab2ab975c8325cfab86", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "9cb5059a-5359-464f-b35d-08e9f71d9606", + "apim-request-id": "6bd05077-8209-42b0-a896-d991cc27e3e1", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:26:45 GMT", + "Date": "Mon, 16 Nov 2020 19:21:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "20" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json index ac287c107cf1c..04307144e1d76 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatch.json @@ -11,9 +11,9 @@ "Content-Length": "561", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d5840aa7899a09489cd16c42adc017f5-c6b99dd32913714d-00", + "traceparent": "00-fca20d9c30c4364fb4f6a3e9797fc741-1da74b8f7cd7e940-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "192c3c1f91647770ee90b0e32a189a79", @@ -55,9 +55,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "b2bcca10-a699-4a4a-ac74-779e5592348e", + "apim-request-id": "69246e07-ecb2-4ab3-96e1-e4b63688da32", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:43 GMT", + "Date": "Mon, 16 Nov 2020 19:21:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json index a571d72f8d87f..26e2ae2288c33 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithInvalidDocumentBatchAsync.json @@ -11,9 +11,9 @@ "Content-Length": "561", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b3b3bce0c730704199267834a4cf7de9-2cccaeccf4fafc47-00", + "traceparent": "00-90b75c0618f5ee43969fd988adee236d-6677f180bafd7147-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "aa01d6b77b2b2d76ec0e72d5ad5d4024", @@ -55,9 +55,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "0953da0a-5bcb-428d-aa23-0b07b929a2a9", + "apim-request-id": "47295f71-ccef-41c4-9c3c-f7c33a1abba4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:45 GMT", + "Date": "Mon, 16 Nov 2020 19:21:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json index 4b473f8d258e4..3fc27c422b136 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTest.json @@ -11,9 +11,9 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9f34928fa6214f4fa5366736badda81b-2963207615a99841-00", + "traceparent": "00-46d2a722b40de3479685f71332761c89-5017d7360aa4b747-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "39e775856c33e5040de74ed9f57d5d06", @@ -30,13 +30,13 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "9bf4b1e3-c5c6-4989-84fd-043fcceb73d7", + "apim-request-id": "762dd5ed-544e-4c81-abc5-6ac5bc1b3fc2", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:43 GMT", + "Date": "Mon, 16 Nov 2020 19:21:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "6" + "x-envoy-upstream-service-time": "5" }, "ResponseBody": { "error": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json index 7d0b63ac5172d..60bf6026438f9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullIdTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "64", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0fca1c01870be2439d7a32f750431649-76c21023fc8cd345-00", + "traceparent": "00-6a1f20a00049cc46ab2f4379a1d53753-29acdd162ae58d4d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9f2af246abde141d1e5ee3f98d0120cc", @@ -30,9 +30,9 @@ }, "StatusCode": 400, "ResponseHeaders": { - "apim-request-id": "5ca336b2-97a5-44b6-8a45-a753bebc3cda", + "apim-request-id": "fa303413-d1ef-4e32-b33a-e8f12f51190b", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:45 GMT", + "Date": "Mon, 16 Nov 2020 19:21:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json index ce8f2ccbfd7fa..fad1d1d61a368 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTest.json @@ -11,9 +11,9 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-53f3ee4da2c6a9468e3ec56f28ca2557-cef5ef4b02bf6348-00", + "traceparent": "00-06ab4ac791bcb3489bad17f8eca6549f-9389e830dd87904c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "73d297ac9bb0c1f746fd7bde1da9241c", @@ -30,13 +30,13 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "e6813235-efe0-48e3-a17c-ee49cd549b90", + "apim-request-id": "e926bc78-5490-45f9-8a34-8a4195d400dc", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:43 GMT", + "Date": "Mon, 16 Nov 2020 19:21:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "4" + "x-envoy-upstream-service-time": "3" }, "ResponseBody": { "documents": [], diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json index 3f232801fb5fb..879ff9d708a10 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithNullTextTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "54", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-03d3607b9592b64c94aef471806e52c0-d1dd3d23fdf2f749-00", + "traceparent": "00-1f1de3e6109d3a4783c8b5c6a7636669-c14f6792010bc142-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "eb53c4f0f4de762a1a8dd9e931cc3cf8", @@ -30,9 +30,9 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d6d9eb80-b995-4a4e-bbe7-aa0df12fc3a9", + "apim-request-id": "e311e835-cb97-46f2-b10a-bce2c4d6f6ef", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 13 Nov 2020 22:26:45 GMT", + "Date": "Mon, 16 Nov 2020 19:21:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json index 3ae9e696afe6c..fdbe359687156 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b24c6dd8ae451548ac0aa5e857473a62-5052a4097035b242-00", + "traceparent": "00-60abd06781261942a8ae25ab941cb955-77c72b6a91cf8240-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "07178a1f00e9eae492911a1486f7f75f", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "42bdee03-424b-4d49-8cba-35cacf23dd6f", + "apim-request-id": "e6117976-29ce-49ad-99a4-2eda69fbd0d7", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:26:43 GMT", + "Date": "Mon, 16 Nov 2020 19:21:44 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "22" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json index 047d3f2e4e7dd..caa52e70237fc 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesBatchWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "192", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e7dfd931a2bddd45b805407aa8cb8b2b-d47f2f5b429c6042-00", + "traceparent": "00-1e7427c508ac9b41a89c23625d644a43-34a793cabbbd234f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c81f2c7c8424b466b144609b6251448a", @@ -35,10 +35,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a67fcfbf-c849-4a8e-baaa-494c84fad881", + "apim-request-id": "91d94988-abf4-4b9d-81c4-dc70d731602c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:26:45 GMT", + "Date": "Mon, 16 Nov 2020 19:21:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json index 8c24a1a6a1429..ddf39b3634c9a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTest.json @@ -11,9 +11,9 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-f3d7391264ed7745bc307434abb3b20b-3cbca98cd84cfc44-00", + "traceparent": "00-37b9b6e503c55d41937a8deb7ee38114-a32767629bb9e045-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5dbd0e4d74f1991eb1c26555a87606e8", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "a304e406-5d39-48f2-a79d-06a984726083", + "apim-request-id": "01d8c540-b859-4e82-8961-7b16a682b065", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:26:44 GMT", + "Date": "Mon, 16 Nov 2020 19:21:44 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": "20" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json index 4ad53a2bcbfd7..d54771a26c770 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "103", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-bdef1ceb0953684f8a72c6354fda1964-6d7f89154c2a0f48-00", + "traceparent": "00-cd79f233abd6334eb8e75f5a2732ceeb-a24a0272d04fe344-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "552924120f9751fcf8de062c168ba5ca", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "4d4428f0-1d67-48bb-a9ed-402c1f0bb6e8", + "apim-request-id": "7dd89596-3d27-453e-8dcc-7c6cc62a42f6", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:26:45 GMT", + "Date": "Mon, 16 Nov 2020 19:21:46 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "23" + "x-envoy-upstream-service-time": "19" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json index 174836f25a4b9..e604dae1f773d 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTest.json @@ -11,9 +11,9 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c869b17595e37a40b4d3633001db7c2c-64230fab70ae874e-00", + "traceparent": "00-1da157d9d5eac14c9f5a9b18d750fae5-55322d433b767549-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "934878dc21c8a0a984e7d2d9ad60c773", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "31a80666-3755-4d44-93f9-54a05e299e30", + "apim-request-id": "8c5d0246-c7a3-430c-a4e8-cd4a860de423", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:26:44 GMT", + "Date": "Mon, 16 Nov 2020 19:21:45 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "17" + "x-envoy-upstream-service-time": "15" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json index 8538d6cd8dbcb..f19786d241ec2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizeLinkedEntitiesTests/RecognizeLinkedEntitiesWithLanguageTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "102", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7fc93bfd5087594586a161c4916139f8-83393a7443ff6840-00", + "traceparent": "00-fb6ba67f23ebff41bc9c1486fdff8b4b-8563f06fa2b3a540-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "25dfcc445911727a9003f8f77dc4c2e5", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fd847ade-6755-4d39-a337-a4776f1d31a0", + "apim-request-id": "900b0c69-3eb9-4974-b3ec-22b39f513ac4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:26:46 GMT", + "Date": "Mon, 16 Nov 2020 19:21:46 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": "17" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json index dd14a99a6f26e..9fae04914c5ef 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTest.json @@ -11,9 +11,9 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-d3d1c535b4ebd9439e1d2ce5e5f898d2-1cd96c10d1215f4c-00", + "traceparent": "00-5bff65bc462ad24cb29349b20807c4fe-a513109c2011e946-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "c173c94341dba618c4f393086e026774", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3514bce1-a0ae-480c-a0cb-c5f25356ea55", + "apim-request-id": "af0a8e1a-e028-4723-9e14-db38d528910a", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:26:46 GMT", + "Date": "Mon, 16 Nov 2020 19:21:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "102" + "x-envoy-upstream-service-time": "90" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json index a9a24446037e8..0aee75e065db7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b30c454845cd4047a25d0906cab01aca-f7eee4831be70c4e-00", + "traceparent": "00-876ca77b6e199e4e8f465cea441d8f6c-ab697797cf264842-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2cf317139685f87e3e57184c7620cca1", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1b972f8d-db9c-4bdf-901f-d7028d65634a", + "apim-request-id": "79ef15a6-1d5d-419f-9a45-7acfbf8f1b09", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:26:49 GMT", + "Date": "Mon, 16 Nov 2020 19:21:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "186" + "x-envoy-upstream-service-time": "128" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json index 9c0949295bc01..c959493917646 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6ff412000b88e249ab4bb2ad0bfece7e-bec2728a73e6044c-00", + "traceparent": "00-0617359be6f07442b658ef93db7c6227-159bd3c7ad9d6e49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "eecc011d319477b6a3836264a1185b02", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "79196188-6afa-4f50-8895-c32cf38fa510", + "apim-request-id": "e0b3d10c-27c0-4e26-95f0-3c015325405b", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:26:46 GMT", + "Date": "Mon, 16 Nov 2020 19:21:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "130" + "x-envoy-upstream-service-time": "124" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json index b50936c2916e5..5505d97a1c648 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchConvenienceWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-7a042cb32f3dc949b21e4aa1060bb424-103f38e708b14c44-00", + "traceparent": "00-7b2fca85d1cb8845953d872aeff22573-0bb504fb77395849-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "8ceec0e33c8ae486f712d7bec0815450", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1d064c84-79c6-40b6-ade4-5974dbcfc2c2", + "apim-request-id": "e223c46e-fd53-4da0-af51-65ba91290f7c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:26:49 GMT", + "Date": "Mon, 16 Nov 2020 19:21:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "90" + "x-envoy-upstream-service-time": "96" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json index 0606695270050..172552ab508e9 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTest.json @@ -11,9 +11,9 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-376ef55ea3046a4cab154448fbe11781-b2f4069b2811a445-00", + "traceparent": "00-3e08c95e27ba634fb1d3f22adc5b1bf5-68585403807dbe47-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "f53bbc38a2b6814e4c65b541758c5e0a", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "b335ad1d-e7c6-4ef1-afd0-941dd37667a9", + "apim-request-id": "5dc5aab9-8d01-4935-871c-53af8210fd74", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:26:46 GMT", + "Date": "Mon, 16 Nov 2020 19:21:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "120" + "x-envoy-upstream-service-time": "125" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json index 74d4aea5a8440..b1037e603e1f2 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-a5f12f119ee17043a3d15db1a197d22e-9e8b6666a9277e4b-00", + "traceparent": "00-915bf4644cf2e643b9718e95c6f9e799-1e533c6f7fc6c744-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "79f5f1883ef14a0947e802df013a4e11", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1c7e8525-856f-4662-91ec-2fd46721ff34", + "apim-request-id": "b559037e-432b-4f3f-95ba-91d264c57475", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:26:49 GMT", + "Date": "Mon, 16 Nov 2020 19:21:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "135" + "x-envoy-upstream-service-time": "136" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json index 6e4c7df7d3317..2f914caa60ffa 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTest.json @@ -11,9 +11,9 @@ "Content-Length": "331", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-328220028873804bb024e78c4ab05cc9-5385224fb7577549-00", + "traceparent": "00-6883b09a90587c4c9d110ae4b0f0ced6-ae91b9eac4065c44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e382b2e96bf3675f4d7d7960b8b32916", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c9fefe88-97c4-472e-9509-535b5bd55a5a", + "apim-request-id": "ea8719a4-4d6d-4576-907a-0ce77c169b4d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:26:48 GMT", + "Date": "Mon, 16 Nov 2020 19:21:47 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "130" + "x-envoy-upstream-service-time": "162" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json index dfcf1f2ead790..d90137ee0bff4 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithErrorTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "331", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4bee46afccb11f49a5370c66fe159f8a-41694500c10e9a42-00", + "traceparent": "00-916656ed22454247b1a51f0bead4da7d-548185b6f5e3e04f-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "e218864f9605e01c86941869a0be6841", @@ -40,14 +40,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "188e6f02-231b-4295-8506-b8e351e53650", + "apim-request-id": "72fe32f6-020e-4ef7-88cb-6eeb62400555", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:26:50 GMT", + "Date": "Mon, 16 Nov 2020 19:21:49 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "124" + "x-envoy-upstream-service-time": "122" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json index f4cbbb5376fe4..500ebb3fcaf41 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTest.json @@ -11,9 +11,9 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-4536764c1fcb2144aad25a56b5ed3484-ed22bf394588fc44-00", + "traceparent": "00-0235f73defe3af4e81785557c37b0e85-099ac1cbd8b0a745-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9d7c7445e676a32cbc4854ae746d53b1", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "72cab6dc-26f0-4f2d-8477-790245f36d1c", + "apim-request-id": "02c82034-9ec0-4c73-bc00-3e95c35188ee", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:26:48 GMT", + "Date": "Mon, 16 Nov 2020 19:21:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "94" + "x-envoy-upstream-service-time": "102" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json index 3343d02c27d4c..1424aa11aa4fd 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesBatchWithStatisticsTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "294", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-26a8519ef26bdc4fa043201930c3b4f6-f3e1d96a2a508141-00", + "traceparent": "00-4018b554b7a4cf438d970340d1f8ea76-d399b026a04a8440-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6372c6fc37bbef8068bba6a5d3c4483a", @@ -35,14 +35,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "81160720-5c67-477a-b7dd-d91d0de48c0b", + "apim-request-id": "d36fedec-a7fd-4de2-9d44-76962aae7f67", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=2", - "Date": "Fri, 13 Nov 2020 22:26:50 GMT", + "Date": "Mon, 16 Nov 2020 19:21:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "127" + "x-envoy-upstream-service-time": "131" }, "ResponseBody": { "statistics": { diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json index 33ca318d52dea..b95806b3a09f1 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTest.json @@ -11,9 +11,9 @@ "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-734400562e9e5944a016a25c2ba8eb72-36b46e731c64df47-00", + "traceparent": "00-d82495ab9daef7439e283fee448387d4-d659545691820046-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "40f3d388777c07f3a5efa0af174b7c81", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "1ade129a-6b25-4f49-907a-ddaaaa44f102", + "apim-request-id": "6148d390-6c4c-4ee8-9761-684ea9c81868", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:26:48 GMT", + "Date": "Mon, 16 Nov 2020 19:21:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "93" + "x-envoy-upstream-service-time": "82" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json index 4ffab21eb2193..8e005ee61f754 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e323daa222c04f40bedda8ac5f8e308c-66d7dab669a65840-00", + "traceparent": "00-eaf5f6433958994999db6c7817484939-2861be18e6fa8544-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "b40e3ff9f3697ab649fbbfa57575c10c", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "898a2efe-555a-40be-8828-1adf8f4b4f4f", + "apim-request-id": "620b058e-d2ae-4a4f-8827-3c0928c291b4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:26:50 GMT", + "Date": "Mon, 16 Nov 2020 19:21:51 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": "86" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json index 12d7b495b1043..b85c1358b9925 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTest.json @@ -11,9 +11,9 @@ "Content-Length": "107", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-8b29a25deba39b4099755f2381af07b1-87f7d71363a4af4c-00", + "traceparent": "00-e3ad5169549bef42a1cb8a204f5c5a8f-0208f1d50a91754e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5757e3544f245670b8a4c82d4b10bc4c", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "17257f6f-30b8-4e6b-bac0-484443e7d7e4", + "apim-request-id": "0672c6d3-92ae-4f8d-9608-a1a5f82a6dc8", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:26:48 GMT", + "Date": "Mon, 16 Nov 2020 19:21:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "88" + "x-envoy-upstream-service-time": "87" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json index ac1be190d929a..b58f6c9ac7b1c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithDomainTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "107", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e2c1fdae14979240a2e09af06d5ded78-1a1777aca935f642-00", + "traceparent": "00-61a90bfc33c91143b8722cbadcd53951-425a25154beb9742-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "4a37fade57ea6b5a5ff8ab22891b6b20", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8edacc0d-adcb-4443-aacc-96a274c08acc", + "apim-request-id": "504b1d8d-6c56-4631-a345-606e86ada2e4", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:26:50 GMT", + "Date": "Mon, 16 Nov 2020 19:21:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "69" + "x-envoy-upstream-service-time": "68" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json index d6856a66a00a3..6e39f2b2c8d94 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTest.json @@ -11,9 +11,9 @@ "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-5cd82eedd7715d469e741f39bba85cbc-2461e1c2f8831c40-00", + "traceparent": "00-714c07c2ed42b44dabb75a7846cf0edf-7c23fdea9200384b-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2a5fd4f3bf3db4629b14e3f9050dd01c", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2e3c5ff5-7265-4fda-9c07-068a8c555b33", + "apim-request-id": "cda7d0d3-cea1-4bad-bfab-0aaed87c3478", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:26:49 GMT", + "Date": "Mon, 16 Nov 2020 19:21:48 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "154" + "x-envoy-upstream-service-time": "104" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json index ee604c1907b6b..d3f5fa5277fdf 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/RecognizePiiEntitiesTests/RecognizePiiEntitiesWithLanguageTestAsync.json @@ -11,9 +11,9 @@ "Content-Length": "152", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-452898512d9341458b73e820236ced87-c66fb0e222c36b41-00", + "traceparent": "00-d90592a72ba39840aed42e4b22125523-1406179b0ff51647-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "df1d0a85dc552d663ac944ac69a80a0d", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "650826cd-71ed-4309-be69-36df4d863521", + "apim-request-id": "113ea09b-0699-43b7-a287-4f5545dddc7f", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:26:51 GMT", + "Date": "Mon, 16 Nov 2020 19:21:51 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "106" + "x-envoy-upstream-service-time": "115" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json index ef68f1503be6d..548bcc17aa472 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategories.json @@ -11,9 +11,9 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-0f8a56a0bbd0e74abd6b3ab5c8938c34-68718a6fd1cf514a-00", + "traceparent": "00-dcd8aad80821844b99a1a3b0d0f86032-510cddfa446c7244-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "2bbb7414e3ce80e03f8df0adf3eb7d0c", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "fe683de5-a4b0-4b4e-9634-29066cdd9447", + "apim-request-id": "1968936c-451b-4043-bb49-5be0cf257de3", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:26:51 GMT", + "Date": "Mon, 16 Nov 2020 19:21:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "53" + "x-envoy-upstream-service-time": "61" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json index 7a308ae01cec3..d0ca8909e5fcf 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/EntitiesCategoriesAsync.json @@ -11,9 +11,9 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-c16cdc7355e7394481a0c43c4671e3f5-4672ffa6a9ee3141-00", + "traceparent": "00-7765d8e50a2ae243a42baf6ee78ff92b-f6f0abb44ce45c41-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "6470d4cf3910c27ceead9bc2cf6c8aa0", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "2c9f472b-a9e1-47a9-a0f6-fb209b0b02bd", + "apim-request-id": "aff32bfb-849d-4929-a1cf-fea908d3d07c", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:26:52 GMT", + "Date": "Mon, 16 Nov 2020 19:21:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "55" + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json index 42a4134b4832b..d72ddf1efb529 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKey.json @@ -11,9 +11,9 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-58db378e901c8a4c866e179e844414f5-f6b1e5b8dcbebe49-00", + "traceparent": "00-ee0faa5643ef3b4c9cebc2eee533ea0a-4c19d0fe5e4ee140-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "31841aab9edddcddb56c91e8fafcead5", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "c576bf68-1a9c-4aa1-8ab6-f6c471dc2a0a", + "apim-request-id": "f3f2a181-195f-4026-92f2-9a8e2206db33", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:26:51 GMT", + "Date": "Mon, 16 Nov 2020 19:21:52 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": { "documents": [ @@ -66,9 +66,9 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-b20c397863211849b60bc2caace354f7-f3bbbd9054e3d24a-00", + "traceparent": "00-6065cf948f649149a9b7802fcb34c74c-664d0559f15c0542-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "13daa31269993bffe7f19e3dc94f204e", @@ -86,7 +86,7 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Length": "224", - "Date": "Fri, 13 Nov 2020 22:26:51 GMT" + "Date": "Mon, 16 Nov 2020 19:21:52 GMT" }, "ResponseBody": "eyJlcnJvciI6eyJjb2RlIjoiNDAxIiwibWVzc2FnZSI6IkFjY2VzcyBkZW5pZWQgZHVlIHRvIGludmFsaWQgc3Vic2NyaXB0aW9uIGtleSBvciB3cm9uZyBBUEkgZW5kcG9pbnQuIE1ha2Ugc3VyZSB0byBwcm92aWRlIGEgdmFsaWQga2V5IGZvciBhbiBhY3RpdmUgc3Vic2NyaXB0aW9uIGFuZCB1c2UgYSBjb3JyZWN0IHJlZ2lvbmFsIEFQSSBlbmRwb2ludCBmb3IgeW91ciByZXNvdXJjZS4ifX0=" }, @@ -101,9 +101,9 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-92b4af3279cfdd44bce95f3a8cfe047f-5253edb39be6e549-00", + "traceparent": "00-e0e1f8f87b1868498e5e4d324824bfce-d9e8d0ea46b08242-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "d85ee288a420af625bce0d2748754fc8", @@ -120,10 +120,10 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "d62b0b62-a9ad-4b53-86a2-56f65a8d1704", + "apim-request-id": "48d9d31f-d308-4b2b-8e18-c4b5d928d41e", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:26:51 GMT", + "Date": "Mon, 16 Nov 2020 19:21:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json index 5e67b759bd996..9bc468c97a01c 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/RotateApiKeyAsync.json @@ -11,9 +11,9 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-907c4b3a9ca2764d932913a20ae38b50-a42196b995ea6245-00", + "traceparent": "00-5b06191d530f004088f5f013faea3143-ee958ad57e16d445-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "fb9f47ae04f9d825012386a2a51b9727", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "79c98dd5-683f-4627-8ecb-e0885ff3514c", + "apim-request-id": "c09ff932-1e4a-4181-85c9-b521bc363581", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:26:52 GMT", + "Date": "Mon, 16 Nov 2020 19:21:53 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": { "documents": [ @@ -66,9 +66,9 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-e201aa6fc3e2684aa840173e96d2a0a7-de29a1843bbc7649-00", + "traceparent": "00-6d53af13eca60644944636f7b5d209a1-0406f8b623e57f47-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "5aa0f7e4723c7c582e8ca602e03d8c8c", @@ -86,7 +86,7 @@ "StatusCode": 401, "ResponseHeaders": { "Content-Length": "224", - "Date": "Fri, 13 Nov 2020 22:26:53 GMT" + "Date": "Mon, 16 Nov 2020 19:21:53 GMT" }, "ResponseBody": "eyJlcnJvciI6eyJjb2RlIjoiNDAxIiwibWVzc2FnZSI6IkFjY2VzcyBkZW5pZWQgZHVlIHRvIGludmFsaWQgc3Vic2NyaXB0aW9uIGtleSBvciB3cm9uZyBBUEkgZW5kcG9pbnQuIE1ha2Ugc3VyZSB0byBwcm92aWRlIGEgdmFsaWQga2V5IGZvciBhbiBhY3RpdmUgc3Vic2NyaXB0aW9uIGFuZCB1c2UgYSBjb3JyZWN0IHJlZ2lvbmFsIEFQSSBlbmRwb2ludCBmb3IgeW91ciByZXNvdXJjZS4ifX0=" }, @@ -101,9 +101,9 @@ "Content-Length": "96", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-df565e8d3ddd364b9cd57a186ba6291a-61ec698bfff4b549-00", + "traceparent": "00-2086829dfc08ca4aa8315343a9d9df13-c6a99199bb7bc74c-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "1a26406b44799ec461ce0951aebc7b46", @@ -120,14 +120,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "53687b11-1a0f-4731-b97e-f00716b6e767", + "apim-request-id": "1576721e-321b-4a2b-9b4e-3894aaec1466", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:26:53 GMT", + "Date": "Mon, 16 Nov 2020 19:21:54 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": "8" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json index d90ee7394b216..7f210b6c17a0b 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFC.json @@ -11,9 +11,9 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ed7e86697bdc8346b27424ca368e620b-a22afd3f9bfb0641-00", + "traceparent": "00-3c25496560bf1b419dcf46dc86d706fc-b537324f19d05c44-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "af25edec94c2cbbfd63455e84047f9b5", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "3c067ab5-1a3d-44e9-8de5-750d8761ddfd", + "apim-request-id": "46799dc4-8699-475c-8c27-7a0c7efb46cc", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:26:52 GMT", + "Date": "Mon, 16 Nov 2020 19:21:52 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "96" + "x-envoy-upstream-service-time": "97" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json index 30d36823f2355..373db9054d65a 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextInKoreanNFCAsync.json @@ -11,9 +11,9 @@ "Content-Length": "76", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-6099df3ef214604a8b52ef459584d5ff-c7a77917a158c74a-00", + "traceparent": "00-4c54b180a02b64428cbad6d9ca50298b-48d7d31e3ffa2c40-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "66b8ef6aed4353af1a0a6380bef4513f", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "f89a5619-6914-4db4-9433-d269046faa64", + "apim-request-id": "5b294437-6deb-4e10-afc2-9c09a439a143", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:26:53 GMT", + "Date": "Mon, 16 Nov 2020 19:21:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "58" + "x-envoy-upstream-service-time": "73" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json index 1a61974a0e4ca..ef1f677e7f23e 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFC.json @@ -11,9 +11,9 @@ "Content-Length": "70", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-9fa84c71c8e12044a7a0f8eac90b6505-7cfb9aca6ea86f40-00", + "traceparent": "00-03f97afc6a2283478bc05748a8acc85c-d3634412e571004e-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "9c096f0bd3a36f626316eda5be1e28c8", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "8747a1b4-4bee-443c-a5c4-481509eeb19a", + "apim-request-id": "bacd514a-7667-49ca-9112-ded3fb340e66", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:26:52 GMT", + "Date": "Mon, 16 Nov 2020 19:21:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "52" + "x-envoy-upstream-service-time": "51" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json index b353173ed9406..b1ff10815cfba 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithDiacriticsNFCAsync.json @@ -11,9 +11,9 @@ "Content-Length": "70", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-ffa40bf489f7564bb3a0b228b5181c12-c2a866922dffdc45-00", + "traceparent": "00-723cfa75d67c284c8a84608c8098f55c-b7fa11e85042e94d-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a71f02631f3c7a05f4cb179d2fb85aac", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "6478ed38-dc1f-4a35-a933-fd0b164e4db2", + "apim-request-id": "7c4e4f74-2b47-4212-86b5-d857dc0416d5", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:26:53 GMT", + "Date": "Mon, 16 Nov 2020 19:21:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "59" + "x-envoy-upstream-service-time": "53" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json index 3b9952b56de8e..0e2a1960216c0 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmoji.json @@ -11,9 +11,9 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-2b00de15cce81348bb15bd85b30893ad-5a6f357225b99944-00", + "traceparent": "00-ca0c41acf04fd3478e0952b401bc5610-271b8b4af81d6b49-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "a12918df519b0dc53f87435017a62e99", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "0198f122-9f14-441f-a5a2-d0080867ca3c", + "apim-request-id": "965e49fd-a1af-4ad1-877b-76f7c5391698", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:26:52 GMT", + "Date": "Mon, 16 Nov 2020 19:21:53 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "88" + "x-envoy-upstream-service-time": "71" }, "ResponseBody": { "documents": [ diff --git a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json index cb3fe18cf8025..d89eee1c3b4c7 100644 --- a/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json +++ b/sdk/textanalytics/Azure.AI.TextAnalytics/tests/SessionRecords/TextAnalyticsClientLiveTests/TextWithEmojiAsync.json @@ -11,9 +11,9 @@ "Content-Length": "87", "Content-Type": "application/json", "Ocp-Apim-Subscription-Key": "Sanitized", - "traceparent": "00-14aba7c99e01994eb63e18e8aa736bb4-bc320c60c536794d-00", + "traceparent": "00-ba5b2b8a1e1ea747b7bf27303f3029c3-064127a8243f3242-00", "User-Agent": [ - "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201113.1", + "azsdk-net-AI.TextAnalytics/5.1.0-alpha.20201116.1", "(.NET Core 4.6.29321.03; Microsoft Windows 10.0.19042 )" ], "x-ms-client-request-id": "05b9b9c88ccd2f82a72e96b9014b88fb", @@ -30,14 +30,14 @@ }, "StatusCode": 200, "ResponseHeaders": { - "apim-request-id": "019c12f1-a39a-4bcf-bb41-629fb6170de8", + "apim-request-id": "a6a27624-966b-4310-8b9c-b1b91ca99e4d", "Content-Type": "application/json; charset=utf-8", "csp-billing-usage": "CognitiveServices.TextAnalytics.BatchScoring=1", - "Date": "Fri, 13 Nov 2020 22:26:53 GMT", + "Date": "Mon, 16 Nov 2020 19:21:54 GMT", "Strict-Transport-Security": "max-age=31536000; includeSubDomains; preload", "Transfer-Encoding": "chunked", "X-Content-Type-Options": "nosniff", - "x-envoy-upstream-service-time": "71" + "x-envoy-upstream-service-time": "60" }, "ResponseBody": { "documents": [